Change Update Method Using Pydomo
Created a dataset using Pydomo.
ds_update method does only a REPLACE.
Not sure how to change it to append.
Any help is appreciated. Thanks!
Best Answers
-
.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
@ElliotGitter @GrantSmith answered it correctly.
After you authenticate
domo = Domo(client_id, secret, api_host = api_host)
datasets = domo.datasets
csv_file_path = './yourfileaname.csv'
datasets.data_import_from_file(dataset['yourdatasetid'], csv_file_path)
The following link should help :https://github.com/domoinc/domo-python-sdk/blob/master/examples/dataset.py
0
Answers
-
Hi @user059353, you could use ds_import:
ds_import(ds_id, df_up, update_method = "REPLACE")
where
ds_id
: Data set id (from url in Domo).df_up
: Dataframe to upload.update_method
:Optional choose the appropriate updateMethod when importing data via the API. Available choices are either to APPEND or REPLACE.11 -
Hi @amehdad.
The ds_import function is not available in the PyDomo module.
I get an error when I try to inspect the arguements.
>>> inspect.getfullargspec(Domo.ds_query)
FullArgSpec(args=['self', 'dataset_id', 'query', 'return_data'], varargs=None, varkw=None, defaults=(True,), kwonlyargs=[], kwonlydefaults=None, annotations={})
>>> inspect.getfullargspec(Domo.ds_import)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: type object 'Domo' has no attribute 'ds_import'
0 -
Definitely reach out to Support [support.domo.com] then to have them look at it as well (and escalate to Dev if need be).
12 -
This didn't work for me either (using python), did you ever figure this out? The only problem is, my ds_update is only appending now. Wish there was a clear function like the import noted above that worked.
0 -
.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**0 -
@ElliotGitter @GrantSmith answered it correctly.
After you authenticate
domo = Domo(client_id, secret, api_host = api_host)
datasets = domo.datasets
csv_file_path = './yourfileaname.csv'
datasets.data_import_from_file(dataset['yourdatasetid'], csv_file_path)
The following link should help :https://github.com/domoinc/domo-python-sdk/blob/master/examples/dataset.py
0 -
Unfortunately, ds_import and ds_rename functions are not available now.
0
Categories
- 10.6K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 477 Transform
- 1.8K Magic ETL
- 69 SQL DataFlows
- 478 Datasets
- 218 Visualize
- 260 Beast Mode
- 2.1K Charting
- 12 Variables
- 19 Automate
- 356 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 249 Distribute
- 65 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 191 Product Ideas
- 1.2K Ideas Exchange
- 11 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive