Metadata-Version: 2.1
Name: paxutils
Version: 0.2.1
Summary: Miscellaneous utilities for PAX notebooks
Home-page: https://github.com/pax-ul/paxutils
Author: Marc Parizeau
Author-email: marc@parizeau.org
Project-URL: Bug Tracker, https://github.com/pax-ul/paxutils/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# paxutils
Miscellaneous utilities for PAX notebooks.

The `path.Path` class is a dropin replacement for `pathlib.Path` in the context of the PAX platform. Use the standard `pathlib` in any other context.

# Usage
```python
from paxutils.path import Path

# define path for file `myfile` in the context of the PAX course `GIF-U014`
path = Path('myfile', course='GIF-U014')
...
```

# build distribution
python -m build

# upload to pypi
twine upload dist/*
