Metadata-Version: 2.1
Name: timey_terminal
Version: 0.2.0
Summary: Prints text to terminal at timely intervals. Can replace the print function
Project-URL: Homepage, https://github.com/Kaligraphy247/timey
Project-URL: Bug Tracker, https://github.com/Kaligraphy247/timey/issues
Author-email: James ? <james.ononogbu@iubh.de>
License-File: LICENSE.txt
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3
Description-Content-Type: text/markdown

# Timey
### Prints characters after a set timed interval


## How to Use
- `pip install timey_terminal`

```python
>>> from timey import Timey
>>> p = Timey()
>>> p.show("Sample Text") # prints the provided text to the terminal
>>> p.get_seconds() # get the current interval at which each character is printed.  Default = 0.05s
>>> p.set_seconds(x) # sets the secs to what was provided.
```

- **OR**
```python
from timey import TimeyOld as pp
>>> pp("Testing", 0.5) # print each character every 0.5 secs
>>> pp("Sample text", 2) # print each character every 2 secs
```