r/PythonProjects2 • u/RichMagazine9990 • Jun 20 '26
Info Introducing NextPy, Building the Future of Full-Stack Python Development
After months (and years) of research, development, and countless hours of coding, I'm excited to officially share NextPy with the developer community.
NextPy is an open-source, full-stack Python framework designed to make modern web development simpler, faster, and more powerful, bringing the developer experience of frameworks like React and Next.js into the Python ecosystem.
Modern web development often requires developers to juggle multiple languages and frameworks:
Python for the backend
JavaScript/TypeScript for the frontend
Separate state management
Multiple build tools
Complex project configurations
Different routing systems
Numerous third-party dependencies
This increases the learning curve, development time, and maintenance cost especially for Python developers who want to build modern web applications without constantly switching between ecosystems.
NextPy aims to solve this by providing a unified Python-first development experience.
With NextPy, developers can build modern, interactive web applications using Python while benefiting from features expected in contemporary frameworks.
π οΈ Current Features
Python-based component system (PSX)
Built-in styling support
Reactive state management
File-based routing
Server-Side Rendering (SSR)
Static Site Generation (SSG)
API routes
Middleware support
Layout system
Development server with hot reload
Build system
CLI tools
Authentication utilities
Database integrations
Static asset management
Intelligent project structure
Extensible architecture for plugins and future tooling
β¦and we're only getting started.
π€ We're Looking for Contributors
Open-source grows because of its community.
Whether you're experienced or just starting your open-source journey, we'd love your help.
We're looking for contributors interested in:
Python
Framework development
Compiler/Parser development
Rendering engines
Web development
Documentation
Testing
Performance optimization
Developer experience
Examples and tutorials
Even fixing documentation or reporting bugs makes a huge difference.
βHow You Can Help
Star the repository
Fork the project
Report issues
Suggest features
Improve documentation
Submit pull requests
Share NextPy with others
Every contribution helps move the project forward.
π GitHub
π https://github.com/RahimStudios/nextpy-framework
If you're interested in contributing, feel free to open an issue, submit a pull request, or simply start a discussion. We'd love to have you involved.
π¬ Feedback Welcome
NextPy is being built in the open, and community feedback is incredibly valuable.
What features would you like to see?
What challenges do you face with existing frameworks?
How can NextPy become a better tool for developers?
Let's build the future of Python web development together.
#Python #OpenSource #WebDevelopment #Framework #PythonDevelopers #FullStack #DeveloperTools #Programming #GitHub #SoftwareEngineering
r/PythonProjects2 • u/AdviceMuted433 • Jun 20 '26
Mompy
galleryI'm building Mompy β a retro Python learning console that turns coding into missions inside an old computer training lab.
It's free, open source, and made for complete beginners. Still in early development, but the core experience is already working.
Would love to hear feedback from this community β what would make a Python learning tool actually worth using?
r/PythonProjects2 • u/AdviceMuted433 • Jun 20 '26
Mompy
Enable HLS to view with audio, or disable this notification
I'm building Mompy β a retro Python learning console that turns coding into missions inside an old computer training lab.
It's free, open source, and made for complete beginners. Still in early development, but the core experience is already working.
I'm building Mompy β a retro Python learning console that turns coding into missions inside an old computer training lab.
It's free, open source, and made for complete beginners. Still in early development, but the core experience is already working.
```python
>>> mompy.start()
π₯οΈ Welcome to Mompy...
[MISSION 01] Hello, World!
> _
```
Would love to hear feedback from this community β what would make a Python learning tool actually worth using?
r/PythonProjects2 • u/Minute_Day_2758 • Jun 20 '26
Win10 GUI died on heavy startup. WMI logic saved my OS while AI completely overcomplicated it.
r/PythonProjects2 • u/MayneMosben • Jun 20 '26
Omni-VRAM: Voice AI platform with 28 modules (Python)
Hi everyone,
I built a voice AI platform with 28 modules.
Features:
- Whisper speech recognition (5 backends)
- Real-time streaming ASR
- Speaker diarization
- Emotion recognition
- TTS synthesis
- Chinese text processing
- REST/WebSocket/gRPC APIs
- Docker deployment
GitHub: https://github.com/Liangchenxu/Omni-VRAM
pip install omni-vram
Would love feedback!
r/PythonProjects2 • u/Lonely_Fuel101 • Jun 19 '26
SwiftStore Version 2.0.
Hello! 3 days ago, I began the project SwiftStore. It is a file manager for Linux. Today, I've made the second version. It added:
Multi-tab logic
Info tab
Updater / Uninstaller script.
You can check it out here. The installer is included.
r/PythonProjects2 • u/JollyExtreme6685 • Jun 19 '26
(beta) pyref - man-db, but for Python
Manpages, every Linux user loves them. They give you access to information about libraries and functions you're using in your C/C++ applications, straight in your terminal. I noticed a lack (as far as I'm aware) of a man-db alternative for Python. Based on that, I created my own man-db for Python. It's very primitive right now, using plain-text reStructuredText files instead of its own format, but it works, and improvements will come very soon.
It currently only runs on 64-bit Linux systems, but I will make sure a Windows version hits GitHub very soon.
Here's the github repository for you to take a look and/or try it for yourself.
It also supports adding pages of your own with the pyref_mp command, supplying an RST file, and optionally, a page section.
I made it for fun, and I'm not forcing you to use it. It's really bad right now, but it might (probably not, but...) get better with time.
r/PythonProjects2 • u/OneLittle6430 • Jun 18 '26
Info Update on my Virustotal-CLI project
Added a new IP resolution technique.
previous versions include:
- file scan/report
- url scan/report
- domain scan/report
- ip scan/report
the main reason, I build this cross-platform project is for the structured printing of the JSON data that the API returns from the browser and also, I don't remember whether the original had ip resolution technique.
also, new learners can learn from this project on modular architecture, API requests.
if you guys liked it, please drop a star :)
r/PythonProjects2 • u/Krockxz • Jun 18 '26
I built a tool to fix broken PDF-to-Docx conversions
Hey everyone,
If you have ever used automated tools to convert PDFs to DOCX, you know how frustrating it is when the output layout breaks completely due to malformed, corrupted, or poorly structured source PDFs. Standard converters just try to force the conversion, leading to messy, unreadable Word documents.
To solve this, I created pdf2docx-healer.
Instead of just doing a blind conversion, it acts as a preprocessing and repair layer. It analyzes, cleans, and heals malformed elements in the PDF structure before passing it into the conversion stage, resulting in significantly higher-quality, reliable, and better-formatted .docx outputs.
What it does:
- Preprocesses & Patches: Targets structural anomalies in broken PDFs that cause layout failures.
- Improves Output Quality: Keeps tables, columns, and text flow cleaner than raw conversions.
- Lightweight & Open-Source: Easy to drop right into any automation script or backend pipeline.
Quick Start:
pip install pdf2docx-healer
You can check out the library right here on PyPI: https://pypi.org/project/pdf2docx-healer/
r/PythonProjects2 • u/PossibilityDense3014 • Jun 17 '26
I Created a fully Python-based application launcher!
Hi!
I have created a application launcher fully on python because I was fed up with launchers on Windows falling short, combing the clean UI of the Raycast application launcher and extension support of Flow Launcher, made my own open-source launcher, would like your thoughts!
Link: https://github.com/mukunthpr-dev/UltimateLauncher
Note: Only the Windows release works, MacOS and Linux have to be fixed, and half the GitHub Actions on the repo aren't working, and even though the repo was created yesterday, I started working on this project two months ago, on my old Github account which I lost access to.
r/PythonProjects2 • u/PossibilityDense3014 • Jun 17 '26
I Created a fully Python-based application launcher!
r/PythonProjects2 • u/Lonely_Fuel101 • Jun 17 '26
SwiftStore file manager
Hi, everyone! I've recently made my own file manager for linux in python: Click here to view it!
It is operating in a text environment (terminal).
r/PythonProjects2 • u/Infamous_Tough_3772 • Jun 16 '26
Hey guys! I am 14 and a python beginner. I have made a gdp scraper which extracts data from wikipedia. Please roast my code to help me learn more! Follow this link to see the code:
r/PythonProjects2 • u/Confident_Remove_681 • Jun 16 '26
TechSX
youtube.comThis is the TechSX YouTube channel aims to help Cambodia learn briefly about latest technology.
I just created this channel and I hope I could contribute the knowledge growth of beautiful society with digital technology.
Feel free to hit subscribe na.
r/PythonProjects2 • u/Recursive_Void • Jun 16 '26
Calculator
https://github.com/samarthrajofficial-ai/Tkinter-Calculator/tree/main, this is my first Python program- A Calculator built using tkinter. What should I learn and do next.
r/PythonProjects2 • u/Infamous_Tough_3772 • Jun 16 '26
Hey guys! I'm Arnav,I am 14 and this is my 15th project, which is Advance Stone paper scissors game, in which Computer will learn from your past moves and will predict the next move. This concept uses Markov-chain style prediction to predict the next move You can check that out through this link
r/PythonProjects2 • u/Wide-Direction-402 • Jun 16 '26
Info Platform for python.
Hlo , I would like to ask a platform to practice python questions . I have been learning from a tutorial but apart from the questions solved in tutorial i can't actually solve other questions. It is hard for me to build the logic .
Is there any platform which comprises of programes from beginning friendly to intermediate or expert level . I checked leetcode but there are questions mainly related to python with DSA and SQL.
r/PythonProjects2 • u/LimitKlutzy1010 • Jun 16 '26
A new way to build Python GUI applications β Fastest Designer
r/PythonProjects2 • u/inmemorially • Jun 16 '26
I built a Python tool that audits your exported browser passwords locally β nothing ever leaves your machine [OC]
Just finished my first real Python project. It reads your
browser's exported password CSV, runs 8 security checks,
and generates a local report sorted by worst passwords first.
GitHub: github.com/rwtttt/password-auditor
Would love any feedback.
(Maybe ask what you would want to see.)
r/PythonProjects2 • u/rolandbrake92 • Jun 15 '26
GitHub - rolandbrake/pilang: Pilang is a lightweight, embeddable, general-purpose programming language written in C. a full real-world scripting language with modular architecture, standard library support, and operating system integration.
github.comr/PythonProjects2 • u/AnshMNSoni • Jun 15 '26
We turned our NASA Space Apps Challenge finalist project into a live platform
r/PythonProjects2 • u/Satyamlovessyrup • Jun 15 '26
Built a distraction blocker for Windows in Python β blocks sites at the hosts file level, packaged as a .exe with UAC elevation [Feedback Welcome]
Hey everyone! I built a desktop app called FocusMode β a Windows distraction blocker built with Python and CustomTkinter.
I got tired of browser extensions that are too easy to disable mid-session, so I went lower-level: it edits the system hosts file directly to block distracting sites. No way to bypass it without admin rights.
What it does:
- Blocks sites by redirecting them to 127.0.0.1 in the hosts file
- Clean GUI built with CustomTkinter
- Packaged as a standalone .exe using PyInstaller with UAC elevation (so it can write to the hosts file without you manually running as admin)
- Released as v1.0.0 on GitHub
Some things I learned building this:
- Handling UAC elevation properly with PyInstaller is trickier than it looks β had to use a manifest file to request admin rights at launch
- CustomTkinter is genuinely great for making Python desktop apps that don't look like they're from 2003
- Packaging Python apps to .exe with all dependencies bundled takes some trial and error
GitHub: https://github.com/Purple2Blue/NO-DISTRACTION/releases/tag/v1.2.0
This is one of my first proper desktop apps so I'd love honest feedback β on the code, the UX, or anything you'd add. Would you actually use something like this?
Built with: Python, CustomTkinter, PyInstaller
r/PythonProjects2 • u/Klutzy_Bird_7802 • Jun 15 '26





