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

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

## How to Use
- git clone Timey and copy timey.py to your project
- import Timey:

        from timey import Timey
- **OR**

        from timey import Timey as tp
or any other alias you wish to use.

- Usage 

        Timey(text, sec)

        tp(text, sec)
    - **``text``** can be strings or intergers

    - **``sec``** should be floats, but can also be intergers
    - **``sec``** must be positive numbers

            tp('Hello, world', 0.07)

            Timey('Foo Bar Baz', 1)

            Timey(f'Foo Bar Baz {opt_var_here}', 1.0)

            Timey('Foo {} Baz'.format(opt_var_here), 1.0)
