Metadata-Version: 2.1
Name: pystow
Version: 0.0.1
Summary: Easily pick a place to store data to go with your python package.
Home-page: https://github.com/cthoyt/pystow
Author: Charles Tapley Hoyt
Author-email: cthoyt@gmail.com
Maintainer: Charles Tapley Hoyt
Maintainer-email: cthoyt@gmail.com
License: MIT
Download-URL: https://github.com/cthoyt/pystow/releases
Project-URL: Bug Tracker, https://github.com/cthoyt/pystow/issues
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: click

# PyStow

Easily pick a place to store data to go with your python package.

Install with: `pip install pystow`

Example usage:

```python
import pystow

# Get a directory (as a pathlib.Path)
pykeen_directory = pystow.get('pykeen')

# Get a subdirectory (as a pathlib.Path).
# You can specify as deep as you want.
pykeen_experiments_directory = pystow.get('pykeen', 'experiments')
```


