parascode
Advanced tools
| Metadata-Version: 2.4 | ||
| Name: parascode | ||
| Version: 2.3.4 | ||
| Summary: Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more | ||
| Version: 4.0.0 | ||
| Summary: Python Utility Toolkit with cFonts - Beautiful console fonts and utilities | ||
| Author: Paras Chourasiya | ||
@@ -10,3 +10,3 @@ License: MIT | ||
| Project-URL: Bug Tracker, https://github.com/Aotpy/issues | ||
| Keywords: cfonts,social-media,osint,instagram,twitter,tiktok,colors,console,parascode | ||
| Keywords: cfonts,colors,console,fonts,banner,terminal,parascode | ||
| Classifier: Development Status :: 4 - Beta | ||
@@ -26,8 +26,4 @@ Classifier: Intended Audience :: Developers | ||
| Description-Content-Type: text/markdown | ||
| Requires-Dist: colorama>=0.4.4 | ||
| Requires-Dist: httpx>=0.23.0 | ||
| Requires-Dist: requests>=2.25.0 | ||
| Requires-Dist: httpx>=0.23.0 | ||
| Requires-Dist: user-agent>=0.1.0 | ||
| Requires-Dist: curl2pyreqs>=0.1.0 | ||
| Requires-Dist: PySocks>=1.7.1 | ||
| Requires-Dist: colorama>=0.4.4 | ||
| Requires-Dist: urllib3>=1.26.0 |
@@ -0,7 +1,3 @@ | ||
| colorama>=0.4.4 | ||
| httpx>=0.23.0 | ||
| requests>=2.25.0 | ||
| httpx>=0.23.0 | ||
| user-agent>=0.1.0 | ||
| curl2pyreqs>=0.1.0 | ||
| PySocks>=1.7.1 | ||
| colorama>=0.4.4 | ||
| urllib3>=1.26.0 |
@@ -8,4 +8,3 @@ pyproject.toml | ||
| parascode.egg-info/dependency_links.txt | ||
| parascode.egg-info/entry_points.txt | ||
| parascode.egg-info/requires.txt | ||
| parascode.egg-info/top_level.txt |
@@ -1,3 +0,3 @@ | ||
| from .parascode import * | ||
| from .core import * | ||
| __version__ = "2.3.4" | ||
| __version__ = "4.0.0" |
@@ -1,1 +0,1 @@ | ||
| __version__ = "2.3.4" | ||
| __version__ = "4.0.0" |
+16
-3
| """ | ||
| ParasCode - Python Utility Toolkit with cFonts | ||
| Author: Paras Chourasiya | ||
| GitHub: https://github.com/Aptpy | ||
| GitHub: https://github.com/Aotpy | ||
| """ | ||
@@ -15,2 +15,3 @@ | ||
| import requests | ||
| import webbrowser | ||
| from datetime import datetime | ||
@@ -21,3 +22,3 @@ from typing import List, Optional, Tuple, NamedTuple | ||
| colorama.init() | ||
| __version__ = "2.3.4" | ||
| __version__ = "4.0.0" | ||
@@ -87,2 +88,5 @@ class Style(NamedTuple): | ||
| def link(self, url): | ||
| webbrowser.open(url) | ||
| def clear(self): | ||
@@ -532,2 +536,3 @@ os.system("cls" if os.name == "nt" else "clear") | ||
| get_client = pc.get_client | ||
| link = pc.link | ||
| clear = pc.clear | ||
@@ -542,2 +547,10 @@ banner = pc.banner | ||
| say = pc.say | ||
| run = pc.run | ||
| run = pc.run | ||
| __all__ = [ | ||
| "__version__", "pc", "cprint", "random_string", | ||
| "random_number", "random_user_agent", "get_client", | ||
| "link", "clear", "banner", "colored", "print_colored", | ||
| "clear_screen", "show_fonts", "show_colors", | ||
| "render", "say", "run", "ParasCode" | ||
| ] |
+5
-9
| Metadata-Version: 2.4 | ||
| Name: parascode | ||
| Version: 2.3.4 | ||
| Summary: Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more | ||
| Version: 4.0.0 | ||
| Summary: Python Utility Toolkit with cFonts - Beautiful console fonts and utilities | ||
| Author: Paras Chourasiya | ||
@@ -10,3 +10,3 @@ License: MIT | ||
| Project-URL: Bug Tracker, https://github.com/Aotpy/issues | ||
| Keywords: cfonts,social-media,osint,instagram,twitter,tiktok,colors,console,parascode | ||
| Keywords: cfonts,colors,console,fonts,banner,terminal,parascode | ||
| Classifier: Development Status :: 4 - Beta | ||
@@ -26,8 +26,4 @@ Classifier: Intended Audience :: Developers | ||
| Description-Content-Type: text/markdown | ||
| Requires-Dist: colorama>=0.4.4 | ||
| Requires-Dist: httpx>=0.23.0 | ||
| Requires-Dist: requests>=2.25.0 | ||
| Requires-Dist: httpx>=0.23.0 | ||
| Requires-Dist: user-agent>=0.1.0 | ||
| Requires-Dist: curl2pyreqs>=0.1.0 | ||
| Requires-Dist: PySocks>=1.7.1 | ||
| Requires-Dist: colorama>=0.4.4 | ||
| Requires-Dist: urllib3>=1.26.0 |
+8
-13
@@ -7,6 +7,8 @@ [build-system] | ||
| name = "parascode" | ||
| version = "2.3.4" | ||
| description = "Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more" | ||
| version = "4.0.0" | ||
| description = "Python Utility Toolkit with cFonts - Beautiful console fonts and utilities" | ||
| readme = "README.md" | ||
| authors = [{ name = "Paras Chourasiya" }] | ||
| authors = [ | ||
| { name = "Paras Chourasiya" } | ||
| ] | ||
| license = { text = "MIT" } | ||
@@ -27,12 +29,8 @@ classifiers = [ | ||
| ] | ||
| keywords = ["cfonts", "social-media", "osint", "instagram", "twitter", "tiktok", "colors", "console", "parascode"] | ||
| keywords = ["cfonts", "colors", "console", "fonts", "banner", "terminal", "parascode"] | ||
| requires-python = ">=3.6" | ||
| dependencies = [ | ||
| "colorama>=0.4.4", | ||
| "httpx>=0.23.0", | ||
| "requests>=2.25.0", | ||
| "httpx>=0.23.0", | ||
| "user-agent>=0.1.0", | ||
| "curl2pyreqs>=0.1.0", | ||
| "PySocks>=1.7.1", | ||
| "colorama>=0.4.4", | ||
| "urllib3>=1.26.0", | ||
| ] | ||
@@ -45,6 +43,3 @@ | ||
| [project.scripts] | ||
| parascode = "parascode.cli:main" | ||
| [tool.setuptools.packages.find] | ||
| include = ["parascode*"] |
| [console_scripts] | ||
| parascode = parascode.cli:main |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
469
2.4%27549
-0.94%11
-8.33%