Metadata-Version: 2.1
Name: pythonpy-clone
Version: 0.0.1
Summary: rewrite of pythonpy using AST manipulations instead of regex
Home-page: https://github.com/iomintz/pythonpy-clone
Author: Io Mintz
License: BlueOak-1.0.0
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown; variant=GFM
Requires-Dist: import-expression (<1.0.0,>=0.5.0)
Requires-Dist: more-itertools (<8.0.0,>=7.2.0)

# pythonpy clone

This is a rewrite of [pythonpy] with (planned) feature parity and which is more robust. Instead of using regex to attempt to automatically
import all identifiers, it uses a library which I already wrote called [Import Expression Parser] to add easy inline imports
e.g. `urllib.parse!.quote("a b c")`.

For more information, see the [pythonpy] README and `py --help`.

[pythonpy]: https://github.com/Russell91/pythonpy
[Import Expression Parser]: https://github.com/iomintz/import-expression-parser

## Installation

`pip install pythonpy-clone` (or via [pipx]: `pipx install pythonpy-clone`)

From source:

`pip install .`

[pipx]: https://github.com/pipxproject/pipx

## License

BlueOak Model License v1.0.0, see [LICENSE.md](/LICENSE.md).
For rationale, see [kemitchell's blog post on the matter](https://writing.kemitchell.com/2019/03/09/Deprecation-Notice.html).


