A small modern Python project template I'm using for new repos
What My Project Does
This is a minimal Python project template I'm using when I spin up small repos. It gives you a ready-to-go structure with src/tests/docs, plus tooling for formatting, linting, testing, type-checking, and dependency management. Out of the box it wires up Black, Ruff, mypy, pytest, pip-tools, pre-commit, and a simple GitHub Actions CI workflow, all driven through invoke tasks so you can run the same commands locally and in CI.
Target Audience
This is mainly aimed at people who create a lot of small to medium Python projects and want a clean, modern starting point without a lot of extra complexity. It’s intended for real use (not just a toy), but it deliberately stays lightweight so you can delete or extend pieces as needed. I’ve focused on Python 3.13+ and tried
/r/Python
https://redd.it/1pg10u3
What My Project Does
This is a minimal Python project template I'm using when I spin up small repos. It gives you a ready-to-go structure with src/tests/docs, plus tooling for formatting, linting, testing, type-checking, and dependency management. Out of the box it wires up Black, Ruff, mypy, pytest, pip-tools, pre-commit, and a simple GitHub Actions CI workflow, all driven through invoke tasks so you can run the same commands locally and in CI.
Target Audience
This is mainly aimed at people who create a lot of small to medium Python projects and want a clean, modern starting point without a lot of extra complexity. It’s intended for real use (not just a toy), but it deliberately stays lightweight so you can delete or extend pieces as needed. I’ve focused on Python 3.13+ and tried
/r/Python
https://redd.it/1pg10u3
Reddit
From the Python community on Reddit: A small modern Python project template I'm using for new repos
Explore this post and more from the Python community
Render won’t deploy my Flask app — clicking “Deploy Web Service” does nothing
Hey everyone, I’m trying to deploy a simple Flask app on Render, but when I reach the final step and click “Deploy Web Service”, literally nothing happens. No error, no loading, no job started: the button just does nothing.
Here’s my setup:
Repo: GitHub → task-master-flex
Language: Python 3
Branch: main
Start Command:
gunicorn app:app
Build Command:
pip install -r requirements.txt
My requirements.txt includes:
Flask
Flask-SQLAlchemy
gunicorn
My app is in **app.py**, and the Flask object is named app:
if name == "main":
import os
port = int(os.environ.get("PORT", 5000))
app.run(host="0.0.0.0", port=port)
SQLite: using /tmp/test.db for storage.
I’ve tried:
reconnecting GitHub
switching browsers
clearing cache
re-creating the service
But the “Deploy” button still isn’t triggering anything.
Has anyone seen this? Is there a Render bug right now or something missing in my config?
Any help would be appreciated 🙏
/r/flask
https://redd.it/1pgekoc
Hey everyone, I’m trying to deploy a simple Flask app on Render, but when I reach the final step and click “Deploy Web Service”, literally nothing happens. No error, no loading, no job started: the button just does nothing.
Here’s my setup:
Repo: GitHub → task-master-flex
Language: Python 3
Branch: main
Start Command:
gunicorn app:app
Build Command:
pip install -r requirements.txt
My requirements.txt includes:
Flask
Flask-SQLAlchemy
gunicorn
My app is in **app.py**, and the Flask object is named app:
if name == "main":
import os
port = int(os.environ.get("PORT", 5000))
app.run(host="0.0.0.0", port=port)
SQLite: using /tmp/test.db for storage.
I’ve tried:
reconnecting GitHub
switching browsers
clearing cache
re-creating the service
But the “Deploy” button still isn’t triggering anything.
Has anyone seen this? Is there a Render bug right now or something missing in my config?
Any help would be appreciated 🙏
/r/flask
https://redd.it/1pgekoc
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
django-scheduled-tasks: Running periodic background tasks with the 6.0 task framework
I'm excited about the addition of the 6.0 Tasks framework in Django. I'm trying it out as a light-weight
Celery replacement in some hobby and professional projects.
In doing so, I'm trying to provide a package for a (to me) common use-case of background tasks:
scheduling tasks to run periodically, e.g., at certain times of day, or every hour.
It's designed to wrap around whatever task backend you have running by registering certain tasks on a schedule,
and I've started with support for periodic tasks (run on a time interval) and crontab-based schedules.
Usage:
from django.tasks import task
from django_scheduled_tasks import periodic_task, cron_task
from datetime import timedelta
# note the order of the decorators! Make sure periodic_task is above task
@periodic_task(interval=timedelta(hours=2))
@task
def run_hourly():
...
# or call periodic_task with a task directly:
@task
def some_existing_task(some_arg: str):
/r/django
https://redd.it/1pgh6me
I'm excited about the addition of the 6.0 Tasks framework in Django. I'm trying it out as a light-weight
Celery replacement in some hobby and professional projects.
In doing so, I'm trying to provide a package for a (to me) common use-case of background tasks:
scheduling tasks to run periodically, e.g., at certain times of day, or every hour.
It's designed to wrap around whatever task backend you have running by registering certain tasks on a schedule,
and I've started with support for periodic tasks (run on a time interval) and crontab-based schedules.
Usage:
from django.tasks import task
from django_scheduled_tasks import periodic_task, cron_task
from datetime import timedelta
# note the order of the decorators! Make sure periodic_task is above task
@periodic_task(interval=timedelta(hours=2))
@task
def run_hourly():
...
# or call periodic_task with a task directly:
@task
def some_existing_task(some_arg: str):
/r/django
https://redd.it/1pgh6me
Reddit
From the django community on Reddit: django-scheduled-tasks: Running periodic background tasks with the 6.0 task framework
Explore this post and more from the django community
Extracting financial data from 10-K and 10-Q reports
I'm interested in hearing if anyone here is extracting financial data from 10-K and 10-Q reports, mainly data from:
Income statement (revenue, operating expenses, net income etc)
Balance sheet (Assets like Cash and cash equivalents, Liabilities like debt etc)
Cash flow statement (Cash flow from operations, investments and financing etc)
Anyone doing this by themselves today? What approach are you using, parsing iXBRL tags, parsing with LLM or some approach?
Interested in hearing about your solutions and pros and cons with them!
/r/Python
https://redd.it/1pglwm4
I'm interested in hearing if anyone here is extracting financial data from 10-K and 10-Q reports, mainly data from:
Income statement (revenue, operating expenses, net income etc)
Balance sheet (Assets like Cash and cash equivalents, Liabilities like debt etc)
Cash flow statement (Cash flow from operations, investments and financing etc)
Anyone doing this by themselves today? What approach are you using, parsing iXBRL tags, parsing with LLM or some approach?
Interested in hearing about your solutions and pros and cons with them!
/r/Python
https://redd.it/1pglwm4
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
The Perfect Christmas Gift for Pythonistas Book (and your suggestions?)
I just wanted to share a fun find for anyone trying to figure out what to get a Python programmer for Christmas.
I picked up a book called The Python Programmer’s Survival Guide and it’s honestly hilarious. Not a tutorial, not a dry reference, just a tech-humor book that nails all the weird little things we deal with in Python. It's just funny as hell!
What surprised me is that it works for pretty much everyone. Beginners, seniors, anyone who have had to deal with the tantrums of Python. Haven't ever seen a book like this as a Python enthusiast.
If you want the perfect Christmas book gift for a Pythonista, this is it.
What is your pick as a Christmas gift to a Pythonista?
/r/Python
https://redd.it/1pgl3mc
I just wanted to share a fun find for anyone trying to figure out what to get a Python programmer for Christmas.
I picked up a book called The Python Programmer’s Survival Guide and it’s honestly hilarious. Not a tutorial, not a dry reference, just a tech-humor book that nails all the weird little things we deal with in Python. It's just funny as hell!
What surprised me is that it works for pretty much everyone. Beginners, seniors, anyone who have had to deal with the tantrums of Python. Haven't ever seen a book like this as a Python enthusiast.
If you want the perfect Christmas book gift for a Pythonista, this is it.
What is your pick as a Christmas gift to a Pythonista?
/r/Python
https://redd.it/1pgl3mc
Monday Daily Thread: Project ideas!
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief denoscription and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Denoscription**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Denoscription**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Denoscription**: Create a noscript that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1pgxoda
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief denoscription and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Denoscription**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Denoscription**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Denoscription**: Create a noscript that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1pgxoda
YouTube
Build & Integrate your own custom chatbot to a website (Python & JavaScript)
In this fun project you learn how to build a custom chatbot in Python and then integrate this to a website using Flask and JavaScript.
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
Please ROAST My FastAPI Template
Source code: [https://github.com/CarterPerez-dev/fullstack-template](https://github.com/CarterPerez-dev/fullstack-template)
I got tired of copying the same boilerplate across projects and finally sat down and made a proper template. It's mainly for my own use but figured I'd share it and get some feedback before I clean it up more.
**What my project does:**
* FastAPI with fully async SQLAlchemy (asyncpg, proper connection pooling)
* JWT auth with refresh token rotation + replay attack detection
* Alembic migrations (async compatible)
* PostgreSQL + Redis
* Docker Compose setup for dev and prod
* Nginx reverse proxy configs for both environments
* Rate limiting via slowapi (falls back to in-memory if Redis dies)
* Structured logging with structlog
* Repository pattern for DB operations
* Full test suite with pytest-asyncio + factory fixtures
* Fully Linted (mypy, ruff, pylint)
* Uses uv for package management, just for commands
* Basic user auth/CRUD and basic admin CRUD
**Comparison:**
* Did a deep dive into current best practices (+Nov 2025) for FastAPI, Pydantic, async SQLAlchemy, Docker, Nginx, and spent way too much time reading docs and GitHub issues to ensure nothing's using deprecated patterns or outdated approaches.
* Also has Astral's new type checker - 'ty 0.0.1a32' setup to mess around with (Came out literally last week, so I highly doubt any similar templates have
/r/Python
https://redd.it/1pgvpw1
Source code: [https://github.com/CarterPerez-dev/fullstack-template](https://github.com/CarterPerez-dev/fullstack-template)
I got tired of copying the same boilerplate across projects and finally sat down and made a proper template. It's mainly for my own use but figured I'd share it and get some feedback before I clean it up more.
**What my project does:**
* FastAPI with fully async SQLAlchemy (asyncpg, proper connection pooling)
* JWT auth with refresh token rotation + replay attack detection
* Alembic migrations (async compatible)
* PostgreSQL + Redis
* Docker Compose setup for dev and prod
* Nginx reverse proxy configs for both environments
* Rate limiting via slowapi (falls back to in-memory if Redis dies)
* Structured logging with structlog
* Repository pattern for DB operations
* Full test suite with pytest-asyncio + factory fixtures
* Fully Linted (mypy, ruff, pylint)
* Uses uv for package management, just for commands
* Basic user auth/CRUD and basic admin CRUD
**Comparison:**
* Did a deep dive into current best practices (+Nov 2025) for FastAPI, Pydantic, async SQLAlchemy, Docker, Nginx, and spent way too much time reading docs and GitHub issues to ensure nothing's using deprecated patterns or outdated approaches.
* Also has Astral's new type checker - 'ty 0.0.1a32' setup to mess around with (Came out literally last week, so I highly doubt any similar templates have
/r/Python
https://redd.it/1pgvpw1
GitHub
GitHub - CarterPerez-dev/fullstack-template: Full Stack template for FastAPI, React 19 TypeScript, SCSS, Tanstack Query, Zustand…
Full Stack template for FastAPI, React 19 TypeScript, SCSS, Tanstack Query, Zustand, Nginx, Docker - CarterPerez-dev/fullstack-template
Just upgraded from Django 5.2.6 to 6.0, admin sidebar filter is now on top :S
I just jump into django 6.0 half an hour ago, my experience so far (actually, short story)
\- I had some issues with "format_html" method, it's usage has changed to deal with XSS attacks so I recommed to read about it previously if you're using it on django 5.x or previous.
\- Django admin works fine but I got an odd issue on filters. My sidebar is no longer on the right handside, it now displays on top just like my laptop is rendering smartphone-like website.
About the first thing, I just needed to refactor some methods on my models to render html properly, not a big deal actually. "format_html" and "mark_safe" are now different and it will need to get the base html with placeholders on the first argument and then a list of arguments to place on the placeholders (obviously!).
Does anyone know how to put the sidebar back again on the right side :) ?
I'm unable to find any info on that topic.
/r/django
https://redd.it/1pgm1hu
I just jump into django 6.0 half an hour ago, my experience so far (actually, short story)
\- I had some issues with "format_html" method, it's usage has changed to deal with XSS attacks so I recommed to read about it previously if you're using it on django 5.x or previous.
\- Django admin works fine but I got an odd issue on filters. My sidebar is no longer on the right handside, it now displays on top just like my laptop is rendering smartphone-like website.
About the first thing, I just needed to refactor some methods on my models to render html properly, not a big deal actually. "format_html" and "mark_safe" are now different and it will need to get the base html with placeholders on the first argument and then a list of arguments to place on the placeholders (obviously!).
Does anyone know how to put the sidebar back again on the right side :) ?
I'm unable to find any info on that topic.
/r/django
https://redd.it/1pgm1hu
Reddit
From the django community on Reddit
Explore this post and more from the django community
I built a Terminal-based GPS with Turn-by-Turn Navigation (using Textual + Rich).
What My Project Does
TermGPS is a terminal-based navigation application (TUI) that provides live turn-by-turn directions. It uses the `Rich` and `Textual` libraries to render a radar-style map, visual signal meters, and a "Co-Pilot" panel that detects your speed (`km/h`) and provides live commentary. It pulls routing data from the OSRM API and supports live GPS tracking (Native CoreLocation on macOS, IP-Geolocation fallback on Linux/Windows)
Target Audience
This is primarily a toy/hobby project for terminal enthusiasts, "ricers" (r/unixporn fans), and developers who want to stay inside their CLI. It is **not** meant for critical real-world navigation (e.g., flying a plane or medical transport) due to current API limitations, but it works great for general city navigation or just looking cool on your second monitor.
Comparison
Unlike `mapscii` (which is a telnet map viewer) or `google-maps-cli` (which often just opens a browser link), TermGPS is a fully interactive, native Python application that runs entirely in your terminal buffer. It doesn't just show a map; it calculates routes, tracks your real-time movement, and has a dedicated UI with themes (Matrix, Dracula, etc.).
Repo & Source: https://github.com/Aditya-Giri-4356/termgps
(Note: Shows "AI-Assisted" in the repo because I pair-programmed this with an AI agent to test TUI rendering limits).
/r/Python
https://redd.it/1pgx1v7
What My Project Does
TermGPS is a terminal-based navigation application (TUI) that provides live turn-by-turn directions. It uses the `Rich` and `Textual` libraries to render a radar-style map, visual signal meters, and a "Co-Pilot" panel that detects your speed (`km/h`) and provides live commentary. It pulls routing data from the OSRM API and supports live GPS tracking (Native CoreLocation on macOS, IP-Geolocation fallback on Linux/Windows)
Target Audience
This is primarily a toy/hobby project for terminal enthusiasts, "ricers" (r/unixporn fans), and developers who want to stay inside their CLI. It is **not** meant for critical real-world navigation (e.g., flying a plane or medical transport) due to current API limitations, but it works great for general city navigation or just looking cool on your second monitor.
Comparison
Unlike `mapscii` (which is a telnet map viewer) or `google-maps-cli` (which often just opens a browser link), TermGPS is a fully interactive, native Python application that runs entirely in your terminal buffer. It doesn't just show a map; it calculates routes, tracks your real-time movement, and has a dedicated UI with themes (Matrix, Dracula, etc.).
Repo & Source: https://github.com/Aditya-Giri-4356/termgps
(Note: Shows "AI-Assisted" in the repo because I pair-programmed this with an AI agent to test TUI rendering limits).
/r/Python
https://redd.it/1pgx1v7
GitHub
GitHub - Aditya-Giri-4356/termgps: a terminal based GPS tool.
a terminal based GPS tool. Contribute to Aditya-Giri-4356/termgps development by creating an account on GitHub.
Multi-tenant with some tenants requiring their own database
I'm building a Django SaaS and need advice on implementing a hybrid multi-tenancy architecture while keeping hosting costs low on AWS/GCP/Azure managed services (like RDS/Cloud SQL and Fargate/Cloud Run).
My Goal:
1. Standard Tenants (90%): Use a Shared PostgreSQL Database with Separate Schemas per Tenant (e.g., using
2. High-Tier Tenants (10%): Require full Database Isolation (Dedicated Database Instance) due to strict compliance needs.
The Key Challenge: How do I best structure the Django application and DevOps pipeline to manage this mix?
The Two Potential Solutions I'm considering are:
A) Single Shared App: Use a custom Django Database Router to route requests to either the shared database (for schema switching) or the dedicated database instance.
B) Dual Deployment: Deploy a separate, dedicated application stack (App Server + DB) for the high-tier customers, leaving the main codebase for the shared schema customers.
Which approach offers the best trade-off between cost savings (for the 90% of tenants) and operational complexity (for managing the whole system)?
/r/django
https://redd.it/1ph76n2
I'm building a Django SaaS and need advice on implementing a hybrid multi-tenancy architecture while keeping hosting costs low on AWS/GCP/Azure managed services (like RDS/Cloud SQL and Fargate/Cloud Run).
My Goal:
1. Standard Tenants (90%): Use a Shared PostgreSQL Database with Separate Schemas per Tenant (e.g., using
django-tenants) to keep costs low.2. High-Tier Tenants (10%): Require full Database Isolation (Dedicated Database Instance) due to strict compliance needs.
The Key Challenge: How do I best structure the Django application and DevOps pipeline to manage this mix?
The Two Potential Solutions I'm considering are:
A) Single Shared App: Use a custom Django Database Router to route requests to either the shared database (for schema switching) or the dedicated database instance.
B) Dual Deployment: Deploy a separate, dedicated application stack (App Server + DB) for the high-tier customers, leaving the main codebase for the shared schema customers.
Which approach offers the best trade-off between cost savings (for the 90% of tenants) and operational complexity (for managing the whole system)?
/r/django
https://redd.it/1ph76n2
Reddit
From the django community on Reddit
Explore this post and more from the django community
Forcing clients to use latest static assets served from S3 storage what are your strategies?
What techniques/strategies do you use to force clients to use the latest css and other changing static assets from S3 compatible storage?
I already separate assets with a development bucket and production bucket, but what is a good way to force clients to use the latest version in the production bucket instead of their cached version?
/r/django
https://redd.it/1pggodf
What techniques/strategies do you use to force clients to use the latest css and other changing static assets from S3 compatible storage?
I already separate assets with a development bucket and production bucket, but what is a good way to force clients to use the latest version in the production bucket instead of their cached version?
/r/django
https://redd.it/1pggodf
Reddit
From the django community on Reddit
Explore this post and more from the django community
Django ORM + Fast API (Guidance)
I'm using FastAPI + Django ORM + Uvicorn in a client project. Everything works fine normally, but if the server is idle for 1–2 weeks, the first request after that fails with:
Interal server error , & found this in my aws log
django.db.utils.InterfaceError: connection already closed
This comes from Django when it tries to open a cursor.
My DB settings:
CONNMAXAGE = 0
CONNHEALTHCHECKS = True
It looks like the database connection goes stale during long idle time, and Django/FastAPI doesn’t recreate it properly.
What’s the correct fix for long-idle Django connections in a FastAPI + Django ORM setup?
Should I increase
/r/django
https://redd.it/1phb920
I'm using FastAPI + Django ORM + Uvicorn in a client project. Everything works fine normally, but if the server is idle for 1–2 weeks, the first request after that fails with:
Interal server error , & found this in my aws log
django.db.utils.InterfaceError: connection already closed
This comes from Django when it tries to open a cursor.
My DB settings:
CONNMAXAGE = 0
CONNHEALTHCHECKS = True
It looks like the database connection goes stale during long idle time, and Django/FastAPI doesn’t recreate it properly.
What’s the correct fix for long-idle Django connections in a FastAPI + Django ORM setup?
Should I increase
CONN_MAX_AGE, call close_old_connections() on each request, or change Uvicorn worker settings?/r/django
https://redd.it/1phb920
Reddit
From the django community on Reddit
Explore this post and more from the django community
Built a SaaS Starter Kit with FastAPI (Auth + Billing + Celery + Stripe) — Looking for feedback!
Hey everyone,
I’ve been working on a SaaS starter kit using FastAPI that bundles together all the core features most products need: authentication, billing, background jobs, clean architecture, and a production-ready stack.
I built this because every new project kept repeating the same boilerplate — so I wanted something modular that could work as a standalone microservice or be integrated directly into any FastAPI project.
GitHub repo: https://github.com/mahmoudsamy7729/fastapi-saas-starter
/r/Python
https://redd.it/1phg3x5
Hey everyone,
I’ve been working on a SaaS starter kit using FastAPI that bundles together all the core features most products need: authentication, billing, background jobs, clean architecture, and a production-ready stack.
I built this because every new project kept repeating the same boilerplate — so I wanted something modular that could work as a standalone microservice or be integrated directly into any FastAPI project.
GitHub repo: https://github.com/mahmoudsamy7729/fastapi-saas-starter
/r/Python
https://redd.it/1phg3x5
GitHub
GitHub - mahmoudsamy7729/fastapi-saas-starter: A complete FastAPI SaaS starter kit with authentication, social login, billing,…
A complete FastAPI SaaS starter kit with authentication, social login, billing, Stripe subnoscriptions, email workflows, and Celery background jobs—built with clean architecture and async SQLAlchemy....
PyCharm 2025.3 released
https://www.jetbrains.com/pycharm/whatsnew/
PyCharm 2025.3: unified edition, remote Jupyter, uv default, new LSP tools (Ruff, Pyright, etc.), smarter data exploration, AI agents + 300+ fixes.
/r/Python
https://redd.it/1phifp4
https://www.jetbrains.com/pycharm/whatsnew/
PyCharm 2025.3: unified edition, remote Jupyter, uv default, new LSP tools (Ruff, Pyright, etc.), smarter data exploration, AI agents + 300+ fixes.
/r/Python
https://redd.it/1phifp4
JetBrains
What's New in PyCharm 2025.3
A unified IDE, support for Jupyter notebooks in remote development, uv as default, proactive data exploration, new LSP tools, Claude Agent, and more!
D Does this NeurIPS 2025 paper look familiar to anyone?
This NeurIPS 2025 paper seems very much like another well-known paper but appears to be renaming everything. Some parts are down to the word matches. Just to make sure I'm not going crazy, as an experiment, I'm not going to post the original paper just to see if others make the connection:
The Indra Representation Hypothesis
https://openreview.net/forum?id=D2NR5Zq6PG
Since comments are asking for the other paper:
The Platonic Representation Hypothesis
https://arxiv.org/abs/2405.07987
/r/MachineLearning
https://redd.it/1phillh
This NeurIPS 2025 paper seems very much like another well-known paper but appears to be renaming everything. Some parts are down to the word matches. Just to make sure I'm not going crazy, as an experiment, I'm not going to post the original paper just to see if others make the connection:
The Indra Representation Hypothesis
https://openreview.net/forum?id=D2NR5Zq6PG
Since comments are asking for the other paper:
The Platonic Representation Hypothesis
https://arxiv.org/abs/2405.07987
/r/MachineLearning
https://redd.it/1phillh
openreview.net
The Indra Representation Hypothesis
Recent studies have uncovered an interesting phenomenon: unimodal foundation models tend to learn convergent representations, regardless of differences in architecture, training objectives, or data...
Opinion on using pyinfra
I recently came across pyinfra and I love it so far. It is way more intuitive than ansible or any of those Cloud DevOps tools. At least for small projects it seems to be the perfect fit and even beyond it I think.
Pyinfra is already around for a while and seems to be well maintained. But I don’t think it has the attention it deserves.
Do you know it? And what is your opinion why to use it / not use it…
Here is the link to the docs: https://pyinfra.com
/r/Python
https://redd.it/1phgso7
I recently came across pyinfra and I love it so far. It is way more intuitive than ansible or any of those Cloud DevOps tools. At least for small projects it seems to be the perfect fit and even beyond it I think.
Pyinfra is already around for a while and seems to be well maintained. But I don’t think it has the attention it deserves.
Do you know it? And what is your opinion why to use it / not use it…
Here is the link to the docs: https://pyinfra.com
/r/Python
https://redd.it/1phgso7
pyinfra
pyinfra - Fast Python Infrastructure Automation Tool
Fast, Python-based infrastructure automation. Deploy to SSH servers, Docker, and local machines. 10x faster than Ansible.
DRF/React security
Hi folks, just reading about the current security vulnerability with server side components and React/Next. As I understand it sends a fake post request and needs to Node to handle the request?
This exploit isn't something that would effect a React/DRF setup, is it? Just want to be 100% sure!
/r/django
https://redd.it/1phg6xq
Hi folks, just reading about the current security vulnerability with server side components and React/Next. As I understand it sends a fake post request and needs to Node to handle the request?
This exploit isn't something that would effect a React/DRF setup, is it? Just want to be 100% sure!
/r/django
https://redd.it/1phg6xq
Reddit
From the django community on Reddit
Explore this post and more from the django community
Turning Django Q2 into a "Headless" Task Queue – I built a REST API wrapper to enable custom dashboards
Hi everyone,
I've been diving deep into **Django Q2** recently. While it's fantastic, I found myself frustrated that I couldn't easily display task status or retry jobs from outside the Django Admin (like in a client-facing React dashboard or a mobile app for ops).
Instead of hardcoding a solution for just one project, I decided to turn it into a learning exercise on how to build and maintain a proper reusable app.
**Introducing** `django-q-monitor`
It’s a plug-and-play DRF wrapper that decouples monitoring from the backend.
**What it does:**
* 📊 **Read-only endpoints:** Lists Tasks and Schedules (JSON formatted).
* 🔄 **Interactive Actions:** POST to `retry` a specific task or DELETE to `cleanup` old history.
* 🛡️ **Security:** Respects DRF permission classes (defaults to `IsAdminUser`, but you can swap it for Token auth).
**Why I'm posting:** This is officially **my first package published on PyPI**. I learned a ton about `pyproject.toml` and packaging standards during the process.
I’ve tried to keep the code clean and strictly typed. I would appreciate any feedback on the **project structure** or suggestions on how to make the **ViewSets** more efficient/extensible.
* **Repo:**[https://github.com/previa1998/django-q-monitor](https://github.com/previa1998/django-q-monitor)
* **PyPI:** `pip install django-q-monitor`
Thanks for checking it out!
/r/django
https://redd.it/1phbccw
Hi everyone,
I've been diving deep into **Django Q2** recently. While it's fantastic, I found myself frustrated that I couldn't easily display task status or retry jobs from outside the Django Admin (like in a client-facing React dashboard or a mobile app for ops).
Instead of hardcoding a solution for just one project, I decided to turn it into a learning exercise on how to build and maintain a proper reusable app.
**Introducing** `django-q-monitor`
It’s a plug-and-play DRF wrapper that decouples monitoring from the backend.
**What it does:**
* 📊 **Read-only endpoints:** Lists Tasks and Schedules (JSON formatted).
* 🔄 **Interactive Actions:** POST to `retry` a specific task or DELETE to `cleanup` old history.
* 🛡️ **Security:** Respects DRF permission classes (defaults to `IsAdminUser`, but you can swap it for Token auth).
**Why I'm posting:** This is officially **my first package published on PyPI**. I learned a ton about `pyproject.toml` and packaging standards during the process.
I’ve tried to keep the code clean and strictly typed. I would appreciate any feedback on the **project structure** or suggestions on how to make the **ViewSets** more efficient/extensible.
* **Repo:**[https://github.com/previa1998/django-q-monitor](https://github.com/previa1998/django-q-monitor)
* **PyPI:** `pip install django-q-monitor`
Thanks for checking it out!
/r/django
https://redd.it/1phbccw
GitHub
GitHub - previa1998/django-q-monitor: REST API monitoring tool for Django Q2 queues.
REST API monitoring tool for Django Q2 queues. Contribute to previa1998/django-q-monitor development by creating an account on GitHub.
How do I fully integrate Xero Accounting with a Django REST Framework backend? Need guidance.
I’m currently building a Django + Django REST Framework project and I want to integrate **Xero Accounting Software** into my backend.
I’m confused about what “full integration” actually means.
Do we *install* Xero somehow in Django, or is everything done only through API calls?
If anyone has:
* tutorials
* code examples
* best practices
* sample projects
* or advice on pitfalls
it would be super helpful.
/r/django
https://redd.it/1phzw8i
I’m currently building a Django + Django REST Framework project and I want to integrate **Xero Accounting Software** into my backend.
I’m confused about what “full integration” actually means.
Do we *install* Xero somehow in Django, or is everything done only through API calls?
If anyone has:
* tutorials
* code examples
* best practices
* sample projects
* or advice on pitfalls
it would be super helpful.
/r/django
https://redd.it/1phzw8i
Reddit
From the django community on Reddit
Explore this post and more from the django community