Metadata-Version: 2.1
Name: PyVals
Version: 0.1
Summary: Easily import values into python
Home-page: UNKNOWN
Author: Xyndra
Author-email: xyndra@deutschergamingserver.de
License: MIT License
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Description-Content-Type: text/markdown
License-File: LICENCE.txt

PyVals
=======
**WARNING: THIS PROJECT IS NOT CURRENTLY WORKING SO DON'T USE IT**<br />
File extension:  `*.pv`
## Example
####values.pv:
```
a=%math(5+5)
```
####main.py:
```python
import pyvals

pyvals.vals_from(open("values.pv").read())
# You need to re-import all the values after executing vals_from
from pyvals import *

# Yes, this variable did automatically generate
print(a)
# output: 10
```


