r/PythonProjects2 Dec 08 '23

Mod Post The grand reopening sales event!

12 Upvotes

After 6 months of being down, and a lot of thinking, I have decided to reopen this sub. I now realize this sub was meant mainly to help newbies out, to be a place for them to come and collaborate with others. To be able to bounce ideas off each other, and to maybe get a little help along the way. I feel like the reddit strike was for a good cause, but taking away resources like this one only hurts the community.

I have also decided to start searching for another moderator to take over for me though. I'm burnt out, haven't used python in years, but would still love to see this sub thrive. Hopefully some new moderation will breath a little life into this sub.

So with that welcome back folks, and anyone interested in becoming a moderator for the sub please send me a message.


r/PythonProjects2 1h ago

ducted 3d printed drone segmented frame parametric generator

Thumbnail gallery
Upvotes

all you do is give it a prop size, a motor and your printer's bed. It derives the duct section from the aerodynamics, splits the ring into the fewest pieces that still fit the plate, and builds the parts as SLDPRT, STEP and STL.

I built this from measurements of my own 13" ducted quad, so every default in the code is a number taken off that airframe. The design side (preview, section, layers, report) needs nothing but numpy and matplotlib and runs anywhere. The SolidWorks backend is tested on SolidWorks 2025, rev 33.4.1, on Windows only. The build123d backend runs anywhere Python does.

for more information , also looking for contributors to help if possible https://github.com/jackgibbons85/ductgen

give it a look ! ^_^


r/PythonProjects2 3h ago

I built a registerless plugin system based on classes for Python

Thumbnail
1 Upvotes

r/PythonProjects2 19h ago

Resource Python Serial Port Programming Tutorial for Absolute Beginner Tutorial

Thumbnail youtube.com
3 Upvotes

Do check out this project if you want to talk to hardware device like Arduino,ESP32,Raspberry Pi Pico (RP2040), Raspberry Pi Pico (RP2350) etc from your PC (Windows /Linux ) or Mac OS using Virtual serial port.

The Hands on Project walks you through installing relevant libraries, Opening the Serial port, Setting Baud rate, Reading and Writing into the Serial Port using Python Language.

You can Download the Source codes and other Relevant project files using the Link below.

Cross Platform serial communication using Python (PySerial) and Arduino


r/PythonProjects2 1d ago

Study Buddy is a real-time AI-based study assistant #pythonprojects #vir...

Thumbnail youtube.com
2 Upvotes

Learn Python by Building Real Projects

In this journey, we’ll learn Python from the basics and use it to build practical projects with powerful tools and technologies:

  • 🐍 Python Programming
  • 👁️ OpenCV & Computer Vision
  • 🔌 APIs & First API Projects
  • 🌐 Web Applications
  • 🤖 AI & Machine Learning
  • 📝 AI Content Summarization
  • 🚀 Real-World Projects & Automation

Simple explanation → Practical coding → Real projects


r/PythonProjects2 1d ago

[Project] my-pythonic-zoo: A collection of self-contained Python exhibits

Thumbnail github.com
2 Upvotes

A collection of self-contained Python exhibits and examples designed for learners—feedback and contributions welcome!


r/PythonProjects2 1d ago

I was tired of the burden of starting and maintaining Python projects

Thumbnail
2 Upvotes

r/PythonProjects2 1d ago

Resource I built my own Python backend framework from scratch — Shakti 🚀

3 Upvotes

After working with Python backend development for years, I wanted to build a framework that brings the things I repeatedly need into one place.

So I built Shakti, a Python backend framework focused on building modern APIs and applications faster.

Some of the things I’m working on:

- ⚡ Async-first architecture

- 🔐 Built-in authentication & RBAC

- 🗄️ Async ORM

- 🤖 AI integration

- 📄 Document AI

- 🔄 Background jobs

- 📡 SSE / streaming

- 🛠️ CLI & code generation

- 📊 Monitoring

- 💾 Database migrations

- 💉 Dependency injection

GitHub: https://github.com/shaktihq/shakti

PyPI: https://pypi.org/project/shakti-framework/

This is still an evolving project, and I’d genuinely love feedback from Python developers.

What would you want to see in a new Python backend framework?

WebSockets? Better developer tooling? More AI features? Something else?

I’m building Shakti in public and would love to hear your thoughts. 🙌


r/PythonProjects2 2d ago

scanlayer - turn scanned images into searchable PDFs with Tesseract

Post image
3 Upvotes

You scan a contract, but you can't search any word in it. This is the fix.

I built ScanLayer, a Python OCR library that adds a searchable text layer to scanned documents.

You give it a scanned image:

pip install scanlayer
scanlayer contract.jpg -o contract.pdf

ScanLayer runs Tesseract, then places the recognized text as an invisible searchable layer over the original page. The scanned image remains the visual source. You can now search, select, and copy the text.

And if you don't want a PDF, you can export the OCR result as txt, json, tsv, or hocr.

A few things I built around the OCR itself:

  • Automatic deskew for photos taken at an angle
  • Noise cleanup before OCR
  • Reading order correction for two-column documents
  • Multiple Tesseract configurations are tried and the highest-confidence result is kept
  • CLI and Python API use the same underlying pipeline

For example:

import scanlayer

result = scanlayer.convert(
    "contract.jpg",
    "contract.pdf",
    lang="eng",
    dpi=300
)

Everything runs locally. The only external dependency is your own Tesseract installation.

I'd especially like feedback from people who regularly OCR multi-column documents. That's one of the areas I spent a lot of time getting right.

Github
Documentation
PyPi


r/PythonProjects2 2d ago

I built a Python file search tool — could someone review my project?

Thumbnail
2 Upvotes

r/PythonProjects2 2d ago

Python Project Feedback (MemoryPal)

Thumbnail
1 Upvotes

r/PythonProjects2 2d ago

Metadata finder for music

1 Upvotes

Hey everyone!
I just released a small open-source Python library called FetchTune.
It’s a lightweight tool (both library + CLI) that takes music URLs from Spotify or Apple Music and returns clean, structured metadata — track title, artists, album, artwork, release date, duration, explicit status, platform IDs, etc.
It also has a simple enrichment feature that can fill in missing info (like album data) using other providers.
Repo: https://github.com/momalekiii/fetchtune
I’d really appreciate it if you could take a quick look and let me know:
• Any bugs or issues you find
• Things that feel incomplete or could be improved
• Feature suggestions (more platforms, better matching, etc.)
And if you like it, a star would mean a lot ⭐
Thanks in advance!


r/PythonProjects2 2d ago

Hillock: A lightweight local memory engine written in Python for edge hardware

3 Upvotes

Hey Python community!

I recently put together Hillock, a lightweight memory and retrieval engine written in Python that runs locally on edge hardware (<1.2 GB VRAM or pure CPU).

The core motivation was to create a memory layer for local models that does not hallucinate when it runs out of context.

Key parts of the project:

  • 3-tier memory: SQLite for ground-truth facts, Hebbian synaptic weights for associative recall, and 10,000-D hypervectors for sub-millisecond context matching.
  • Control-flow gating: If stored facts do not match a query, Hillock returns a fixed refusal string immediately. The local LLM is never called with unverified context.
  • ColBERT-style MaxSim: We adapted late-interaction token scoring to discrete bipolar vectors using NumPy matrix math on CPU.
  • Easy setup: Includes 1-click launchers for Windows and Linux/Mac, along with interactive CLI commands like /inspect, /status, and /model.

Feedback, ideas, and contributions are very welcome!


r/PythonProjects2 2d ago

Info silkworm now has declarative parsing

Thumbnail github.com
2 Upvotes

Check the comment below of how it looks like


r/PythonProjects2 3d ago

Created CTkDeb - a tool for easily packaging CustomTkinter projects into DEB packages

Post image
2 Upvotes

r/PythonProjects2 3d ago

I got tired of automating EXTRA! X-treme with GUI clicks, so I built a Python COM wrapper

Thumbnail
1 Upvotes

r/PythonProjects2 3d ago

I made a Python library that stops secrets from being printed to the terminal

5 Upvotes

I kept thinking about a pretty stupid way to leak an API key:

api_key = "sk-example123456"

print(api_key)

Nothing gets committed to GitHub.
Nothing gets pushed anywhere.

But now the secret is sitting right there in the terminal/logs.

So I built SecretShield.

It's a small, local Python security utility that watches stdout, stderr, and Python logging and automatically redacts strings that look like secrets before they are displayed.

API_KEY=sk-example123456
        ↓
API_KEY=********

The goal isn't to replace GitHub secret scanners or tools like GitGuardian.

It's for the "I'm debugging something locally and accidentally printed a credential" problem.

It's dependency-free and can be enabled with a simple import.

I'm curious:

Would you actually use something like this in a Python project, or is this solving a problem that isn't annoying enough to matter?

GitHub discussion: https://github.com/orgs/localghosters/discussions/1


r/PythonProjects2 3d ago

GraphRAG: a blueprint for knowledge-graph question answering over your documents

Post image
2 Upvotes

Hi everyone,

I've recently finished the first version of Agentic GraphRAG Blueprint, a reference architecture for question answering over large document collections.

Instead of plain chunk retrieval, it builds a knowledge graph combined with vector search, so answers can connect facts across documents.

Key features:

• Incremental ingestion - unchanged files are skipped via content hashing, and community reports regenerate only for affected communities, keeping token costs low as the corpus grows.

• Hybrid search - local mode for fact-level answers, global mode for cross-document synthesis.

• Domain-agnostic LLM prompts - easily swapped via PROMPTS_PATH, with Leiden-based community detection.

• Deployment - run it locally with Docker or provision everything in the cloud with Terraform and CI/CD.

Link: https://github.com/sebastianbrzustowicz/Agentic-GraphRAG-Blueprint

I'm looking for any feedback.


r/PythonProjects2 3d ago

I wrote a Python script on my laptop. What actually happens next to make it run on its own?

Thumbnail
0 Upvotes

r/PythonProjects2 3d ago

Hackathon Winning framework

5 Upvotes

As a guy and a fresher in engineering field, who knows basic python and java , can anyone give advise or guide me to win or atleast the things to do in a proper hackathon rather than working unorganisedly..


r/PythonProjects2 3d ago

Making Kubernetes concepts visual inside my retro TUI learning project

Enable HLS to view with audio, or disable this notification

1 Upvotes

[ Pls turn on the volume for the video ]

I’m building Project Yellow Olive, an open-source retro TUI that helps people learn Kubernetes through gamified, hands-on challenges running against real clusters. I’ve posted about Project Yellow Olive here before and got a really good response to the idea, so I wanted to share one of the newer things I’ve been experimenting with.

I’ve now started experimenting with Pyxel, a lightweight retro game engine for Python, to add a visual learning layer alongside the existing challenges.

The idea is to visually explain concepts like nodes, namespaces, pods, services and deployments, while keeping the same retro aesthetic as the rest of Yellow Olive.

The hands-on part still stays real Kubernetes - Pyxel is mainly there to make some of the underlying concepts easier to understand before jumping into kubectl/YAML.

Would be interested to hear what people here think about this direction, especially those who’ve taught or mentored people on Kubernetes. Feedback is the main thing I’m looking for, but if you like the project, a GitHub star is always appreciated 🙂

GitHub: https://github.com/Anubhav9/Yellow-Olive


r/PythonProjects2 3d ago

My Local AI Search Tool Using a 7B Model, details on how it was made below

Enable HLS to view with audio, or disable this notification

1 Upvotes

Stack:

LLM: Qwen2.5-7B-Instruct (Q5_K_M) (~5.4 GB) via llama.cpp (CUDA with Flash Attention & q8_0 KV cache) or Ollama fallback, Qwen is very good at tool use, Gemma may also work; Deepseek likes to <think> too hard and breaks things

Re-Ranker: FlashRank(ms-marco-MiniLM-L-12-v2).

Backend / GUI: FastAPI + WebSockets + PyWebView (Native Desktop window, zero Electron overhead).

VRAM Footprint: ~6–7 GB on an RTX 3080 / 3060 / 4070 (also supports CPU fallback).

The code is 100% open-source and free to check out, run, or fork: GitHub: https://github.com/BloopieBlair/LocAi-Search

Would love to hear any thoughts, feedback, or ideas for extra features!


r/PythonProjects2 3d ago

MY FIRST PYTHON PROJECT: VISSION AI (Stage 1 Done)

Post image
1 Upvotes

Hey I am OM PRASAD BARTIA, here I want to track and document my projects

Stage 1: simple UI of uploading image and image preview

Tech Stack:

  • Python
  • Streamlit (Web UI)
  • PIL (for image uploading)

Features:

  • Title of the page
  • Image upload
  • display the details of the uploaded image [File Size, Dimensions, File Format]

Stage 2: convert the uploaded image into 3 more versions (GRAYSCALE IMAGE, BLURRED IMAGE, EDGE DETECTION )

Would love your suggestions on how I can improve and enhance it. What features or real-world applications would make this project more useful and unique?


r/PythonProjects2 4d ago

I made a password generator using digits and special characters

Post image
25 Upvotes

r/PythonProjects2 4d ago

I built a small networking project in Python — Meshly

1 Upvotes

Hi everyone!
Today I released the first version of **Meshly**, a small networking project built with Python sockets.
The main goal was to learn more about how client-server communication actually works instead of hiding everything behind high-level libraries.
**What it currently has**
TCP socket communication
Client / server architecture
CLI interface
Basic connection handling
I’m still actively developing it, so there’s a lot I want to improve.
I’d really appreciate feedback from people who have more experience with networking and Python.
**GitHub:** [https://github.com/fimees/meshly\](https://github.com/fimees/meshly%5D)
What would you add or change in the project?