parascode 2.3.1__tar.gz → 2.3.2__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.
- {parascode-2.3.1 → parascode-2.3.2}/PKG-INFO +1 -1
- parascode-2.3.2/parascode/__init__.py +111 -0
- parascode-2.3.2/parascode/__version__.py +1 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode/core.py +1 -1
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/PKG-INFO +1 -1
- {parascode-2.3.1 → parascode-2.3.2}/pyproject.toml +1 -1
- parascode-2.3.1/parascode/__init__.py +0 -27
- parascode-2.3.1/parascode/__version__.py +0 -1
- {parascode-2.3.1 → parascode-2.3.2}/parascode/cli.py +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/SOURCES.txt +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/dependency_links.txt +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/entry_points.txt +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/requires.txt +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/parascode.egg-info/top_level.txt +0 -0
- {parascode-2.3.1 → parascode-2.3.2}/setup.cfg +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ParasCode - Complete Python Utility Toolkit
|
|
3
|
+
Author: Paras Chourasiya
|
|
4
|
+
GitHub: https://github.com/Aptpy
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .__version__ import __version__
|
|
8
|
+
from .core import (
|
|
9
|
+
# Main class
|
|
10
|
+
ParasCode,
|
|
11
|
+
|
|
12
|
+
# Instances
|
|
13
|
+
pc,
|
|
14
|
+
|
|
15
|
+
# Utility functions
|
|
16
|
+
cprint,
|
|
17
|
+
random_string,
|
|
18
|
+
random_number,
|
|
19
|
+
random_user_agent,
|
|
20
|
+
get_client,
|
|
21
|
+
link,
|
|
22
|
+
expire,
|
|
23
|
+
clear,
|
|
24
|
+
banner,
|
|
25
|
+
clear_screen,
|
|
26
|
+
print_colored,
|
|
27
|
+
colored,
|
|
28
|
+
|
|
29
|
+
# cFonts functions
|
|
30
|
+
render,
|
|
31
|
+
say,
|
|
32
|
+
show_fonts,
|
|
33
|
+
show_colors,
|
|
34
|
+
show_backgrounds,
|
|
35
|
+
|
|
36
|
+
# Social Media Classes
|
|
37
|
+
Instagram,
|
|
38
|
+
Twitter,
|
|
39
|
+
Tiktok,
|
|
40
|
+
Facebook,
|
|
41
|
+
Spotify,
|
|
42
|
+
|
|
43
|
+
# Email Class
|
|
44
|
+
Email,
|
|
45
|
+
|
|
46
|
+
# Utility Classes
|
|
47
|
+
UserAgent,
|
|
48
|
+
Curl,
|
|
49
|
+
Proxy,
|
|
50
|
+
|
|
51
|
+
# Helper functions
|
|
52
|
+
get_country_info,
|
|
53
|
+
GetMid,
|
|
54
|
+
coockie,
|
|
55
|
+
|
|
56
|
+
# Session
|
|
57
|
+
r
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
__all__ = [
|
|
61
|
+
# Version
|
|
62
|
+
"__version__",
|
|
63
|
+
|
|
64
|
+
# Main class
|
|
65
|
+
"ParasCode",
|
|
66
|
+
"pc",
|
|
67
|
+
|
|
68
|
+
# Utility functions
|
|
69
|
+
"cprint",
|
|
70
|
+
"random_string",
|
|
71
|
+
"random_number",
|
|
72
|
+
"random_user_agent",
|
|
73
|
+
"get_client",
|
|
74
|
+
"link",
|
|
75
|
+
"expire",
|
|
76
|
+
"clear",
|
|
77
|
+
"banner",
|
|
78
|
+
"clear_screen",
|
|
79
|
+
"print_colored",
|
|
80
|
+
"colored",
|
|
81
|
+
|
|
82
|
+
# cFonts functions
|
|
83
|
+
"render",
|
|
84
|
+
"say",
|
|
85
|
+
"show_fonts",
|
|
86
|
+
"show_colors",
|
|
87
|
+
"show_backgrounds",
|
|
88
|
+
|
|
89
|
+
# Social Media
|
|
90
|
+
"Instagram",
|
|
91
|
+
"Twitter",
|
|
92
|
+
"Tiktok",
|
|
93
|
+
"Facebook",
|
|
94
|
+
"Spotify",
|
|
95
|
+
|
|
96
|
+
# Email
|
|
97
|
+
"Email",
|
|
98
|
+
|
|
99
|
+
# Utilities
|
|
100
|
+
"UserAgent",
|
|
101
|
+
"Curl",
|
|
102
|
+
"Proxy",
|
|
103
|
+
|
|
104
|
+
# Helpers
|
|
105
|
+
"get_country_info",
|
|
106
|
+
"GetMid",
|
|
107
|
+
"coockie",
|
|
108
|
+
|
|
109
|
+
# Session
|
|
110
|
+
"r",
|
|
111
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.3.2"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "parascode"
|
|
7
|
-
version = "2.3.
|
|
7
|
+
version = "2.3.2"
|
|
8
8
|
description = "Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "Paras Chourasiya" }]
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
"""
|
|
3
|
-
ParasCode - Complete Python Utility Toolkit
|
|
4
|
-
Author: Paras Chourasiya
|
|
5
|
-
GitHub: https://github.com/Aptpy
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
from .__version__ import __version__
|
|
9
|
-
from .parascode import (
|
|
10
|
-
ParasCode, pc, cprint, random_string, random_number,
|
|
11
|
-
random_user_agent, get_client, link, expire, clear,
|
|
12
|
-
banner, clear_screen, print_colored, colored,
|
|
13
|
-
render, say, show_fonts, show_colors, show_backgrounds,
|
|
14
|
-
Instagram, Twitter, Tiktok, Facebook, Spotify,
|
|
15
|
-
Email, UserAgent, Curl, Proxy,
|
|
16
|
-
get_country_info, GetMid, coockie, r
|
|
17
|
-
)
|
|
18
|
-
|
|
19
|
-
__all__ = [
|
|
20
|
-
"__version__", "ParasCode", "pc", "cprint", "random_string",
|
|
21
|
-
"random_number", "random_user_agent", "get_client", "link",
|
|
22
|
-
"expire", "clear", "banner", "clear_screen", "print_colored",
|
|
23
|
-
"colored", "render", "say", "show_fonts", "show_colors",
|
|
24
|
-
"show_backgrounds", "Instagram", "Twitter", "Tiktok", "Facebook",
|
|
25
|
-
"Spotify", "Email", "UserAgent", "Curl", "Proxy",
|
|
26
|
-
"get_country_info", "GetMid", "coockie", "r"
|
|
27
|
-
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.3.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|