dataverse-client-python
dataverse-client-python copied to clipboard
Python library for writing clients that use APIs from Dataverse
Helps testing on self-signed servers.
Just a question: would it make sense, to mention pyDataverse somewhere in the README?
http://stackoverflow.com/questions/19548011/cannot-install-lxml-on-mac-os-x-10-9 clued me in that I need to run `xcode-select --install` for installation. Before I did this I was getting the following: ``` murphy:dataverse-client-python pdurbin$ cd dataverse/test murphy:test pdurbin$ mkvirtualenv...
Over at https://github.com/IQSS/dataverse/issues/5725 we're talking about a new continous integration service for the Dataverse community hosted by UNC (thanks!) at https://jenkins.dataverse.org We should add a job for this client library,...
Hello! On the [OSF](https://osf.io), we've had a few users who can't connect their dataverse datasets to their projects. The symptom is that when we try to call the id property...
I am trying to update the metadata of a dataset. It works fins as long as the dataset does not contain any files. When the dataset contains files, I receive:...
``` dataverse/test/test_dataverse.py::TestUtils::test_get_element PASSED dataverse/test/test_dataverse.py::TestUtils::test_get_elements PASSED dataverse/test/test_dataverse.py::TestUtils::test_format_term PASSED dataverse/test/test_dataverse.py::TestUtils::test_format_term_replace PASSED dataverse/test/test_dataverse.py::TestConnection::test_connect PASSED dataverse/test/test_dataverse.py::TestConnection::test_connect_unauthorized PASSED dataverse/test/test_dataverse.py::TestConnection::test_connect_unknown_failure FAILED dataverse/test/test_dataverse.py::TestConnection::test_create_dataverse PASSED dataverse/test/test_dataverse.py::TestConnection::test_delete_dataverse PASSED dataverse/test/test_dataverse.py::TestConnection::test_get_dataverses PASSED dataverse/test/test_dataverse.py::TestConnection::test_get_dataverse PASSED dataverse/test/test_dataverse.py::TestDataset::test_init PASSED dataverse/test/test_dataverse.py::TestDataset::test_init_from_xml PASSED dataverse/test/test_dataverse.py::TestDatasetOperations::test_create_dataset PASSED dataverse/test/test_dataverse.py::TestDatasetOperations::test_add_dataset_from_xml...
I am using an own testing instance of dataverse with 8080 as HTTP port. Connecting and creation and listing of dataverses works fine. ```py host = 'my.server.com:8080' connection = Connection(host,...
I tried doing the following: ``` python c = Connection('dataverse-demo.iq.harvard.edu', '...') c.get_dataverses() ``` and found that this only returns one dataverse, which I created. Is there a way to access...
I am experiencing this issue when using the python API: ``` host = 'demo.dataverse.org' token = '' connection = Connection(host, token) dataverse = connection.get_dataverse('renatis2017') dataverse dataverse.get_dataset_by_doi("doi:10.5072/FK2/PVH0HO") ``` A Dataverse object...