Metadata-Version: 2.4
Name: unstdlibpy
Version: 0.0.7.13
Summary: A ligntweight package
Author: Chen Yuxuan
Author-email: null_3@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary


# a lightweight package
## There are many module on it
## such as algo, algebra, const, rgb... You name it!
## A simple:
```python

from unstdlibpy.algebra import *
num = X * X
# algebra(use json to store algebra, light weight but slow)
# If you are interested in it, you can make a better function than Algebra.simplify(self).

print(num)
# look at num, presented in the form of plain text.
# It's still the same feeling.
# If you are interested in it, you also can make a better function than Algebra.__str__(self).
# Although you make a new library to do it, I don't care. But you hane to make it free. FREE!

print(num.getvalue(2, X)) # Get a value of num(square of X).

```

# That's the all
