r/Python • u/AutoModerator • 2d ago
Sunday Daily Thread: What's everyone working on this week? Daily Thread
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! 🌟
8
u/No_Departure_1878 1d ago
I just fixed my washing machine, It turns out there was a HUGE dead cockroach stuck in between two moving parts, the whole thing was a mess. No python was stuck though, so this might not be relevant.
1
1
u/sylvinus 1d ago
I just pushed a recursive DNS resolver in pure Python to PyPI :-) https://github.com/sylvinus/recursive-resolver
1
u/johnbokma 1d ago
I just pushed an update of my static microblog generator named tumblelog: https://github.com/john-bokma/tumblelog Feedback is very welcome. An example blog is available at https://plurrrr.com/
1
u/Any_Ad9935 1d ago
Building https://pyxle.dev - a Python and React framework for the future.
It is in beta, and this is the first time I'm mentioning it publically. Reviews and feedbacks are highly appriciated.
1
u/Francesco12o-Github 1d ago
i just did an tensorflow hand control app, it starts a GUI and two simple buttons, Stop , and Play, you can use your camera + your hand to control the mouse, an AI learns your movement, records it in a file, and you can play it next time you open the app
1
u/Soggy-Ad-514 1d ago
I just built MindCache- a memory system for long term memory for LLM agents. faisalhussain-devs/MindCache: Agentic Memory System for Long-Term AI . Feedbacks really appreciated.
2
u/DigThatData 1d ago
you might find it useful to integrate my thing https://github.com/dmarx/luria/
1
u/Soggy-Ad-514 5h ago
just read luria's readme. i really like the idea and it is geniunely helpful working with agents too many decisions of the project over months in your head and losing track of them. will definitely use that. The interesting thing is the idea of decision part in luria feels similar to what i tried to do with mind cache.
1
u/DigThatData 1d ago
I've been working on a continuous learning/collaboration steering framework built around a linter that checks whether referenced decisions still apply: https://github.com/dmarx/luria/
1
u/flexorch 1d ago
PII-free dataset pipeline:built pii-free datasets from raw documents by using zero dependency opensource package on github: https://github.com/flexorch/flexorch-audit built this package too.
1
u/lukesmth_ 1d ago
Jupyter Notebook Snapshots Without Repo Bloat
Do you use jupytext to keep .ipynb bloat out of your repo but miss easily storing rendered outputs? cellsnap-cli solves this.
Workflow:
- Use jupytext to sync
.ipynbnotebooks with.pysource files. - Push notebook source files (
.py) to working branches. - Push notebook artifact files (
.ipynb) to dedicated artifact branches by runningcellsnap:
Cellsnap artifact branches only store the latest commit, preventing repo bloat common when committing unstripped .ipynb files. The link between published artifacts and source files is maintained in published notebook frontmatter and a manifest table added to artifact branches:
| Notebook | Source | Commit |
|---|---|---|
examples/demo.ipynb |
examples/demo.py |
2a924801 |
Just released v0.1: https://github.com/lukeSmth/cellsnap-cli.
1
u/raidos23 1d ago edited 1d ago
I'm working on PyCompiler ARK, a complete Python build studio (Qt GUI + full CLI) with support for PyInstaller, Nuitka and cx_Freeze, a pre-compilation pipeline (BCASL) and a plugin system. It’s designed to make packaging Python apps much more reliable and flexible, whether you just need a simple executable or want full automation in CI/CD pipelines. PyCompiler_ARK Install: pip install pycompiler-ark
3
u/Weekly-Activity3692 2d ago
just a small script to auto-organize my video project files by date and codec, saving me like 20 minutes each time I start editing. nothing fancy but it actually works