Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Commits
574fdc31
Verified
Commit
574fdc31
authored
10 months ago
by
Martin Weise
Browse files
Options
Downloads
Patches
Plain Diff
Hotfix default params for Pandas upload
parent
da83c4cb
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/python/dbrepo/RestClient.py
+1
-1
1 addition, 1 deletion
lib/python/dbrepo/RestClient.py
lib/python/pyproject.toml
+1
-1
1 addition, 1 deletion
lib/python/pyproject.toml
lib/python/setup.py
+1
-1
1 addition, 1 deletion
lib/python/setup.py
with
3 additions
and
3 deletions
lib/python/dbrepo/RestClient.py
+
1
−
1
View file @
574fdc31
...
@@ -1103,7 +1103,7 @@ class RestClient:
...
@@ -1103,7 +1103,7 @@ class RestClient:
f
'
201 (CREATED):
{
response
.
text
}
'
)
f
'
201 (CREATED):
{
response
.
text
}
'
)
def
import_table_data
(
self
,
database_id
:
int
,
table_id
:
int
,
file_name_or_data_frame
:
str
|
DataFrame
,
def
import_table_data
(
self
,
database_id
:
int
,
table_id
:
int
,
file_name_or_data_frame
:
str
|
DataFrame
,
separator
:
str
=
None
,
quote
:
str
=
None
,
skip_lines
:
int
=
0
,
separator
:
str
=
"
,
"
,
quote
:
str
=
"
\"
"
,
skip_lines
:
int
=
0
,
false_encoding
:
str
=
None
,
true_encoding
:
str
=
None
,
null_encoding
:
str
=
None
,
false_encoding
:
str
=
None
,
true_encoding
:
str
=
None
,
null_encoding
:
str
=
None
,
line_encoding
:
str
=
"
\n
"
)
->
None
:
line_encoding
:
str
=
"
\n
"
)
->
None
:
"""
"""
...
...
This diff is collapsed.
Click to expand it.
lib/python/pyproject.toml
+
1
−
1
View file @
574fdc31
[project]
[project]
name
=
"dbrepo"
name
=
"dbrepo"
version
=
"1.4.
5
"
version
=
"1.4.
6
"
description
=
"DBRepo Python Library"
description
=
"DBRepo Python Library"
keywords
=
[
keywords
=
[
"DBRepo"
,
"DBRepo"
,
...
...
This diff is collapsed.
Click to expand it.
lib/python/setup.py
+
1
−
1
View file @
574fdc31
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
from
distutils.core
import
setup
from
distutils.core
import
setup
setup
(
name
=
"
dbrepo
"
,
setup
(
name
=
"
dbrepo
"
,
version
=
"
1.4.
5
"
,
version
=
"
1.4.
6
"
,
description
=
"
A library for communicating with DBRepo
"
,
description
=
"
A library for communicating with DBRepo
"
,
url
=
"
https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/1.4.5/
"
,
url
=
"
https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/1.4.5/
"
,
author
=
"
Martin Weise
"
,
author
=
"
Martin Weise
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment