Metadata-Version: 2.1
Name: pydatasci
Version: 0.0.13
Summary: Simplify the end-to-end workflow of machine learning.
Home-page: https://github.com/pydatasci-repo
Author: Layne Sadler
Author-email: layne@pydatasci.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Description-Content-Type: text/markdown
Requires-Dist: appdirs

# pydatasci

> Simplify the end-to-end workflow of machine learning.


### Updating PyPI Package:
```
$ python3 setup.py sdist bdist_wheel
$ python3 -m twine upload --repository pypi dist/*
$ pip3 install --upgrade pydatasci
$ rm -r build dist pydatasci.egg-info
# proactively update the version number for next time
```

### First Time Installation:
This makes use of `appdirs` for an operating system agnostic location where a database file will be created.
```
$ pip3 install --upgrade pydatasci
$ python3
>>> from pydatasci import mldb as mldb
>>> mldb.create_db()
```
ToDo - The path to the database will be set as global variable _ and used as a default argument with other functions, but you can override this argument if you need to.

