Metadata-Version: 2.1
Name: PyVals
Version: 1.1.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 IS EXTREMELY HACKABLE, DO NOT USE IT FOR CLIENT INTERACTIONS!**<br /><br />
File extension:  `*.val`
## Possible Types(currently):
- Integers 
- Float
- Strings(But only double quotation marks)
- Math (Syntax: + - * / % ^)
- Variable = Variable
## Todo
System for saving the all variables. <br />
Implement other languages. <br />
Bridge the other languages(Although this is a Wish Dream)
## Example
### values.val:
```
a = 2
b = "Hello World"
c = a
d = %math(2+2*2^2)
```
### main.py:
```python
import pyvals

pyvals.register(globals())
pyvals.vals_from(open("values.val").read())

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


