Metadata-Version: 2.1
Name: jstimer4py
Version: 0.1.0
Summary: 
Author: cyan
Author-email: contact@cyans.me
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# jstimer4py
EMCAScript-like timer functions for Python


```python
from jstimer4py import set_timeout
set_timeout(lambda: print("Hello world"), 4) # call after 4 seconds 
```

