ConsoleFramework 1.2.0__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.
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: ConsoleFramework
3
+ Version: 1.2.0
4
+ Summary: The best Console Library of the Python.
5
+ Author: Suleiman
6
+ Author-email: steal.apet@mail.ru
7
+ License: MIT
8
+ Requires-Python: >=3.6
9
+ Dynamic: author
10
+ Dynamic: author-email
11
+ Dynamic: license
12
+ Dynamic: requires-python
13
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ setup.py
2
+ ConsoleFramework.egg-info/PKG-INFO
3
+ ConsoleFramework.egg-info/SOURCES.txt
4
+ ConsoleFramework.egg-info/dependency_links.txt
5
+ ConsoleFramework.egg-info/not-zip-safe
6
+ ConsoleFramework.egg-info/top_level.txt
7
+ ConsoleTools/core.cpp
8
+ consoletools/__init__.py
@@ -0,0 +1,2 @@
1
+ ConsoleTools
2
+ consoletools
@@ -0,0 +1,27 @@
1
+ """
2
+ ConsoleTools - The best Console Library of the Python.
3
+ By: Suleiman
4
+ Copyright © Suleiman 2026
5
+ All rights are reserved.
6
+ """
7
+ from .core import *
8
+
9
+ __all__ = [
10
+ "rgb", "bg_rgb", "colorize",
11
+ "get_line_points", "get_circle_points", "get_filled_circle_points",
12
+ "get_rect_points", "get_fill_rect_points",
13
+ "get_triangle_points", "get_filled_triangle_points",
14
+ "get_heart_points", "get_star_points",
15
+ "get_wave_points", "get_spiral_points",
16
+ "get_bezier_points", "get_grid_points", "get_noise_points",
17
+ "get_cube_3d_points", "get_sphere_3d_points",
18
+ "get_cylinder_3d_points", "get_cone_3d_points",
19
+ "get_torus_3d_points", "get_ico_sphere_3d_points",
20
+ "DrawPic", "GetKey",
21
+ "StartPyCode", "KillPyScript", "IsRunning",
22
+ "GetCurrentPID", "WaitForProcess", "GetProcessList", "GetProcessInfo",
23
+ "clear_screen", "animate_print", "spinning_cursor", "countdown",
24
+ "GetPipVer",
25
+ "Connect", "ConnectPublic", "Send", "Receive", "Disconnect",
26
+ "GetPublicIP", "CreateServer"
27
+ ]