3
3
4
4
.. readme-start
5
5
6
- PyDAX
7
- =====
6
+ ParData
7
+ =======
8
8
9
- .. image :: https://img.shields.io/pypi/v/pydax .svg
10
- :target: https://pypi.python.org/pypi/pydax
9
+ .. image :: https://img.shields.io/pypi/v/pardata .svg
10
+ :target: https://pypi.python.org/pypi/pardata
11
11
:alt: PyPI
12
12
13
- .. image :: https://img.shields.io/pypi/pyversions/pydax
14
- :target: https://pypi.python.org/pypi/pydax
13
+ .. image :: https://img.shields.io/pypi/pyversions/pardata
14
+ :target: https://pypi.python.org/pypi/pardata
15
15
:alt: PyPI - Python Version
16
16
17
- .. image :: https://img.shields.io/pypi/implementation/pydax
18
- :target: https://pypi.python.org/pypi/pydax
17
+ .. image :: https://img.shields.io/pypi/implementation/pardata
18
+ :target: https://pypi.python.org/pypi/pardata
19
19
:alt: PyPI - Implementation
20
20
21
- .. image :: https://badges.gitter.im/codait/pydax .svg
22
- :target: https://gitter.im/codait/pydax
21
+ .. image :: https://badges.gitter.im/codait/pardata .svg
22
+ :target: https://gitter.im/codait/pardata
23
23
:alt: Gitter
24
24
25
- .. image :: https://github.com/codait/pydax /workflows/Runtime%20Tests/badge.svg
26
- :target: https://github.com/CODAIT/pydax /commit/master
25
+ .. image :: https://github.com/codait/pardata /workflows/Runtime%20Tests/badge.svg
26
+ :target: https://github.com/CODAIT/pardata /commit/master
27
27
:alt: Runtime Tests
28
28
29
- .. image :: https://github.com/codait/pydax /workflows/Lint/badge.svg
30
- :target: https://github.com/CODAIT/pydax /commit/master
29
+ .. image :: https://github.com/codait/pardata /workflows/Lint/badge.svg
30
+ :target: https://github.com/CODAIT/pardata /commit/master
31
31
:alt: Lint
32
32
33
- .. image :: https://github.com/codait/pydax /workflows/Docs/badge.svg
34
- :target: https://github.com/CODAIT/pydax /commit/master
33
+ .. image :: https://github.com/codait/pardata /workflows/Docs/badge.svg
34
+ :target: https://github.com/CODAIT/pardata /commit/master
35
35
:alt: Docs
36
36
37
- .. image :: https://github.com/codait/pydax /workflows/Development%20Environment/badge.svg
38
- :target: https://github.com/CODAIT/pydax /commit/master
37
+ .. image :: https://github.com/codait/pardata /workflows/Development%20Environment/badge.svg
38
+ :target: https://github.com/CODAIT/pardata /commit/master
39
39
:alt: Development Environment
40
40
41
- PyDAX is a Python API that enables data consumers and distributors to easily use and share datasets, and establishes a
42
- standard for exchanging data assets. It enables:
41
+ ParData (homophone of * partake *) is a Python API that enables data consumers and distributors to easily use and share
42
+ datasets, and establishes a standard for exchanging data assets. It enables:
43
43
44
44
- a data scientist to have a simpler and more unified way to begin working with a wide range of datasets, and
45
45
- a data distributor to have a consistent, safe, and open source way to share datasets with interested communities.
@@ -48,24 +48,24 @@ standard for exchanging data assets. It enables:
48
48
49
49
.. code-block :: python
50
50
51
- >> > import pydax
52
- >> > pydax .list_all_datasets()
51
+ >> > import pardata
52
+ >> > pardata .list_all_datasets()
53
53
{' claim_sentences_search' : (' 1.0.2' ,),
54
54
... , ' wikitext103' : (' 1.0.1' ,)}
55
- >> > pydax .load_dataset(' wikitext103' )
55
+ >> > pardata .load_dataset(' wikitext103' )
56
56
{... } # Content of the dataset
57
57
58
58
Install the Package & its Dependencies
59
59
--------------------------------------
60
60
61
- To install the latest version of PyDAX , run
61
+ To install the latest version of ParData , run
62
62
63
63
.. code-block :: console
64
64
65
- $ pip install pydax
65
+ $ pip install pardata
66
66
67
67
Alternatively, if you have downloaded the source, switch to the source directory (same directory as this README file,
68
- ``cd /path/to/pydax -source ``) and run
68
+ ``cd /path/to/pardata -source ``) and run
69
69
70
70
.. code-block :: console
71
71
@@ -74,43 +74,43 @@ Alternatively, if you have downloaded the source, switch to the source directory
74
74
Quick Start
75
75
-----------
76
76
77
- Import the package and load a dataset. PyDAX will download `WikiText-103
77
+ Import the package and load a dataset. ParData will download `WikiText-103
78
78
<https://developer.ibm.com/exchanges/data/all/wikitext-103/> `__ dataset (version ``1.0.1 ``) if it's not already
79
79
downloaded, and then load it.
80
80
81
81
.. code-block :: python
82
82
83
- import pydax
84
- wikitext103_data = pydax .load_dataset(' wikitext103' )
83
+ import pardata
84
+ wikitext103_data = pardata .load_dataset(' wikitext103' )
85
85
86
- View available PyDAX datasets and their versions.
86
+ View available ParData datasets and their versions.
87
87
88
88
.. code-block :: python
89
89
90
- >> > pydax .list_all_datasets()
90
+ >> > pardata .list_all_datasets()
91
91
{' claim_sentences_search' : (' 1.0.2' ,), ... , ' wikitext103' : (' 1.0.1' ,)}
92
92
93
- To view your globally set configs for PyDAX , such as your default data directory, use :func: `pydax .get_config `.
93
+ To view your globally set configs for ParData , such as your default data directory, use :func: `pardata .get_config `.
94
94
95
95
.. code-block :: python
96
96
97
- >> > pydax .get_config()
97
+ >> > pardata .get_config()
98
98
Config(DATADIR = PosixPath(' dir/to/download/load/from' ), ... , DATASET_SCHEMA_FILE_URL = ' file/to/load/datasets/from' )
99
99
100
- By default, :func: `pydax .load_dataset ` downloads to and loads from
101
- :file: `~/.pydax /data/<dataset-name>/<dataset-version>/ `. To change the default data directory, use :func: `pydax .init `.
100
+ By default, :func: `pardata .load_dataset ` downloads to and loads from
101
+ :file: `~/.pardata /data/<dataset-name>/<dataset-version>/ `. To change the default data directory, use :func: `pardata .init `.
102
102
103
103
.. code-block :: python
104
104
105
- pydax .init(DATADIR = ' new/dir/to/download/load/from' )
105
+ pardata .init(DATADIR = ' new/dir/to/download/load/from' )
106
106
107
- Load a previously downloaded dataset using :func: `pydax .load_dataset `. With the new default data dir set, PyDAX now
107
+ Load a previously downloaded dataset using :func: `pardata .load_dataset `. With the new default data dir set, ParData now
108
108
searches for the `Groningen Meaning Bank <https://developer.ibm.com/exchanges/data/all/groningen-meaning-bank/ >`__
109
109
dataset (version ``1.0.2 ``) in :file: `new/dir/to/download/load/from/gmb/1.0.2/ `.
110
110
111
111
.. code-block :: python
112
112
113
113
gmb_data = load_dataset(' gmb' , version = ' 1.0.2' , download = False ) # assuming GMB dataset was already downloaded
114
114
115
- To learn more about PyDAX , check out `the documentation <https://pydax .readthedocs.io >`__ and the
116
- `tutorial <https://pydax .readthedocs.io#tutorial >`__.
115
+ To learn more about ParData , check out `the documentation <https://pardata .readthedocs.io >`__ and the
116
+ `tutorial <https://pardata .readthedocs.io#tutorial >`__.
0 commit comments