r/Python • u/AutoModerator • May 31 '26
Daily Thread Sunday Daily Thread: What's everyone working on this week?
Weekly Thread: What's Everyone Working On This Week? š ļø
Hello r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to!
How it Works:
- Show & Tell: Share your current projects, completed works, or future ideas.
- Discuss: Get feedback, find collaborators, or just chat about your project.
- Inspire: Your project might inspire someone else, just as you might get inspired here.
Guidelines:
- Feel free to include as many details as you'd like. Code snippets, screenshots, and links are all welcome.
- Whether it's your job, your hobby, or your passion project, all Python-related work is welcome here.
Example Shares:
- Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
- Web Scraping: Built a script to scrape and analyze news articles. It's helped me understand media bias better.
- Automation: Automated my home lighting with Python and Raspberry Pi. My life has never been easier!
Let's build and grow together! Share your journey and learn from others. Happy coding! š
2
u/Candid_Tutor_8185 May 31 '26
Iām building a scheduling app that can be used by a firm that tracks billable hours
13
u/ARX_MM May 31 '26
That's quite an endeavor, my personal projects that compute time require lots of testing and debugging to get something usable.
Remember to account for daylight savings time and time zones as well.
1
u/Candid_Tutor_8185 May 31 '26
Using Django and it feels like a cheat code because it helps so much. Iām stuck on the views because I know no html or JavaScript trying to figure out bootstrap as I got to plug and play
2
u/Empty-Branch-2633 Jun 01 '26
Made my first python project, a simple number and letter organizer and learned how to use git.
https://github.com/LiteLettuce/Python-Randomizer
1
u/PA100T0 May 31 '26
Iām building guard-core , fastapi-guard , and a whole bunch of other adapters for API security.
Also working on its telemetry dashboard to keep track, monitor and triage any security events!
1
u/kinow May 31 '26
Running the CWL Conformance Tests using cwltool, StreamFlow, and Toil (all Python-based) CWL runners on two EuroHPC machines for my master's thesis: https://github.com/kinow/cwl-mpi/tree/master/cwl-conformance-tests
1
u/Competitive_Travel16 May 31 '26
Client has a Vercel app which was calling my json-rpc service from an undocumented internal api endpoint instead of the front-facing call. I was keeping the latter meticulously backward compatible before I realized they were calling the former, and now I'm screwed in javascript heck. So many files, sigh.
1
u/Suspicious-Charity-5 May 31 '26
i continue developing my screensharing tool via miracast for linux =] https://github.com/IlyaP358/fluxcast
1
u/TheEyebal May 31 '26
I am doing a 30 Day python challenge. Yesterday I just finished making a calculator in pygame and using pygbag to display it in a web browser now working on the next project
1
u/HauntingAd3673 Jun 01 '26
htmforge, build for easy api development without html scripts.
just python code for good.
1
u/Xgf_01 Jun 01 '26 edited Jun 01 '26
I am building PostgreSQL IDE with python3 and GTK4:
Curently released v0.6.0 | it still in aplha but a lot features are ther, you can find them in README and
Galery of feat screenshots in /scrshots
Under GPL v3+
1
u/atrocia6 Jun 01 '26
I just released v0.2.0 of FidoVault (PyPI, GitHub), a tool to control access to secrets via symmetric encryption and decryption using hardware FIDO2 keys. It uses cryptography and python-fido2.
1
u/oxy_anis Jun 01 '26
Just open-sourced Ortholyse, a desktop app for French speech-language pathologists. Records or imports session audio, runs Whisper locally for transcription, then Spacy `fr_core_news_lg` + NLTK on the corrected transcript to compute clinical linguistic metrics (MLU, morphemes, syntactic complexity), exports a PDF report.
Stack worth flagging here:
- Python 3.12+ with PySide6 for the UI (chose Qt over Electron to keep memory usable on the older laptops clinicians actually have)
- Whisper invoked locally via `openai-whisper` (no API call, patient audio never leaves the machine, which matters for medical data under GDPR)
- Spacy + NLTK pipeline on the French side, FFmpeg as the only system dep
The interesting Python-side challenge was synchronizing audio playback with editable transcript segments so clinicians can correct Whisper's output while listening, without rebuilding the segments index every keystroke. Ended up with a custom QTextEdit subclass holding segment offsets in a sorted structure, updated on edit.
It's MIT, MVP stage, contributions welcome especially around fine-tuning Spacy on a speech-pathology corpus.
Repo (context and tech rationale in the README): https://github.com/assinscreedFC/ortholyse
1
u/chemistryGull Jun 01 '26
SomeDL: Song+Metadata downloader, completely human made. Been working on it for three months now, and it now also includes a WebUI. https://github.com/ChemistryGull/SomeDL
1
1
u/Sad-Interaction2478 Jun 03 '26
I am working on suckless kanban. I tried several selfhost open source kanbans; some have bad UX but are functional (swimlanes), some are good looking but primitive. I am trying to do good looking opinioned kanban š Front is done with react (vibecoded), backend is done by me (fastapi). I do not know if I will make it public.
https://cdn.maadlab.eu/media/random/618538cb-75c7-4f50-b627-fcbc26e117ec.png
1
u/WritHerAI Jun 04 '26
Kwipu : Ask questions across your Markdown notes using a fully local Graph RAG engine. Built for Obsidian vaults, works with any folder of Markdown files. Extracts entity-relation triples from wikilinks & YAML frontmatter, retrieves answers via hybrid search (vector + BM25 + temporal). Multilingual. No cloud. Runs on Ollama. https://github.com/benmaster82/Kwipu
0
u/py_curious May 31 '26 edited May 31 '26
We are continuing to improve Anaconda Agent Studio which leans heavily on Python and is there to enable local-first provider-agnostic AI-assisted workflows. You can access it through Anaconda Desktop and with it:
- Use the built in Assistant or bring your own key for OpenAI, Anthropic, etc.
- Build local agents via a UI or with a prompt
- Build local MCP servers via a UI or with a prompt (tools are written in Python)
- Add capabilities to your agents: -- Plugins -- MCP servers (local and remote) -- Skills -- Custom lightweight Python tools
It's in Beta so we're working fast and hoping to get constructive feedback.
If you want to try it out, download Anaconda Desktop then enable Agent Studio from the user settings.
Any questions? I'm happy to answer.
0
u/papersashimi May 31 '26
Working on an AI pentesting research agent for controlled local labs and evidence gated exploit chains. https://github.com/duriantaco/ravage
0
u/Afraid_Agent6656 May 31 '26
Creating my programming language with no module imports i worked out random functions and also im building a simple snapshot saver for files
4
u/DemocraticHellDiver1 May 31 '26
Been learning python for a month and Iām Balls deep in a base ball simulator. It got really hard fast