You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

parascode

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parascode - pypi Package Compare versions

Comparing version
4.0.0
to
4.0.1
+1
-1
parascode.egg-info/PKG-INFO
Metadata-Version: 2.4
Name: parascode
Version: 4.0.0
Version: 4.0.1
Summary: Python Utility Toolkit with cFonts - Beautiful console fonts and utilities

@@ -5,0 +5,0 @@ Author: Paras Chourasiya

from .core import *
__version__ = "4.0.0"
__version__ = "4.0.1"

@@ -1,1 +0,1 @@

__version__ = "4.0.0"
__version__ = "4.0.1"
"""
ParasCode - Python Utility Toolkit with cFonts
Author: Paras Chourasiya
GitHub: https://github.com/Aotpy
GitHub: https://github.com/Aptpy
"""

@@ -21,3 +21,3 @@

colorama.init()
__version__ = "4.0.0"
__version__ = "4.0.1"

@@ -94,4 +94,20 @@ class Style(NamedTuple):

def banner(self):
self.say("ParasCode", font="block", colors=["cyan", "blue"])
builtins.print(f"\nVersion: {__version__} | GitHub: Aptpy\n")
"""Show beautiful ParasCode banner with GitHub link"""
banner_text = """
░█████╗░░█████╗░████████╗██████╗░██╗░░░██╗
██╔══██╗██╔══██╗╚══██╔══╝██╔══██╗╚██╗░██╔╝
███████║██║░░██║░░░██║░░░██████╔╝░╚████╔╝░
██╔══██║██║░░██║░░░██║░░░██╔═══╝░░░╚██╔╝░░
██║░░██║╚█████╔╝░░░██║░░░██║░░░░░░░░██║░░░
╚═╝░░╚═╝░╚════╝░░░░╚═╝░░░╚═╝░░░░░░░░╚═╝░░░
TG - @Aptpy
t.me/Aptpy
"""
print(self.colored(banner_text, 'cyan'))
print(self.colored(f"🔥 ParasCode v{__version__} - Python Utility Toolkit with cFonts", 'yellow'))
print(self.colored("📦 GitHub: https://github.com/Aptpy", 'green'))
print(self.colored("👤 Author: Paras Chourasiya", 'blue'))
print(self.colored("─" * 50, 'purple'))

@@ -110,10 +126,10 @@ def colored(self, text, color='white', bold=False):

def show_fonts(self):
print("Available Fonts:")
print(self.colored("\n📌 Available Fonts:", 'cyan'))
for font in self.FONTS:
print(f" - {font}")
print(f" • {font}")
def show_colors(self):
print("Available Colors:")
print(self.colored("\n📌 Available Colors:", 'cyan'))
for color in self.ANSI_COLORS.keys():
print(f" - {color}")
print(f" • {color}")

@@ -120,0 +136,0 @@ class run:

Metadata-Version: 2.4
Name: parascode
Version: 4.0.0
Version: 4.0.1
Summary: Python Utility Toolkit with cFonts - Beautiful console fonts and utilities

@@ -5,0 +5,0 @@ Author: Paras Chourasiya

@@ -7,3 +7,3 @@ [build-system]

name = "parascode"
version = "4.0.0"
version = "4.0.1"
description = "Python Utility Toolkit with cFonts - Beautiful console fonts and utilities"

@@ -10,0 +10,0 @@ readme = "README.md"