Metadata-Version: 2.1
Name: PyVals
Version: 1.0.0
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 IS EXTREMLY HACKABLE, DO NOT USE IT FOR CLIENT INTERACTIONS!**<br /><br />
File extension:  `*.val`
## Example
###values.val:
```
a=2
b="Hello World"
c=a
d=%math(2+2*2^2)
```
###main.py:
```python
import pyvals

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

# Yes, this variable did automatically generate
print(a)
print(b)
print(c)
print(d)
# output:
# 2
# Hello World
# 2
# 10
```


