jaivishnu-sdk 0.1.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,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: jaivishnu-sdk
3
+ Version: 0.1.0
4
+ Summary: A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao
5
+ Author-email: "B. Jai Vishnu Vardhan Rao" <vishnuvardhan2050@gmail.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: rich>=13.0.0
12
+
13
+ # jaivishnu-sdk
14
+
15
+ A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao.
16
+
17
+ ## Installation
18
+
19
+ You can install this package using pip:
20
+
21
+ ```bash
22
+ pip install jaivishnu-sdk
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ After installation, simply run the following command in your terminal to view the portfolio:
28
+
29
+ ```bash
30
+ jaivishnu
31
+ ```
@@ -0,0 +1,19 @@
1
+ # jaivishnu-sdk
2
+
3
+ A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao.
4
+
5
+ ## Installation
6
+
7
+ You can install this package using pip:
8
+
9
+ ```bash
10
+ pip install jaivishnu-sdk
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ After installation, simply run the following command in your terminal to view the portfolio:
16
+
17
+ ```bash
18
+ jaivishnu
19
+ ```
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "jaivishnu-sdk"
7
+ version = "0.1.0"
8
+ authors = [
9
+ { name="B. Jai Vishnu Vardhan Rao", email="vishnuvardhan2050@gmail.com" },
10
+ ]
11
+ description = "A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+ dependencies = [
20
+ "rich>=13.0.0",
21
+ ]
22
+
23
+ [project.scripts]
24
+ jaivishnu = "jaivishnu.cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """
2
+ jaivishnu-sdk - B. Jai Vishnu Vardhan Rao's Portfolio SDK
3
+ """
4
+
5
+ __version__ = "0.1.0"
@@ -0,0 +1,124 @@
1
+ import sys
2
+ from rich.console import Console
3
+ from rich.panel import Panel
4
+ from rich.table import Table
5
+ from rich.text import Text
6
+ from rich import box
7
+ from .data import RESUME_DATA
8
+
9
+ console = Console()
10
+
11
+ def print_header():
12
+ name_text = Text(RESUME_DATA["name"], style="bold cyan", justify="center")
13
+
14
+ contact_info = f"{RESUME_DATA['location']} | {RESUME_DATA['phone']} | {RESUME_DATA['email']}"
15
+ contact_text = Text(contact_info, justify="center")
16
+
17
+ links = " | ".join([f"[link={v}]{k}[/link]" for k, v in RESUME_DATA["links"].items()])
18
+ links_text = Text.from_markup(links, justify="center")
19
+
20
+ header_text = Text()
21
+ header_text.append(name_text)
22
+ header_text.append("\n")
23
+ header_text.append(contact_text)
24
+ header_text.append("\n")
25
+ header_text.append(links_text)
26
+
27
+ console.print(Panel(header_text, box=box.ROUNDED, border_style="cyan"))
28
+
29
+ def print_education():
30
+ table = Table(show_header=False, box=None, padding=(0, 2))
31
+ table.add_column("Details", style="white")
32
+ table.add_column("Date", justify="right", style="cyan")
33
+
34
+ for ed in RESUME_DATA["education"]:
35
+ degree = f"[bold]{ed['institution']}[/bold] - {ed['degree']}"
36
+ if ed.get('details'):
37
+ degree += f"\n[italic]{ed['details']}[/italic]"
38
+ table.add_row(degree, ed['date'])
39
+
40
+ console.print(Panel(table, title="[bold magenta]EDUCATION[/bold magenta]", title_align="left", box=box.SIMPLE, border_style="magenta"))
41
+
42
+ def print_experience():
43
+ table = Table(show_header=False, box=None, padding=(0, 0, 1, 0))
44
+ table.add_column("Content")
45
+
46
+ for exp in RESUME_DATA["experience"]:
47
+ header = Table(show_header=False, box=None, padding=0, width=console.width - 4)
48
+ header.add_column("Title")
49
+ header.add_column("Date", justify="right")
50
+
51
+ title_text = f"[bold]{exp['title']}[/bold] - {exp['company']}\n[italic]{exp['location']}[/italic]"
52
+ date_text = f"[cyan]{exp['date']}[/cyan]"
53
+ header.add_row(title_text, date_text)
54
+
55
+ points = ""
56
+ for p in exp['points']:
57
+ points += f"• {p}\n"
58
+
59
+ content = Table(show_header=False, box=None, padding=(0, 2))
60
+ content.add_column("Col")
61
+ content.add_row(header)
62
+ content.add_row(points.strip())
63
+
64
+ table.add_row(content)
65
+
66
+ console.print(Panel(table, title="[bold yellow]EXPERIENCE[/bold yellow]", title_align="left", box=box.SIMPLE, border_style="yellow"))
67
+
68
+ def print_projects():
69
+ table = Table(show_header=False, box=None, padding=(0, 0, 1, 0))
70
+ table.add_column("Content")
71
+
72
+ for proj in RESUME_DATA["projects"]:
73
+ header = Table(show_header=False, box=None, padding=0, width=console.width - 4)
74
+ header.add_column("Name")
75
+ header.add_column("Tech", justify="right")
76
+
77
+ name_text = f"[bold]{proj['name']}[/bold] - {proj['role']}"
78
+ tech_text = f"[italic cyan]{proj['tech']}[/italic cyan]"
79
+
80
+ header.add_row(name_text, tech_text)
81
+
82
+ points = ""
83
+ for p in proj['points']:
84
+ points += f"• {p}\n"
85
+
86
+ content = Table(show_header=False, box=None, padding=(0, 2))
87
+ content.add_column("Col")
88
+ content.add_row(header)
89
+ content.add_row(points.strip())
90
+
91
+ table.add_row(content)
92
+
93
+ console.print(Panel(table, title="[bold green]PROJECTS[/bold green]", title_align="left", box=box.SIMPLE, border_style="green"))
94
+
95
+ def print_skills():
96
+ table = Table(show_header=False, box=None, padding=(0, 2))
97
+ table.add_column("Category", style="bold blue")
98
+ table.add_column("Skills", style="white")
99
+
100
+ for category, skills in RESUME_DATA["skills"].items():
101
+ table.add_row(f"{category}:", skills)
102
+
103
+ console.print(Panel(table, title="[bold blue]TECHNICAL SKILLS[/bold blue]", title_align="left", box=box.SIMPLE, border_style="blue"))
104
+
105
+ def print_achievements():
106
+ points = ""
107
+ for ach in RESUME_DATA["achievements"]:
108
+ points += f"• {ach}\n"
109
+
110
+ console.print(Panel(points.strip(), title="[bold red]ACHIEVEMENTS[/bold red]", title_align="left", box=box.SIMPLE, border_style="red"))
111
+
112
+ def main():
113
+ console.clear()
114
+ console.print("\n")
115
+ print_header()
116
+ print_education()
117
+ print_experience()
118
+ print_projects()
119
+ print_skills()
120
+ print_achievements()
121
+ console.print("\n")
122
+
123
+ if __name__ == "__main__":
124
+ main()
@@ -0,0 +1,89 @@
1
+ RESUME_DATA = {
2
+ "name": "B. JAI VISHNU VARDHAN RAO",
3
+ "location": "Hyderabad, Telangana",
4
+ "phone": "8639605050",
5
+ "email": "vishnuvardhan2050@gmail.com",
6
+ "links": {
7
+ "LinkedIn": "https://www.linkedin.com/in/jay-vishnu/",
8
+ "GitHub": "https://github.com/Jay25-Git",
9
+ "LeetCode": "https://leetcode.com/u/jay_vishnu205/",
10
+ "CodeChef": "https://www.codechef.com/users/j_oncrack",
11
+ "Codeforces": "https://codeforces.com/profile/Jay_vishnu"
12
+ },
13
+ "education": [
14
+ {
15
+ "institution": "Birla Institute of Technology and Science (BITS)",
16
+ "degree": "B.Sc. Computer Science",
17
+ "date": "Expected 2027",
18
+ "details": "Hyderabad, Telangana"
19
+ },
20
+ {
21
+ "institution": "NxtWave Institute of Advanced Technologies",
22
+ "degree": "Computer Science Engineering (Concurrent)",
23
+ "date": "",
24
+ "details": ""
25
+ },
26
+ {
27
+ "institution": "Narayana Junior College",
28
+ "degree": "Intermediate (93.8%)",
29
+ "date": "",
30
+ "details": ""
31
+ }
32
+ ],
33
+ "experience": [
34
+ {
35
+ "title": "Co-founder & Engineer",
36
+ "company": "Nokto",
37
+ "date": "Apr 2026 - Present",
38
+ "location": "AI & Web Architecture Agency, Hyderabad, Telangana",
39
+ "points": [
40
+ "Designed REST APIs and database integration with FastAPI/PostgreSQL, and built React/Next.js (TypeScript) frontends with a Node.js backend layer for client-facing production applications.",
41
+ "Closed a INR 70,000 client contract, generating INR 40,000 in revenue within 2 months of launch.",
42
+ "Defined a consistent technical stack and component architecture (Tailwind CSS, Framer Motion, reusable UI systems) used across all client projects to ship faster without sacrificing code quality."
43
+ ]
44
+ },
45
+ {
46
+ "title": "Backend Engineering Intern",
47
+ "company": "Vindago Innovations LLP",
48
+ "date": "Apr 2026 - Present",
49
+ "location": "Hyderabad, Telangana (Hybrid)",
50
+ "points": [
51
+ "Built and maintained backend services using FastAPI, focusing on API design and back-end operations for production systems.",
52
+ "Implemented role-based access control across 5 user roles (admin, users, moderators, testers, businesses) for Kakinada Matters, a multi-role web application, working with the lead's permission design to handle data access at scale.",
53
+ "Contributed across the backend, admin portal, and Flutter mobile codebases for Kakinada Matters through 25+ pull requests with a high merge rate.",
54
+ "Set up AWS S3 buckets for media/file storage and worked with Azure and AWS cloud services within the app; contributed to query performance and database design to support a growing dataset under real production load."
55
+ ]
56
+ },
57
+ {
58
+ "title": "Web Development & Creative Design Intern",
59
+ "company": "AquaPzone Enterprises",
60
+ "date": "May 2025 - Jul 2025",
61
+ "location": "Hyderabad, Telangana (On-site)",
62
+ "points": [
63
+ "Architected and built a unified React portal for PZone Enterprises' two business divisions (water RO plants and solar installations), using global theme-context state to dynamically morph color palette, typography, and content based on user intent.",
64
+ "Designed and developed supporting marketing materials to improve brand visibility and customer engagement."
65
+ ]
66
+ }
67
+ ],
68
+ "projects": [
69
+ {
70
+ "name": "Mario SkillSync+ Adventure",
71
+ "role": "Hackathon Project, 6th Place",
72
+ "tech": "FastAPI, Gemini API, Render",
73
+ "points": [
74
+ "Built a backend-driven web application in a 3-person team with secure authentication, skill-progression tracking, and RESTful APIs for user data and app workflows; placed 6th at the hackathon.",
75
+ "Integrated a Gemini API-powered chatbot to support users through their skill-progression journey; handled database integration and deployed the production build to Render."
76
+ ]
77
+ }
78
+ ],
79
+ "skills": {
80
+ "Languages": "Python, C++, JavaScript, TypeScript",
81
+ "Backend & Systems": "Django, FastAPI, Node.js, REST API Design, Django ORM, PostgreSQL/MySQL/SQLite, OOP, Data Structures & Algorithms",
82
+ "Frontend & Mobile": "React, Next.js, Tailwind CSS, HTML/CSS, Flutter",
83
+ "Tools & Cloud": "Git (branching, rebasing, conflict resolution), AWS S3, Azure, Postman, Render"
84
+ },
85
+ "achievements": [
86
+ "100+ problems solved on LeetCode; actively competing in rated contests on Codeforces and CodeChef",
87
+ "Merged 2 bug-fix pull requests across different public open-source GitHub repositories"
88
+ ]
89
+ }
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.4
2
+ Name: jaivishnu-sdk
3
+ Version: 0.1.0
4
+ Summary: A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao
5
+ Author-email: "B. Jai Vishnu Vardhan Rao" <vishnuvardhan2050@gmail.com>
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: rich>=13.0.0
12
+
13
+ # jaivishnu-sdk
14
+
15
+ A terminal-based portfolio and SDK for B. Jai Vishnu Vardhan Rao.
16
+
17
+ ## Installation
18
+
19
+ You can install this package using pip:
20
+
21
+ ```bash
22
+ pip install jaivishnu-sdk
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ After installation, simply run the following command in your terminal to view the portfolio:
28
+
29
+ ```bash
30
+ jaivishnu
31
+ ```
@@ -0,0 +1,11 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/jaivishnu/__init__.py
4
+ src/jaivishnu/cli.py
5
+ src/jaivishnu/data.py
6
+ src/jaivishnu_sdk.egg-info/PKG-INFO
7
+ src/jaivishnu_sdk.egg-info/SOURCES.txt
8
+ src/jaivishnu_sdk.egg-info/dependency_links.txt
9
+ src/jaivishnu_sdk.egg-info/entry_points.txt
10
+ src/jaivishnu_sdk.egg-info/requires.txt
11
+ src/jaivishnu_sdk.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ jaivishnu = jaivishnu.cli:main
@@ -0,0 +1 @@
1
+ rich>=13.0.0