parascode
Advanced tools
| [console_scripts] | ||
| parascode = parascode.cli:main |
| 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 |
| __version__ = "2.3.1" |
+112
| #!/usr/bin/env python3 | ||
| """ | ||
| ParasCode Command Line Interface | ||
| """ | ||
| import argparse | ||
| import sys | ||
| from . import ( | ||
| __version__, pc, say, render, show_fonts, | ||
| show_colors, show_backgrounds, Instagram, Twitter | ||
| ) | ||
| def main(): | ||
| parser = argparse.ArgumentParser( | ||
| description="ParasCode - Python Utility Toolkit", | ||
| formatter_class=argparse.RawDescriptionHelpFormatter, | ||
| epilog=""" | ||
| Examples: | ||
| parascode "Hello World" --font block --colors red,blue | ||
| parascode "Python" --font 3d --gradient red,yellow,green | ||
| parascode --instagram cristiano | ||
| parascode --twitter elonmusk | ||
| parascode --list-fonts | ||
| """ | ||
| ) | ||
| parser.add_argument("text", nargs="?", help="Text to render with cFonts") | ||
| parser.add_argument("-f", "--font", default="block", help="Font name (default: block)") | ||
| parser.add_argument("-c", "--colors", help="Colors (comma separated)") | ||
| parser.add_argument("-g", "--gradient", help="Gradient colors (comma separated)") | ||
| parser.add_argument("-a", "--align", default="left", choices=["left", "center", "right"], help="Text alignment") | ||
| parser.add_argument("-b", "--background", help="Background color") | ||
| parser.add_argument("--instagram", metavar="USERNAME", help="Get Instagram user info") | ||
| parser.add_argument("--twitter", metavar="USERNAME", help="Get Twitter user info") | ||
| parser.add_argument("--check-email", metavar="EMAIL", help="Check if email exists on Instagram") | ||
| parser.add_argument("--list-fonts", action="store_true", help="List all available fonts") | ||
| parser.add_argument("--list-colors", action="store_true", help="List all available colors") | ||
| parser.add_argument("--list-backgrounds", action="store_true", help="List all background colors") | ||
| parser.add_argument("-v", "--version", action="store_true", help="Show version") | ||
| args = parser.parse_args() | ||
| if args.version: | ||
| print(f"ParasCode v{__version__}") | ||
| return | ||
| if args.list_fonts: | ||
| show_fonts() | ||
| return | ||
| if args.list_colors: | ||
| show_colors() | ||
| return | ||
| if args.list_backgrounds: | ||
| show_backgrounds() | ||
| return | ||
| if args.instagram: | ||
| info = Instagram.information(args.instagram) | ||
| if info: | ||
| print(f"\nš± Instagram: @{args.instagram}") | ||
| print(f"š¤ Name: {info.get('name', 'N/A')}") | ||
| print(f"š„ Followers: {info.get('followers', 'N/A')}") | ||
| print(f"š Posts: {info.get('post', 'N/A')}") | ||
| print(f"ā Verified: {info.get('is_verified', False)}") | ||
| print(f"š Private: {info.get('is_private', False)}") | ||
| print(f"š Joined: {info.get('date', 'N/A')}") | ||
| else: | ||
| print(f"ā User @{args.instagram} not found") | ||
| return | ||
| if args.twitter: | ||
| info = Twitter.information(args.twitter) | ||
| if info: | ||
| print(f"\nš¦ Twitter: @{args.twitter}") | ||
| print(f"š¤ Name: {info.get('name', 'N/A')}") | ||
| print(f"š„ Followers: {info.get('followers', 'N/A')}") | ||
| print(f"š Bio: {info.get('bio', 'N/A')}") | ||
| print(f"š Location: {info.get('location', 'N/A')}") | ||
| print(f"ā Verified: {info.get('verified', False)}") | ||
| else: | ||
| print(f"ā User @{args.twitter} not found") | ||
| return | ||
| if args.check_email: | ||
| result = Instagram.CheckEmail(args.check_email) | ||
| if result: | ||
| print(f"ā Email {args.check_email} is registered on Instagram") | ||
| else: | ||
| print(f"ā Email {args.check_email} is NOT registered on Instagram") | ||
| return | ||
| if args.text: | ||
| colors = args.colors.split(",") if args.colors else None | ||
| gradient = args.gradient.split(",") if args.gradient else None | ||
| say( | ||
| args.text, | ||
| font=args.font, | ||
| colors=colors, | ||
| gradient=gradient, | ||
| align=args.align, | ||
| background=args.background or "transparent" | ||
| ) | ||
| else: | ||
| parser.print_help() | ||
| if __name__ == "__main__": | ||
| main() |
| Metadata-Version: 2.4 | ||
| Name: parascode | ||
| Version: 2.3.0 | ||
| Summary: Multi functional python module | ||
| Author: Paras | ||
| Version: 2.3.1 | ||
| Summary: Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more | ||
| Author: Paras Chourasiya | ||
| License: MIT | ||
| Project-URL: Homepage, https://github.com/Aotpy | ||
| Project-URL: Repository, https://github.com/Aotpy | ||
| Project-URL: Bug Tracker, https://github.com/Aotpy/issues | ||
| Keywords: cfonts,social-media,osint,instagram,twitter,tiktok,colors,console,parascode | ||
| Classifier: Development Status :: 4 - Beta | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: MIT License | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.6 | ||
| Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Programming Language :: Python :: 3.8 | ||
| Classifier: Programming Language :: Python :: 3.9 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
| Classifier: Topic :: Utilities | ||
| Requires-Python: >=3.6 | ||
| Description-Content-Type: text/markdown | ||
| 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 |
| pyproject.toml | ||
| parascode/__init__.py | ||
| parascode/__version__.py | ||
| parascode/cli.py | ||
| parascode/core.py | ||
@@ -7,2 +9,4 @@ parascode.egg-info/PKG-INFO | ||
| parascode.egg-info/dependency_links.txt | ||
| parascode.egg-info/entry_points.txt | ||
| parascode.egg-info/requires.txt | ||
| parascode.egg-info/top_level.txt |
@@ -1,1 +0,27 @@ | ||
| from .core import * | ||
| """ | ||
| ParasCode - Complete Python Utility Toolkit | ||
| Author: Paras Chourasiya | ||
| GitHub: https://github.com/Aptpy | ||
| """ | ||
| from .__version__ import __version__ | ||
| from .parascode import ( | ||
| ParasCode, pc, cprint, random_string, random_number, | ||
| random_user_agent, get_client, link, expire, clear, | ||
| banner, clear_screen, print_colored, colored, | ||
| render, say, show_fonts, show_colors, show_backgrounds, | ||
| Instagram, Twitter, Tiktok, Facebook, Spotify, | ||
| Email, UserAgent, Curl, Proxy, | ||
| get_country_info, GetMid, coockie, r | ||
| ) | ||
| __all__ = [ | ||
| "__version__", "ParasCode", "pc", "cprint", "random_string", | ||
| "random_number", "random_user_agent", "get_client", "link", | ||
| "expire", "clear", "banner", "clear_screen", "print_colored", | ||
| "colored", "render", "say", "show_fonts", "show_colors", | ||
| "show_backgrounds", "Instagram", "Twitter", "Tiktok", "Facebook", | ||
| "Spotify", "Email", "UserAgent", "Curl", "Proxy", | ||
| "get_country_info", "GetMid", "coockie", "r" | ||
| ] |
+29
-3
| Metadata-Version: 2.4 | ||
| Name: parascode | ||
| Version: 2.3.0 | ||
| Summary: Multi functional python module | ||
| Author: Paras | ||
| Version: 2.3.1 | ||
| Summary: Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more | ||
| Author: Paras Chourasiya | ||
| License: MIT | ||
| Project-URL: Homepage, https://github.com/Aotpy | ||
| Project-URL: Repository, https://github.com/Aotpy | ||
| Project-URL: Bug Tracker, https://github.com/Aotpy/issues | ||
| Keywords: cfonts,social-media,osint,instagram,twitter,tiktok,colors,console,parascode | ||
| Classifier: Development Status :: 4 - Beta | ||
| Classifier: Intended Audience :: Developers | ||
| Classifier: License :: OSI Approved :: MIT License | ||
| Classifier: Programming Language :: Python :: 3 | ||
| Classifier: Programming Language :: Python :: 3.6 | ||
| Classifier: Programming Language :: Python :: 3.7 | ||
| Classifier: Programming Language :: Python :: 3.8 | ||
| Classifier: Programming Language :: Python :: 3.9 | ||
| Classifier: Programming Language :: Python :: 3.10 | ||
| Classifier: Programming Language :: Python :: 3.11 | ||
| Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
| Classifier: Topic :: Utilities | ||
| Requires-Python: >=3.6 | ||
| Description-Content-Type: text/markdown | ||
| 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 |
+44
-5
@@ -0,8 +1,47 @@ | ||
| [build-system] | ||
| requires = ["setuptools>=61.0", "wheel"] | ||
| build-backend = "setuptools.build_meta" | ||
| [project] | ||
| name = "parascode" | ||
| version = "2.3.0" | ||
| description = "Multi functional python module" | ||
| authors = [ | ||
| {name="Paras"} | ||
| version = "2.3.1" | ||
| description = "Complete Python Utility Toolkit with cFonts, Social Media OSINT, and more" | ||
| readme = "README.md" | ||
| authors = [{ name = "Paras Chourasiya" }] | ||
| license = { text = "MIT" } | ||
| classifiers = [ | ||
| "Development Status :: 4 - Beta", | ||
| "Intended Audience :: Developers", | ||
| "License :: OSI Approved :: MIT License", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.6", | ||
| "Programming Language :: Python :: 3.7", | ||
| "Programming Language :: Python :: 3.8", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3.11", | ||
| "Topic :: Software Development :: Libraries :: Python Modules", | ||
| "Topic :: Utilities", | ||
| ] | ||
| dependencies = [] | ||
| keywords = ["cfonts", "social-media", "osint", "instagram", "twitter", "tiktok", "colors", "console", "parascode"] | ||
| requires-python = ">=3.6" | ||
| dependencies = [ | ||
| "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", | ||
| ] | ||
| [project.urls] | ||
| Homepage = "https://github.com/Aotpy" | ||
| Repository = "https://github.com/Aotpy" | ||
| "Bug Tracker" = "https://github.com/Aotpy/issues" | ||
| [project.scripts] | ||
| parascode = "parascode.cli:main" | ||
| [tool.setuptools.packages.find] | ||
| include = ["parascode*"] |
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
109738
2483.89%13
44.44%1995
1713.64%