Metadata-Version: 2.4
Name: speedupper
Version: 0.1.0
Summary: Simple FPS booster for Python loops
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# speedupper

Қарапайым FPS booster кітапхана.  

Мысалы:

```python
from speedupper import sucode, string

code = sucode(limit=61)
code.SUC = string("""
import time
for i in range(5):
    print("Frame", i)
    _speedupper_tick()
""")
code.SUC.run()
