Metadata-Version: 2.1
Name: yrange
Version: 1.1.0
Summary: Use generator for range function
Home-page: https://github.com/nimafanniasl/py_yrange
Author: Nima Fanniasl
Author-email: info@smartnima.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/nimafanniasl/py_yrange/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

Use the generator for the range function!
----------------------
installation method:
```pip install yrange```
How to use:
```
First import yrange in your application.
You can then work with yrange using yrange (max, min = None).
```
example:
```
from yrange.yrange import yrange

for i in yrange(10000,1):
  print(i)
```
enjoy.
Contact me: info@smartnima.com
[my website](https://smartnima.com)

