Metadata-Version: 2.4
Name: python_mini
Version: 0.0.5
Author: ARFIII
Author-email: a.loskutov.dmitrievich@gmail.com
Project-URL: GitHub, https://github.com/aloskutovdmitrievich-star/python_mini
Project-URL: Render, https://render.com
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: project-url
Dynamic: requires-dist

## What's new?

# About my library

This library has 3 modules: `math`, `pygame_copy`(recommend not using) and `music`. Module
`math` has two classes: `square_root` and `Calculator`.


CLASS Calculator:
```py
import python_mini
oCalculator = python_mini.math.Calculator(144, 12)
CalcDiv = oCalculator.div()
print(CalcDiv)  #Enter: 12.0
```


class square_root:
```py
import python_mini
sq_root = square_root(144).square_root()
print(sq_root)
```

Module `music` has one class: `Note`
The Note class's call is simple:
```py
import python_mini
python_mini.music.Note().play_the_note("do")    #example
```
