Skip to content
Snippets Groups Projects
Verified Commit 574fdc31 authored by Martin Weise's avatar Martin Weise
Browse files

Hotfix default params for Pandas upload

parent da83c4cb
No related branches found
No related tags found
No related merge requests found
...@@ -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:
""" """
......
[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",
......
...@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment