Metadata-Version: 2.1
Name: impexpr
Version: 0.0.2
Summary: A simple superset of Python with import expressions added in
Home-page: https://github.com/Ovsyanka83/impexpr
License: MIT
Keywords: python,import,syntax
Author: Stanislav Zmiev
Author-email: szmiev2000@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Dist: black (>=22.1.0,<23.0.0)
Requires-Dist: ideas (>=0.0.37,<0.0.38)
Project-URL: Repository, https://github.com/Ovsyanka83/impexpr
Description-Content-Type: text/markdown

# Impexpr
A simple superset of Python with import expressions added in. Beware: This project has only been made as a proof of concept and is not intended to ever be used in production. 

## Installation
```bash
pip install impexpr
```
## Quickstart
* If you wish to import itertools and use it in the same line, run `impexpr` with the file with the following contents as the first argument:
```python
for x in (import itertools).chain([1, 2], [3, 4], [5, 6]):
    print(x)
```
* For everything else, run `impexpr --help`
