vtclear 1.0__py3-none-any.whl → 1.0.1__py3-none-any.whl
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.
- vtclear-1.0.1.dist-info/METADATA +35 -0
- vtclear-1.0.1.dist-info/RECORD +7 -0
- {vtclear-1.0.dist-info → vtclear-1.0.1.dist-info}/WHEEL +1 -1
- vtclear-1.0.dist-info/METADATA +0 -29
- vtclear-1.0.dist-info/RECORD +0 -7
- {vtclear-1.0.dist-info → vtclear-1.0.1.dist-info/licenses}/LICENSE +0 -0
- {vtclear-1.0.dist-info → vtclear-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vtclear
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Python3 ANSI VT100 implementation of Erase Screen.
|
|
5
|
+
Author-email: "Carlos A. Planchón" <carlosandresplanchonprestes@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Repository, https://github.com/carlosplanchon/vtclear.git
|
|
8
|
+
Keywords: CLEAR,VT100,ANSI
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
18
|
+
Requires-Python: >=3.8
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Dynamic: license-file
|
|
22
|
+
|
|
23
|
+
# vtclear
|
|
24
|
+
Python ANSI VT100 implementation of Erase Screen
|
|
25
|
+
|
|
26
|
+
## installation
|
|
27
|
+
```
|
|
28
|
+
uv add vtclear
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## usage
|
|
32
|
+
```
|
|
33
|
+
from vtclear import clear_screen
|
|
34
|
+
clear_screen()
|
|
35
|
+
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
vtclear/__init__.py,sha256=g1eG8UGPSk0hQ59sXUK6Ymfg8ioaX0I09vJNPUxodrQ,65
|
|
2
|
+
vtclear/vtclear.py,sha256=BGsd1p8FJSlwr0Rb5XZEpmRLAPrUkkB1MK_Kl_XIn8Y,236
|
|
3
|
+
vtclear-1.0.1.dist-info/licenses/LICENSE,sha256=aijQ0xFC2gN_0ans1ZhrwOrACrx13GI_X2_g29YZ-yY,1076
|
|
4
|
+
vtclear-1.0.1.dist-info/METADATA,sha256=lmoWTkgXp-Q78aOmJS5juuXDDINys9Ia2M5o-ITjmXE,1038
|
|
5
|
+
vtclear-1.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
6
|
+
vtclear-1.0.1.dist-info/top_level.txt,sha256=UAu0xsNRb04tEw1F6j09S-BrKsMF_jtbnF3AvB5w_ms,8
|
|
7
|
+
vtclear-1.0.1.dist-info/RECORD,,
|
vtclear-1.0.dist-info/METADATA
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: vtclear
|
|
3
|
-
Version: 1.0
|
|
4
|
-
Summary: Python3 ANSI VT100 implementation of Erase Screen.
|
|
5
|
-
Author-email: "Carlos A. Planchón" <carlosandresplanchonprestes@gmail.com>
|
|
6
|
-
License: MIT License
|
|
7
|
-
Project-URL: repository, https://github.com/carlosplanchon/vtclear.git
|
|
8
|
-
Keywords: CLEAR,VT100,ANSI
|
|
9
|
-
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: Topic :: Software Development :: Build Tools
|
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
License-File: LICENSE
|
|
15
|
-
Requires-Dist: ijson
|
|
16
|
-
|
|
17
|
-
# vtclear
|
|
18
|
-
Python3 ANSI VT100 implementation of Erase Screen
|
|
19
|
-
|
|
20
|
-
## installation
|
|
21
|
-
```
|
|
22
|
-
pip install -U vtclear
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## usage
|
|
26
|
-
```
|
|
27
|
-
from vtclear import clear_screen
|
|
28
|
-
clear_screen()
|
|
29
|
-
```
|
vtclear-1.0.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
vtclear/__init__.py,sha256=g1eG8UGPSk0hQ59sXUK6Ymfg8ioaX0I09vJNPUxodrQ,65
|
|
2
|
-
vtclear/vtclear.py,sha256=BGsd1p8FJSlwr0Rb5XZEpmRLAPrUkkB1MK_Kl_XIn8Y,236
|
|
3
|
-
vtclear-1.0.dist-info/LICENSE,sha256=aijQ0xFC2gN_0ans1ZhrwOrACrx13GI_X2_g29YZ-yY,1076
|
|
4
|
-
vtclear-1.0.dist-info/METADATA,sha256=klaH8LQr3dvnfiIPWB9qQLO9ZREtBxi139cuib2xHsg,765
|
|
5
|
-
vtclear-1.0.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
6
|
-
vtclear-1.0.dist-info/top_level.txt,sha256=UAu0xsNRb04tEw1F6j09S-BrKsMF_jtbnF3AvB5w_ms,8
|
|
7
|
-
vtclear-1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|