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
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 663 Datasets
- 119 SQL DataFlows
- 2.3K Magic ETL
- 823 Beast Mode
- Visualize
- 2.6K Charting
- 86 App Studio
- 46 Variables
- Automate
- 193 Apps
- 483 APIs & Domo Developer
- 87 Workflows
- 23 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 117 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 143 Governance & Security
- 11 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive