Metadata-Version: 2.1
Name: capylang
Version: 1.0.0
Summary: Python's little programming language.
Author: Kia Kazemi
Author-email: kia@anistick.com
Requires-Python: >=3.8.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.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: numpy (>=1.22.2,<2.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

# Capylang
### Capylang is a pretty simple language.
### Here is an example of using Capylang.
```python
from capylang import capy
a = 5
b = 2
capy.help() # Prints the functions down
capy.log(str(capy.add(a,b))) # Prints 7 (also uses the add function)
capy.log(str(capy.sub(a,b))) # Prints 3 (also uses the subtract function)
capy.log(str(capy.multi(a,b))) # Prints 10 (also uses the multiply function)
capy.log(str(capy.div(a,b))) # Prints 2.5 (also uses the divide function)
capy.log(str(capy.hyp(a,b))) # Try this yourself for more info, check capy.help()
capy.log(str(capy.opp(a,b))) # Try this yourself for more info, check capy.help()
capy.log(str(capy.adj(a,b))) # Try this yourself for more info, check capy.help()
capy.auto_update(True) # Turns on auto updating. Auto updating is set to False by default.
```
### That's pretty much it for a basic tutorial of Capylang.
