Metadata-Version: 2.4
Name: typeglide
Version: 0.3.3
Summary: A smooth typewriter text effect library for Python. Works with tkinter too! Made by dakshu.
Author-email: Dakshu <dakshumail98@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11.14
Description-Content-Type: text/markdown

# typeglide

A smooth typewriter text effect library for Python — made by dakshu.

## Installation
```bash
pip install typeglide
```

## How to use it?

### Simple code to use:

```python
import typeglide

glide = typeglide.save("Hello World", delay=0.05)  # Save The Text
print(glide)  # Print The Animated text
```

### This now works with tkinter 🐱

```python
import typeglide
import tkinter as tk

glide = typeglide.save("Hello World", delay=0.05)

def do():
    glide.animate_widget(label)

root = tk.Tk()
label = tk.Label(text="hi")
label.pack()
button = tk.Button(text="press", command=do)
button.pack()
root.mainloop()
```
