A Python client for accessing data from the Biocode FIMS database.
Project description
Biocode FIMS
A Python client for accessing data from the Biocode FIMS database.
Free software: MIT license
Documentation: https://biocode-fims.readthedocs.io.
Installation
pip install biocode_fims
Basic Usage
Returning a list of all public Projects in the Biocode FIMS.
>>> import biocode_fims
>>> all_projects = biocode_fims.list_projects()
>>> print(all_projects)
{
"Barcode of Wildlife Nigeria": 10,
"Amphibian Disease": 26,
"SI Barcoding CBOL": 12,
"Hawaii Dimensions": 3,
"University and Jepson Herbaria": 22,
"Barcode of Wildlife Nepal": 23,
"Barcode of Wildlife Kenya": 8,
"New York Botanical Garden": 28,
"Barcode of Wildlife Proficiency Testing": 24,
"Barcode of Wildlife Mexico": 9,
"Barcode of Wildlife South Africa": 11,
"Barcode of Wildlife Training": 5
}
Return the first 4 datasets in the “SI Barcoding CBOL” project (project id: 12).
>>> import biocode_fims
>>> all_sibn_datasets = biocode_fims.list_datasets(12)
>>> print(all_sibn_datasets[:4])
['Brazil_Ants_A', 'Brazil_Ants_B', 'Brazil_Ants_C', 'Brazil_Ants_D']
Grab the contents of the dataset “DJBirds_P01”.
>>> import biocode_fims
>>> contents = biocode_fims.dataset_contents(12,['DJBirds_P01'])
>>> print(len(contents))
83
To do something useful with the dataset contents, it’s best of load them into a Pandas DataFrame.
TODO
Get testing implemented correctly
Expand to API endpoints behind OAuth
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.2.0 (2017-06-29)
Changed dataset_contents function to filter out empty fields by default
Got documentation running on RTD, and continuous integration running on TravisCI
0.1.0 (2017-06-21)
Initial release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file biocode_fims-0.2.4.tar.gz
.
File metadata
- Download URL: biocode_fims-0.2.4.tar.gz
- Upload date:
- Size: 14.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90422bb412c3b764ec54ce640a0579243d86dc7a0d157bc3e0a7f6b25d63f76e |
|
MD5 | 04aa730b38cdc8fd9a74fabe94cb161c |
|
BLAKE2b-256 | d9f8c4036c86b5e4f3c0931e12c94f81baec5553734733d16b14b53833379d31 |
File details
Details for the file biocode_fims-0.2.4-py2.py3-none-any.whl
.
File metadata
- Download URL: biocode_fims-0.2.4-py2.py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e01cb39055b22fde42891506a5eb8036390b2ec4c5e7447ecbec3ff21452f411 |
|
MD5 | f2c715c5233ce5dc1916e1b64a5f1242 |
|
BLAKE2b-256 | 8b17e140f45973a81dd61904c9f6293c6d9abac3039a8dd9d5ba4557ba089db4 |