Showcase: I wrote a GitHub Action to Summarize uv.lock Changes
What My Project Does
I have been loving everything about uv but reviewing changes as git diffs is always a chore.
I wrote this action to summarize the changes and provide a simple report via PR comment.
Target Audience
This is intended for anyone building or maintaining Python projects with uv in Github.
Comparison
I could not find any other similar actions out there.
URL: https://github.com/mw-root/uv-lock-report
Example PR Comments:
https://github.com/mw-root/uv-lock-report/raw/main/images/uv-lock-report-simple-comment.png
https://github.com/mw-root/uv-lock-report/raw/main/images/uv-lock-report-table-comment.png
/r/Python
https://redd.it/1oa9e3c
What My Project Does
I have been loving everything about uv but reviewing changes as git diffs is always a chore.
I wrote this action to summarize the changes and provide a simple report via PR comment.
Target Audience
This is intended for anyone building or maintaining Python projects with uv in Github.
Comparison
I could not find any other similar actions out there.
URL: https://github.com/mw-root/uv-lock-report
Example PR Comments:
https://github.com/mw-root/uv-lock-report/raw/main/images/uv-lock-report-simple-comment.png
https://github.com/mw-root/uv-lock-report/raw/main/images/uv-lock-report-table-comment.png
/r/Python
https://redd.it/1oa9e3c
GitHub
GitHub - mw-root/uv-lock-report: A GitHub Action to report changes to uv.lock.
A GitHub Action to report changes to uv.lock. Contribute to mw-root/uv-lock-report development by creating an account on GitHub.
Google Tasks TUI
What My Project Does:
This project is a TUI(terminal user interface) that hooks up with the Google Tasks Api, allowing you to edit and view your tasks straight from your terminal.
Target Audience:
This is just a toy project and for everyone. It is also open source so feel free to make any contributions.
Comparison:
I'm sure there are other TUIs out there similar to this that allows you to keep track of your tasks/notes. I guess this application is nice because it hooks up with your Google Tasks which allows for cross platform use.
Source:
https://github.com/huiiy/GTask
/r/Python
https://redd.it/1oaaddg
What My Project Does:
This project is a TUI(terminal user interface) that hooks up with the Google Tasks Api, allowing you to edit and view your tasks straight from your terminal.
Target Audience:
This is just a toy project and for everyone. It is also open source so feel free to make any contributions.
Comparison:
I'm sure there are other TUIs out there similar to this that allows you to keep track of your tasks/notes. I guess this application is nice because it hooks up with your Google Tasks which allows for cross platform use.
Source:
https://github.com/huiiy/GTask
/r/Python
https://redd.it/1oaaddg
GitHub
GitHub - huiiy/GTask: A simple, fast, and intuitive Terminal User Interface (TUI) for Google Tasks.
A simple, fast, and intuitive Terminal User Interface (TUI) for Google Tasks. - huiiy/GTask
Course and book recommendations
**Hey everyone**
I’ve been learning Django for a while and already understand the basics — like how the file system works, setting up views, models, templates, etc. But I feel like my knowledge isn’t solid enough yet to build a **real-world web app from scratch** confidently.
Can anyone recommend:
* **Video courses** (free appreciated)
* **Books**
* Any **other helpful resources** (tutorial series, blogs, open-source projects to study, etc.)
I’m aiming to reach a **medium to advanced level**, where I can build complete production-ready Django apps on my own.
Thanks for any suggestions! 🙏
/r/django
https://redd.it/1oa08sx
**Hey everyone**
I’ve been learning Django for a while and already understand the basics — like how the file system works, setting up views, models, templates, etc. But I feel like my knowledge isn’t solid enough yet to build a **real-world web app from scratch** confidently.
Can anyone recommend:
* **Video courses** (free appreciated)
* **Books**
* Any **other helpful resources** (tutorial series, blogs, open-source projects to study, etc.)
I’m aiming to reach a **medium to advanced level**, where I can build complete production-ready Django apps on my own.
Thanks for any suggestions! 🙏
/r/django
https://redd.it/1oa08sx
Reddit
From the django community on Reddit
Explore this post and more from the django community
For those who miss terminal animations...
Just for ease, the repo is also posted up here.
https://github.com/DaSettingsPNGN/PNGN-Terminal-Animator
What my project does: animates text in Discord to look like a terminal output!
Target audience: other nostalgic gamers who enjoy Fallout and Pokémon, and who are interested in animation in Discord using Python.
Comparison: to my knowledge, there's not another Discord bot that generates on-demand custom responses, animated in a terminal style, and uploaded to Discord as a 60 frame, 5 second 12 FPS GIF. I do this to respect Discord rate limits. It only counts as one message. I also use neon as the human eye has a neon reaction biologically similar to a phosphor glow. The colors persist longer with higher saturation on the human retina, and we interpolate to smooth the motion.
I'm new to Python, but I absolutely love it. I designed an animated Discord bot that has Pokémon/Fallout style creatures. I was thinking of adding battling, but for now it is more an interactive guide.
I used accurate visual width calculations to get the text art wrapping correct. Rendered and then scaled so it fits any device. And then vectorized the rendering. Visual width is expensive, but it lines up in nice columns allowing vectorized rendering.
/r/Python
https://redd.it/1oalj6u
Just for ease, the repo is also posted up here.
https://github.com/DaSettingsPNGN/PNGN-Terminal-Animator
What my project does: animates text in Discord to look like a terminal output!
Target audience: other nostalgic gamers who enjoy Fallout and Pokémon, and who are interested in animation in Discord using Python.
Comparison: to my knowledge, there's not another Discord bot that generates on-demand custom responses, animated in a terminal style, and uploaded to Discord as a 60 frame, 5 second 12 FPS GIF. I do this to respect Discord rate limits. It only counts as one message. I also use neon as the human eye has a neon reaction biologically similar to a phosphor glow. The colors persist longer with higher saturation on the human retina, and we interpolate to smooth the motion.
I'm new to Python, but I absolutely love it. I designed an animated Discord bot that has Pokémon/Fallout style creatures. I was thinking of adding battling, but for now it is more an interactive guide.
I used accurate visual width calculations to get the text art wrapping correct. Rendered and then scaled so it fits any device. And then vectorized the rendering. Visual width is expensive, but it lines up in nice columns allowing vectorized rendering.
/r/Python
https://redd.it/1oalj6u
GitHub
GitHub - DaSettingsPNGN/PNGN-Terminal-Animator: Professional terminal-style animation renderer with team-themed colors, visual…
Professional terminal-style animation renderer with team-themed colors, visual effects, markdown support, and emoji rendering. Optimized for Discord GIF animations at 12 FPS. - DaSettingsPNGN/PNGN-...
Fun project UV scripts, but for functions.
What My Project Does
I recently created **uv-func**, a small tool that brings the dependency-isolation concept of tools like uv scripts down to the level of individual Python functions. Instead of managing dependencies per module or script, uv-func lets you run discrete functions in a contained environment so they can run, communicate with each other, and manage their dependencies cleanly and separately.
Target Audience
Python developers working with scripts or functions that need to be isolated or decoupled in terms of dependencies.
Hobbyists or maintainers who appreciate minimal tooling (uv-func has only three dependencies: cloudpickle, portalocker and rich).
Note: This isn’t a full framework for large applications — it’s intended to be lightweight and easy to embed or integrate as needed.
Comparison
There are other tools that handle dependency isolation or function-level execution (for example, using containers, virtual environments per script, or Function-as-a-Service frameworks like Ray, etc...).
What sets uv-func apart in my opinion:
1. Minimal footprint: only three external dependencies.
2. Focused on the function-level rather than full modules or services.
3. Lightweight and easy to drop into existing Python codebases without heavy platform or infrastructure requirements.
I see many AWS lambdas using requirements.txt then needing to run `pip install` somewhere in their app or infra code, and
/r/Python
https://redd.it/1oavf1l
What My Project Does
I recently created **uv-func**, a small tool that brings the dependency-isolation concept of tools like uv scripts down to the level of individual Python functions. Instead of managing dependencies per module or script, uv-func lets you run discrete functions in a contained environment so they can run, communicate with each other, and manage their dependencies cleanly and separately.
Target Audience
Python developers working with scripts or functions that need to be isolated or decoupled in terms of dependencies.
Hobbyists or maintainers who appreciate minimal tooling (uv-func has only three dependencies: cloudpickle, portalocker and rich).
Note: This isn’t a full framework for large applications — it’s intended to be lightweight and easy to embed or integrate as needed.
Comparison
There are other tools that handle dependency isolation or function-level execution (for example, using containers, virtual environments per script, or Function-as-a-Service frameworks like Ray, etc...).
What sets uv-func apart in my opinion:
1. Minimal footprint: only three external dependencies.
2. Focused on the function-level rather than full modules or services.
3. Lightweight and easy to drop into existing Python codebases without heavy platform or infrastructure requirements.
I see many AWS lambdas using requirements.txt then needing to run `pip install` somewhere in their app or infra code, and
/r/Python
https://redd.it/1oavf1l
GitHub
GitHub - Roulbac/uv-func: A Python decorator to run functions in isolated virtual environments bootstrapped by 'uv'
A Python decorator to run functions in isolated virtual environments bootstrapped by 'uv' - Roulbac/uv-func
Trio - Should I move to a more popular async framework?
I'm new-ish to python but come from a systems and embedded programming background and want to use python and pytest to automate testing with IoT devices through BLE, serial or other transports in the future. I started prototyping with Trio as that was the library I saw being used in a reference pytest plugin, I checked out Trio and was very pleased on the emphasis of the concept of structured concurrency (Swift has this concept with the same name in-grained so I knew what it meant and love it) and started writing a prototype to get something working.
It was quick for me to notice the lack of IO library that support Trio natively and this was bummer at first but no big deal as I could manage to find a small wrapper library for serial communication with Trio and wrote my own. However now that I'm having to prototype the BLE side of things I've found zero library, examples or material that uses Trio. Bleak which is the prime library I see pop-up when I look for BLE and python is written with the asyncio backend. I haven't done a lot of research into asyncio or anyio
/r/Python
https://redd.it/1oah08y
I'm new-ish to python but come from a systems and embedded programming background and want to use python and pytest to automate testing with IoT devices through BLE, serial or other transports in the future. I started prototyping with Trio as that was the library I saw being used in a reference pytest plugin, I checked out Trio and was very pleased on the emphasis of the concept of structured concurrency (Swift has this concept with the same name in-grained so I knew what it meant and love it) and started writing a prototype to get something working.
It was quick for me to notice the lack of IO library that support Trio natively and this was bummer at first but no big deal as I could manage to find a small wrapper library for serial communication with Trio and wrote my own. However now that I'm having to prototype the BLE side of things I've found zero library, examples or material that uses Trio. Bleak which is the prime library I see pop-up when I look for BLE and python is written with the asyncio backend. I haven't done a lot of research into asyncio or anyio
/r/Python
https://redd.it/1oah08y
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Is it possible to get a referral (india)?
I am 29F have 11 months of experience as Django developer and I'm still working but I need to switch the company for some reason
Is it possible to get a referral?
/r/django
https://redd.it/1oafscc
I am 29F have 11 months of experience as Django developer and I'm still working but I need to switch the company for some reason
Is it possible to get a referral?
/r/django
https://redd.it/1oafscc
Reddit
From the django community on Reddit
Explore this post and more from the django community
Thursday Daily Thread: Python Careers, Courses, and Furthering Education!
# Weekly Thread: Professional Use, Jobs, and Education 🏢
Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment.
---
## How it Works:
1. Career Talk: Discuss using Python in your job, or the job market for Python roles.
2. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources.
3. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally.
---
## Guidelines:
- This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar.
- Keep discussions relevant to Python in the professional and educational context.
---
## Example Topics:
1. Career Paths: What kinds of roles are out there for Python developers?
2. Certifications: Are Python certifications worth it?
3. Course Recommendations: Any good advanced Python courses to recommend?
4. Workplace Tools: What Python libraries are indispensable in your professional work?
5. Interview Tips: What types of Python questions are commonly asked in interviews?
---
Let's help each other grow in our careers and education. Happy discussing! 🌟
/r/Python
https://redd.it/1odomzr
# Weekly Thread: Professional Use, Jobs, and Education 🏢
Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment.
---
## How it Works:
1. Career Talk: Discuss using Python in your job, or the job market for Python roles.
2. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources.
3. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally.
---
## Guidelines:
- This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar.
- Keep discussions relevant to Python in the professional and educational context.
---
## Example Topics:
1. Career Paths: What kinds of roles are out there for Python developers?
2. Certifications: Are Python certifications worth it?
3. Course Recommendations: Any good advanced Python courses to recommend?
4. Workplace Tools: What Python libraries are indispensable in your professional work?
5. Interview Tips: What types of Python questions are commonly asked in interviews?
---
Let's help each other grow in our careers and education. Happy discussing! 🌟
/r/Python
https://redd.it/1odomzr
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Flask SaaS Starter with Stripe + PayPal + email automation
I was trying to build a product that sadly didn't take of but realized the infrastructure was solid through my iterations of my SaaS. It is tried, tested and currently used in production for clarq.ai but I thought I would drop it to Gumroad and see if others found it as a shortcut to save development for back end.
The starter template includes
\- stripe subscriptions with webhooks
\- aypal integration
\- mailgun email automation
\- PostgreSQL user managment
\- Admin dash
\- production-ready deployment config
800+ lines of clean documented Python. Selling at gum road for $79 (MIT license) and would love some feedback from the flask community. Everyone thinks they have a great idea until you find out you don't. Always striving to create and love Reddit to keep me grounded.
/r/flask
https://redd.it/1oe2tcw
I was trying to build a product that sadly didn't take of but realized the infrastructure was solid through my iterations of my SaaS. It is tried, tested and currently used in production for clarq.ai but I thought I would drop it to Gumroad and see if others found it as a shortcut to save development for back end.
The starter template includes
\- stripe subscriptions with webhooks
\- aypal integration
\- mailgun email automation
\- PostgreSQL user managment
\- Admin dash
\- production-ready deployment config
800+ lines of clean documented Python. Selling at gum road for $79 (MIT license) and would love some feedback from the flask community. Everyone thinks they have a great idea until you find out you don't. Always striving to create and love Reddit to keep me grounded.
/r/flask
https://redd.it/1oe2tcw
Maintained fork of filterpy (Bayesian/Kalman filters)
# What My Project Does
I forked filterpy and got it working with modern Python tooling. It's a library for Kalman filters and other Bayesian filtering algorithms - basically state estimation stuff for robotics, tracking, navigation etc.
The fork (bayesian\_filters) has all the original filterpy functionality but with proper packaging, tests, and docs.
# Target Audience
Anyone who needs Bayesian filtering in Python - whether that's production systems, research, or learning. It's not a toy project - filterpy is/was used all over the place in robotics and computer vision.
# Comparison
The original filterpy hasn't been updated since 2018 and broke with newer setuptools versions. This caused us (and apparently many others) real problems in production.
Since the original seems abandoned, I cleaned it up:
Fixed the setuptools incompatibility
Added proper tests
Updated to modern Python packaging
Actually maintaining it
You can install it with:
uv pip install bayesian-filters
GitHub: https://github.com/GeorgePearse/bayesian\_filters
This should help anyone else who's been stuck with the broken original package. It's one of those libraries that's simultaneously everywhere and completely unmaintained.
Literally just aiming to be a steward, I work in object detection so I might setup some benchmarks to test how well they improve object tracking (which has been my main use-case so
/r/Python
https://redd.it/1oe6mu7
# What My Project Does
I forked filterpy and got it working with modern Python tooling. It's a library for Kalman filters and other Bayesian filtering algorithms - basically state estimation stuff for robotics, tracking, navigation etc.
The fork (bayesian\_filters) has all the original filterpy functionality but with proper packaging, tests, and docs.
# Target Audience
Anyone who needs Bayesian filtering in Python - whether that's production systems, research, or learning. It's not a toy project - filterpy is/was used all over the place in robotics and computer vision.
# Comparison
The original filterpy hasn't been updated since 2018 and broke with newer setuptools versions. This caused us (and apparently many others) real problems in production.
Since the original seems abandoned, I cleaned it up:
Fixed the setuptools incompatibility
Added proper tests
Updated to modern Python packaging
Actually maintaining it
You can install it with:
uv pip install bayesian-filters
GitHub: https://github.com/GeorgePearse/bayesian\_filters
This should help anyone else who's been stuck with the broken original package. It's one of those libraries that's simultaneously everywhere and completely unmaintained.
Literally just aiming to be a steward, I work in object detection so I might setup some benchmarks to test how well they improve object tracking (which has been my main use-case so
/r/Python
https://redd.it/1oe6mu7
GitHub
GitHub - GeorgePearse/bayesian_filters: Python Kalman filtering and optimal estimation library. Implements Kalman filter, particle…
Python Kalman filtering and optimal estimation library. Implements Kalman filter, particle filter, Extended Kalman filter, Unscented Kalman filter, g-h (alpha-beta), least squares, H Infinity, smoo...
Autoreload
I'm on ipython 9.4. I can't really upgrade for reasons I won't go into. Anyway, autoreload used to be great. I could debug by editing files in real time and retrying in my ipython session. Somewhere along the way it became much less usable. For example, if I put a pdb breakpoint someplace, it doesn't seem to know where it is in the file and variables aren't visible that should be at that point. Is this a known issue or just the new normal? Or maybe newer ipython versions already fixed it?
/r/IPython
https://redd.it/1obo5jx
I'm on ipython 9.4. I can't really upgrade for reasons I won't go into. Anyway, autoreload used to be great. I could debug by editing files in real time and retrying in my ipython session. Somewhere along the way it became much less usable. For example, if I put a pdb breakpoint someplace, it doesn't seem to know where it is in the file and variables aren't visible that should be at that point. Is this a known issue or just the new normal? Or maybe newer ipython versions already fixed it?
/r/IPython
https://redd.it/1obo5jx
Reddit
From the IPython community on Reddit
Explore this post and more from the IPython community
Full-Stack Project Real-Time Trading Boilerplate – Django, Celery, React + Alpaca API
Hey folks,
I am subscribed only to ChatGPT Plus and GitHub Copilot, using mainly VS Code Copilot, Codex CLI, and the free Gemini CLI for this project.
I built an open-source full-stack trading boilerplate that utilizes the Alpaca API for both historical and real-time market data.
The goal is to provide developers with a plug-and-play base for building custom trading dashboards, strategy engines, and backtesting tools without requiring expensive market data feeds.
🔗 GitHub: https://github.com/naveedkhan1998/alpaca-main
🌐 Live Demo (free-tier hosting → a bit slow): https://alpaca.mnaveedk.com/
Tech Stack:
Backend: Django + DRF, Celery workers for background tasks.
Frontend: React, Redux Toolkit, Shadcn.
Real-Time: WebSockets for live price updates.
Data: Fetches 2 years of historical 1-minute candles \+ streams real-time updates.
Aggregation: Auto-generates higher timeframes (5m, 15m, 30m, 1h, 4h, 1d) in real time.
Features:
Add symbols to your watchlist (up to 30 with Alpaca free tier).
Historical + real-time sync.
Strategy-friendly data structure for easy backtesting & live trading.
If you’re into trading dashboards, real-time apps, or full-stack WebSocket projects, I would love your thoughts on the architecture, performance, or UI.
Forks & PRs welcome!
https://i.redd.it/0tkehwz8lvwf1.gif
https://i.redd.it/cclc6xz8lvwf1.gif
https://i.redd.it/uaf2n009lvwf1.gif
/r/django
https://redd.it/1oe5i4n
Hey folks,
I am subscribed only to ChatGPT Plus and GitHub Copilot, using mainly VS Code Copilot, Codex CLI, and the free Gemini CLI for this project.
I built an open-source full-stack trading boilerplate that utilizes the Alpaca API for both historical and real-time market data.
The goal is to provide developers with a plug-and-play base for building custom trading dashboards, strategy engines, and backtesting tools without requiring expensive market data feeds.
🔗 GitHub: https://github.com/naveedkhan1998/alpaca-main
🌐 Live Demo (free-tier hosting → a bit slow): https://alpaca.mnaveedk.com/
Tech Stack:
Backend: Django + DRF, Celery workers for background tasks.
Frontend: React, Redux Toolkit, Shadcn.
Real-Time: WebSockets for live price updates.
Data: Fetches 2 years of historical 1-minute candles \+ streams real-time updates.
Aggregation: Auto-generates higher timeframes (5m, 15m, 30m, 1h, 4h, 1d) in real time.
Features:
Add symbols to your watchlist (up to 30 with Alpaca free tier).
Historical + real-time sync.
Strategy-friendly data structure for easy backtesting & live trading.
If you’re into trading dashboards, real-time apps, or full-stack WebSocket projects, I would love your thoughts on the architecture, performance, or UI.
Forks & PRs welcome!
https://i.redd.it/0tkehwz8lvwf1.gif
https://i.redd.it/cclc6xz8lvwf1.gif
https://i.redd.it/uaf2n009lvwf1.gif
/r/django
https://redd.it/1oe5i4n
Alpaca API Docs
Historical bars
The historical stock bars API provides aggregates for a list of stock symbols between the specified dates.
The returned results are sorted by symbol first, then by bar timestamp. This means that you are likely to see only one symbol in your first response…
The returned results are sorted by symbol first, then by bar timestamp. This means that you are likely to see only one symbol in your first response…
Best sources to learn Flask, Flask Restful API
i came from django, i have like 5 days to learn everything about Flask for work. Any recommendation for sources to use (in order).
/r/flask
https://redd.it/1occige
i came from django, i have like 5 days to learn everything about Flask for work. Any recommendation for sources to use (in order).
/r/flask
https://redd.it/1occige
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Hey I am following this tutorial but I have a question "https://blog.miguelgrinberg.com/post/accept-credit-card-payments-in-flask-with-stripe-checkout". FYI I am not in production yet. Are there any better ways to run a webhook in python and stripe in production and dev mode that are free?
In the link they mention ngrok which I believe cost money and or the Stripe CLI which seems cumbersome and I am not sure if you can use it in production and it doesn't explain how to use the stripe cli. Does anyone have a better suggestion?
/r/flask
https://redd.it/1obmxw4
In the link they mention ngrok which I believe cost money and or the Stripe CLI which seems cumbersome and I am not sure if you can use it in production and it doesn't explain how to use the stripe cli. Does anyone have a better suggestion?
/r/flask
https://redd.it/1obmxw4
Miguelgrinberg
Accept Credit Card Payments in Flask with Stripe Checkout
In this article I'm going to show you how to implement an order page for your Flask application that you can use to sell products or services online. The solution I'm going to present to you uses…
Flask Fundus Image Manager app
Hey all
I am a doctor with no training in programming but am technically oriented. But The current AI coding agents have democratised this aspect.
So with the help of ChatGPT 20$ plan, QWEN, Gemini free tier and now GLM 4.6 i have developed this I believe a fairly complex project that allows ingestion of retinal images and then after anonymisation, these get allocated for grading in masked manner while hiding PII. There is an arbitrator workflow as well as a post-review workflow. Additionally,it accepts uploads of pregraded images as well as AI model grades and all of them get saved for you to analyse to your hears extent. I have also built in workflow for cross disease grading beyond original disease purpose of an image.
https://github.com/drguptavivek/fundusimgxtract
It leverages Flask, SQLAlchemy, flask Login, Limiter, Jinja, PuMuPDF, PYXL, CSRF, etc etc
Fundus Image Manager
A comprehensive system for an eye hospital to manage eye images. It facilitates the generation of curated datasets for training and validating Artificial Intelligence (AI) models targeted at detecting Glaucoma, Diabetic Retinopathy (DR), and Age-related Macular Degeneration (AMD). Has specific workflows for Remedio FOP zip files that get downlaoded from the remedio dashboard.
Please go through and provide feedback
/r/flask
https://redd.it/1oayi6m
Hey all
I am a doctor with no training in programming but am technically oriented. But The current AI coding agents have democratised this aspect.
So with the help of ChatGPT 20$ plan, QWEN, Gemini free tier and now GLM 4.6 i have developed this I believe a fairly complex project that allows ingestion of retinal images and then after anonymisation, these get allocated for grading in masked manner while hiding PII. There is an arbitrator workflow as well as a post-review workflow. Additionally,it accepts uploads of pregraded images as well as AI model grades and all of them get saved for you to analyse to your hears extent. I have also built in workflow for cross disease grading beyond original disease purpose of an image.
https://github.com/drguptavivek/fundusimgxtract
It leverages Flask, SQLAlchemy, flask Login, Limiter, Jinja, PuMuPDF, PYXL, CSRF, etc etc
Fundus Image Manager
A comprehensive system for an eye hospital to manage eye images. It facilitates the generation of curated datasets for training and validating Artificial Intelligence (AI) models targeted at detecting Glaucoma, Diabetic Retinopathy (DR), and Age-related Macular Degeneration (AMD). Has specific workflows for Remedio FOP zip files that get downlaoded from the remedio dashboard.
Please go through and provide feedback
/r/flask
https://redd.it/1oayi6m
QuickScale v0.60.0 - Deploy Django to Railway in 5 minutes with one command
Just shipped QuickScale v0.60.0, and I'm excited about the deployment automation we built.
What's New
One command handles the entire deployment workflow:
quickscale deploy railway
This automatically:
Provisions PostgreSQL database \- No manual Railway dashboard clicking
Generates SECRET_KEY \- Uses Django's secure random generation
Configures environment \- Interactive prompts for ALLOWED\_HOSTS, DEBUG, etc.
Runs migrations \- Executes `manage.py`
Collects static files \- Handles `collectstatic` for production
Sets up HTTPS \- Railway auto-provisions SSL certificates
The entire process takes under 5 minutes.
# Quick Start
# Install QuickScale
pip install quickscale
# Create new project
quickscale init my-saas-app
cd my-saas-app
# Deploy to Railway
quickscale deploy railway
The CLI guides you through the process with clear prompts.
# Looking for Feedback, would love to hear yout thoughts.
GitHub: github.com/Experto-AI/quickscale
Railway deployment docs: Railway Guide
/r/django
https://redd.it/1oea4p0
Just shipped QuickScale v0.60.0, and I'm excited about the deployment automation we built.
What's New
One command handles the entire deployment workflow:
quickscale deploy railway
This automatically:
Provisions PostgreSQL database \- No manual Railway dashboard clicking
Generates SECRET_KEY \- Uses Django's secure random generation
Configures environment \- Interactive prompts for ALLOWED\_HOSTS, DEBUG, etc.
Runs migrations \- Executes `manage.py`
migrate on RailwayCollects static files \- Handles `collectstatic` for production
Sets up HTTPS \- Railway auto-provisions SSL certificates
The entire process takes under 5 minutes.
# Quick Start
# Install QuickScale
pip install quickscale
# Create new project
quickscale init my-saas-app
cd my-saas-app
# Deploy to Railway
quickscale deploy railway
The CLI guides you through the process with clear prompts.
# Looking for Feedback, would love to hear yout thoughts.
GitHub: github.com/Experto-AI/quickscale
Railway deployment docs: Railway Guide
/r/django
https://redd.it/1oea4p0
GitHub
GitHub - Experto-AI/quickscale: QuickScale: Compose your Django SaaS
QuickScale: Compose your Django SaaS. Contribute to Experto-AI/quickscale development by creating an account on GitHub.
iommi 7.19.0 released
New hero page: https://iommi.rocks/
- A new system for advanced layouts for forms and tables. Example: https://docs.iommi.rocks/cookbook_forms.html#how-do-i-make-complex-layouts-for-forms
- A manually drag-and-drop reorderable feature for EditTable
- Tables will automatically pick up sort order from your queryset
And a bunch of other minor features and bug fixes of course.
/r/django
https://redd.it/1oeq25m
New hero page: https://iommi.rocks/
- A new system for advanced layouts for forms and tables. Example: https://docs.iommi.rocks/cookbook_forms.html#how-do-i-make-complex-layouts-for-forms
- A manually drag-and-drop reorderable feature for EditTable
- Tables will automatically pick up sort order from your queryset
And a bunch of other minor features and bug fixes of course.
/r/django
https://redd.it/1oeq25m
iommi.rocks
iommi - Django Power Tools
iommi is a productivity toolkit for Django: ship forms, tables, pages, and an admin with tiny amounts of code and zero boilerplate.
What are the long term goal of tasks in Django 6?
I see Django 6 is adding tasks similar to celery and wonder if the long term goal here is to replace celery with feature parity or simply act as a "celery lite"?
/r/django
https://redd.it/1oevtoc
I see Django 6 is adding tasks similar to celery and wonder if the long term goal here is to replace celery with feature parity or simply act as a "celery lite"?
/r/django
https://redd.it/1oevtoc
Reddit
From the django community on Reddit
Explore this post and more from the django community
Asking the impossible, may be not!
So currently, If someone is going with django, they can either do 1 of the 2 and never both. If they use django fullstack then they have to duplicate the code to provide api endpoints for handhelds like mobile. If they use it just for api to be consumed by mobile apps, then you cant just use the same api with django templates for browsers.
May be someday in the future, django 7 may be, where one can use django to write an api and use the api with django templates without having to use a separate front end. I wanna use django to serve both the browser and apps on mobiles which need api endpoints.
/r/django
https://redd.it/1oewzv4
So currently, If someone is going with django, they can either do 1 of the 2 and never both. If they use django fullstack then they have to duplicate the code to provide api endpoints for handhelds like mobile. If they use it just for api to be consumed by mobile apps, then you cant just use the same api with django templates for browsers.
May be someday in the future, django 7 may be, where one can use django to write an api and use the api with django templates without having to use a separate front end. I wanna use django to serve both the browser and apps on mobiles which need api endpoints.
/r/django
https://redd.it/1oewzv4
Reddit
From the django community on Reddit
Explore this post and more from the django community