typeglide 0.3.2__tar.gz → 0.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {typeglide-0.3.2 → typeglide-0.3.4}/LICENSE +1 -1
- typeglide-0.3.4/PKG-INFO +50 -0
- typeglide-0.3.4/README.md +38 -0
- {typeglide-0.3.2 → typeglide-0.3.4}/pyproject.toml +2 -2
- {typeglide-0.3.2 → typeglide-0.3.4}/typeglide/__init__.py +1 -1
- typeglide-0.3.2/PKG-INFO +0 -19
- typeglide-0.3.2/README.md +0 -7
- {typeglide-0.3.2 → typeglide-0.3.4}/typeglide/engine.py +0 -0
typeglide-0.3.4/PKG-INFO
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: typeglide
|
|
3
|
+
Version: 0.3.4
|
|
4
|
+
Summary: A smooth typewriter text effect library for Python. Works with tkinter too! Made by dakshu.
|
|
5
|
+
Author-email: Dakshu <dakshumail98@gmail.com>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Classifier: Operating System :: OS Independent
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.11.14
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# typeglide
|
|
14
|
+
|
|
15
|
+
A smooth typewriter text effect library for Python — made by dakshu.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
```bash
|
|
19
|
+
pip install typeglide
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## How to use it?
|
|
23
|
+
|
|
24
|
+
### Simple code to use:
|
|
25
|
+
|
|
26
|
+
```python
|
|
27
|
+
import typeglide
|
|
28
|
+
|
|
29
|
+
glide = typeglide.save("Hello World", delay=0.05) # Save The Text
|
|
30
|
+
print(glide) # Print The Animated text
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### This now works with tkinter 🐱
|
|
34
|
+
|
|
35
|
+
```python
|
|
36
|
+
import typeglide
|
|
37
|
+
import tkinter as tk
|
|
38
|
+
|
|
39
|
+
glide = typeglide.save("Hello World", delay=0.05)
|
|
40
|
+
|
|
41
|
+
def do():
|
|
42
|
+
glide.animate_widget(label)
|
|
43
|
+
|
|
44
|
+
root = tk.Tk()
|
|
45
|
+
label = tk.Label(text="hi")
|
|
46
|
+
label.pack()
|
|
47
|
+
button = tk.Button(text="press", command=do)
|
|
48
|
+
button.pack()
|
|
49
|
+
root.mainloop()
|
|
50
|
+
```
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# typeglide
|
|
2
|
+
|
|
3
|
+
A smooth typewriter text effect library for Python — made by dakshu.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
```bash
|
|
7
|
+
pip install typeglide
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## How to use it?
|
|
11
|
+
|
|
12
|
+
### Simple code to use:
|
|
13
|
+
|
|
14
|
+
```python
|
|
15
|
+
import typeglide
|
|
16
|
+
|
|
17
|
+
glide = typeglide.save("Hello World", delay=0.05) # Save The Text
|
|
18
|
+
print(glide) # Print The Animated text
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### This now works with tkinter 🐱
|
|
22
|
+
|
|
23
|
+
```python
|
|
24
|
+
import typeglide
|
|
25
|
+
import tkinter as tk
|
|
26
|
+
|
|
27
|
+
glide = typeglide.save("Hello World", delay=0.05)
|
|
28
|
+
|
|
29
|
+
def do():
|
|
30
|
+
glide.animate_widget(label)
|
|
31
|
+
|
|
32
|
+
root = tk.Tk()
|
|
33
|
+
label = tk.Label(text="hi")
|
|
34
|
+
label.pack()
|
|
35
|
+
button = tk.Button(text="press", command=do)
|
|
36
|
+
button.pack()
|
|
37
|
+
root.mainloop()
|
|
38
|
+
```
|
|
@@ -4,8 +4,8 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "typeglide"
|
|
7
|
-
version = "0.3.
|
|
8
|
-
description = "A smooth typewriter
|
|
7
|
+
version = "0.3.4"
|
|
8
|
+
description = "A smooth typewriter text effect library for Python. Works with tkinter too! Made by dakshu."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11.14"
|
|
11
11
|
authors = [
|
typeglide-0.3.2/PKG-INFO
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: typeglide
|
|
3
|
-
Version: 0.3.2
|
|
4
|
-
Summary: A smooth typewriter printing library that is made by dakshu.
|
|
5
|
-
Author-email: Dakshu <dakshumail98@gmail.com>
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Requires-Python: >=3.11.14
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
|
|
13
|
-
# pytypewriter
|
|
14
|
-
|
|
15
|
-
A simple Python library to create classic arcade/typewriter text effects in the terminal.
|
|
16
|
-
|
|
17
|
-
## Installation
|
|
18
|
-
```bash
|
|
19
|
-
pip install pytypewriter-yourusername
|
typeglide-0.3.2/README.md
DELETED
|
File without changes
|