Access DAX datasets.
Project description
ParData (homophone of partake) is a Python API that enables data consumers and distributors to easily use and share datasets, and establishes a standard for exchanging data assets. It enables:
a data scientist to have a simpler and more unified way to begin working with a wide range of datasets, and
a data distributor to have a consistent, safe, and open source way to share datasets with interested communities.
Install the Package & its Dependencies
To install the latest version of ParData, run
$ pip install pardata
Alternatively, if you have downloaded the source, switch to the source directory (same directory as this README file, cd /path/to/pardata-source) and run
$ pip install -U .
Quick Start
Import the package and load a dataset. ParData will download WikiText-103 dataset (version 1.0.1) if it’s not already downloaded, and then load it.
import pardata
wikitext103_data = pardata.load_dataset('wikitext103')
View available ParData datasets and their versions.
>>> pardata.list_all_datasets()
{'claim_sentences_search': ('1.0.2',), ..., 'wikitext103': ('1.0.1',)}
To view your globally set configs for ParData, such as your default data directory, use pardata.get_config.
>>> pardata.get_config()
Config(DATADIR=PosixPath('dir/to/download/load/from'), ..., DATASET_SCHEMA_FILE_URL='file/to/load/datasets/from')
By default, pardata.load_dataset downloads to and loads from ~/.pardata/data/<dataset-name>/<dataset-version>/. To change the default data directory, use pardata.init.
pardata.init(DATADIR='new/dir/to/download/load/from')
Load a previously downloaded dataset using pardata.load_dataset. With the new default data dir set, ParData now searches for the Groningen Meaning Bank dataset (version 1.0.2) in new/dir/to/download/load/from/gmb/1.0.2/.
gmb_data = load_dataset('gmb', version='1.0.2', download=False) # assuming GMB dataset was already downloaded
To learn more about ParData, check out the documentation and the tutorial.
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 pardata-0.3.0.tar.gz
.
File metadata
- Download URL: pardata-0.3.0.tar.gz
- Upload date:
- Size: 12.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a4846d63d389dbd6e5ffa14319bf98ebe53a626f424b01d1de78bd46e9cc7bc |
|
MD5 | 84b2a430ffad7c799c4d651bc0ce8d13 |
|
BLAKE2b-256 | 542bfde0c55df038ab9ce8f56307a297b3e3aec6888346d32828908d13952486 |
File details
Details for the file pardata-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: pardata-0.3.0-py3-none-any.whl
- Upload date:
- Size: 43.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8616af8903d1ef1e4db1947d2f2641066a31860bf4e3e9406cc7d4c443950401 |
|
MD5 | eb415b0260a8b7a55294362f3401e8cd |
|
BLAKE2b-256 | 173a262aa597d9412206c590ba916c1c45d2cf9a9dc32719ad81fb549eea64f9 |