Daily Python News Question, Tips and Tricks, Best Practices on Python Programming Language Find more reddit channels over at @r_channels
I have developed a web application with flask web framework, what to do next to make sure the webpage looks richer and effective
This is the first project I have done and I am new here, your advice will be very helpful for this and future projects.
/r/flask
https://redd.it/1jnr4dn
What is the best website to deploy a flask app in 2025
Hey, I'm ready to deploy my first flask app and I'm looking for the best way to deploy it. Do you guys have recommendations for the best/cheapest/simplest way to deploy it in 2025. Here's some specifications about my project:
My website is relatively simple and mostly does requests to public APIs.
I'm expecting about 500-1000 visits per day, but the traffic might grow.
I have a custom domain, so the server provider needs to allow it (PythonAnywhere's free tier won't work).
I'm willing to spend a few dollar (maybe up to 30) per month to host it
I've heard of Pythonanywhere, Vercel, Render and Digitalocean, but I would like to have some of your opinions before I chose one. Also, I'm worried about waking up one day and realizing that someone spammed my website with a bot and caused a crazy bill. So, I was also wondering if some of these hosting providers had built-in protection against that. Thanks!
/r/flask
https://redd.it/1jnqvun
I benchmarked Python's top HTTP clients (requests, httpx, aiohttp, etc.) and open sourced it
Hey folks
I’ve been working on a Python-heavy project that fires off tons of HTTP requests… and I started wondering:
**Which HTTP client should I actually be using?**
So I went looking for up-to-date benchmarks comparing `requests`, `httpx`, `aiohttp`, `urllib3`, and `pycurl`.
And... I found almost nothing. A few GitHub issues, some outdated blog posts, but nothing that benchmarks them all in one place — especially not including TLS handshake timings.
**What My Project Does**
This project benchmarks Python's most popular HTTP libraries — `requests`, `httpx`, `aiohttp`, `urllib3`, and `pycurl` — across key performance metrics like:
* Requests per second
* Total request duration
* Average connection time
* TLS handshake latency (where supported)
It runs each library multiple times with randomized order to minimize bias, logs results to CSV, and provides visualizations with `pandas` \+ `seaborn`.
GitHub repo: 👉 [https://github.com/perodriguezl/python-http-libraries-benchmark](https://github.com/perodriguezl/python-http-libraries-benchmark)
**Target Audience**
This is for developers, backend engineers, researchers or infrastructure teams who:
* Work with high-volume HTTP traffic (APIs, microservices, scrapers)
* Want to understand how different clients behave in real scenarios
* Are curious about TLS overhead or latency under concurrency
It’s production-oriented in that the benchmark simulates realistic usage (not just toy code), and could help you choose the best HTTP client for performance-critical systems.
**Comparison to Existing Alternatives**
I looked around but couldn’t find an open source benchmark
/r/Python
https://redd.it/1jnlrdl
Should I port my BE to Django?
Hi all,
I've been thinking about this for a while, but I'm stills unsure if I can justify the effort it will take.
I have a backend application written in python. I use SQLalchemy, flask rest and a few classes (pure python) that I made for the specifics of my project.
I spent a reasonable amount of time creating a generic DB class that implements similar things as Django (getone, getcreate, ....) and it works nicely. It also manages DB connections to master-replica cluster.
I miss a lot of the functionality of an admin panel..My understanding is that Django offers those built in, which is a great advantage...
The frontend (svelte) consumes API endpoints to Interact with the backend, so I won't be using views or they'll be just JSON responses.
The backend has two main funcionalities. In one hand, a bunch of scripts that work independently feeding info to the DB and the API that produces the info to the frontend.
All that is currently done in flask, which offers too much freedom to organise the code and I think it'll be a problem going forward. I understand Django is more rigid in that aspect.
So, is it worth port it to Django? What would you consider
/r/django
https://redd.it/1jndxt7
Implemented 18 RL Algorithms in a Simpler Way
# What My Project Does
I was learning RL from a long time so I decided to create a comprehensive learning project in a Jupyter Notebook to implement RL Algorithms such as PPO, SAC, A3C and more.
# Target audience
This project is designed for students and researchers who want to gain a clear understanding of RL algorithms in a simplified manner.
# Comparison
My repo has (Theory + Code). When I started learning RL, I found it very difficult to understand what was happening backstage. So this repo does exactly that showing how each algorithm works behind the scenes. This way, we can actually see what is happening. In some repos, I did use the OpenAI Gym library, but most of them have a custom-created grid environment.
# GitHub
Code, documentation, and example can all be found on GitHub:
https://github.com/FareedKhan-dev/all-rl-algorithms
/r/Python
https://redd.it/1jnduby
Guide for CPython
~~Hi everyone, I'd like to have your opinion and guide on CPython. How to start, Which are the docs I should look, Is it really a good idea to learn CPython at the current time?~~
~~I am looking to create Python bindings for a C based library, and there are some current bindings for Python, written in CPython. Please let me know, how to go forward, and what you all think.~~
EDIT: I was confused between CPython and Cython. This is none. What I need help is to write code that can be called via Python intrepretor, but will write in C.
https://github.com/OpenPrinting/pycups
This is the library I want to work on.
/r/Python
https://redd.it/1jn6znc
Self-contained Python scripts with uv
TLDR: You can add uv into the shebang line for a Python script to make it a self-contained executable.
I wrote a blog post about using uv to make a Python script self-contained.
Read about it here: https://blog.dusktreader.dev/2025/03/29/self-contained-python-scripts-with-uv/
/r/Python
https://redd.it/1jmyip9
Running scripts within django
Hi all,
I am trying to build a site where users can manage their stock trades and adjust their trade settings. The problem i am having is trying to figure out how to run a bot that pulls information from their brokerage every second. I have all my models in place but i am unsure of how to set up scripts if they aren’t django apps, models, views or templates. I guess my question is where would i put this script? How can i have it run every second within my django app?
Please be kind, Thanks in advance!
/r/django
https://redd.it/1jmun7b
Saturday Daily Thread: Resource Request and Sharing! Daily Thread
# Weekly Thread: Resource Request and Sharing 📚
Stumbled upon a useful Python resource? Or are you looking for a guide on a specific topic? Welcome to the Resource Request and Sharing thread!
## How it Works:
1. Request: Can't find a resource on a particular topic? Ask here!
2. Share: Found something useful? Share it with the community.
3. Review: Give or get opinions on Python resources you've used.
## Guidelines:
Please include the type of resource (e.g., book, video, article) and the topic.
Always be respectful when reviewing someone else's shared resource.
## Example Shares:
1. Book: "Fluent Python" \- Great for understanding Pythonic idioms.
2. Video: Python Data Structures \- Excellent overview of Python's built-in data structures.
3. Article: Understanding Python Decorators \- A deep dive into decorators.
## Example Requests:
1. Looking for: Video tutorials on web scraping with Python.
2. Need: Book recommendations for Python machine learning.
Share the knowledge, enrich the community. Happy learning! 🌟
/r/Python
https://redd.it/1jm9hdd
How do Flask sessions behavior vary in different browsers?
I was watching a cs50 lecture on flask and Professor David Malin discussed about how sessions work and said that they vary depending on browser. I know that this question seems a bit all over the place but what are some good practices to ensure over sessions work properly. Thanks!
/r/flask
https://redd.it/1jlhf8p
Question
What’s the difference between Jupyter and another code editor like Vscode? I’ve been using Vscode, and briefly looked at jupyter but I don’t understand what advantages jupyter has over Vscode or other editors
/r/IPython
https://redd.it/1jjo3kz
React with flask?
Hello!
I really like using flask for personal projects, my question is, is it still common to be writing your own custom html and JavaScript? It seems like most web frameworks now involve using react.
Is there ever a situation where it makes more sense to write your own custom JavaScript with html? Or will that never be as good as using React?
Thanks!
/r/flask
https://redd.it/1jmogyk
Cocommit: A Copilot for Git commit command
I wanted to share a project I worked on during my weather-non-cooperating vacation: a copilot for `git commit`.
# What My Project Does
This command-line application enhances last commit message (i.e., the current `HEAD`) using an LLM. It provides:
* A summary of the commit message quality.
* An analysis of its strengths and weaknesses.
* A suggested commit message for an optional amend.
The application uses LangChain to interact with various LLMs. Personally, I use Claude 3.7 via AWS Bedrock and OpenAI's GPT-4o.
The source code: [GitHub Repository](https://github.com/andrewromanenco/cocommit). And it is available with `pip install cocommit`.
# Target Audience
This tool is designed for software engineers. Personally, I run it after every commit I make, even when using other copilots to assist with code generation.
# Comparison
[Aider](https://github.com/Aider-AI/aider) is a full command-line copilot, similar in intent to GitHub Copilot and other AI-powered coding assistants.
Cocommit, however, follows a different paradigm: it operates exclusively on Git commits. By design, Git commits contain valuable context—both in terms of actual code changes and the intent behind them—making them a rich source of information for improving code quality.
/r/Python
https://redd.it/1jiplpp
Redirection not working
https://redd.it/1jiop5t
@pythondaily
safe-result: A Rust-inspired Result type for Python to handle errors without try/catch
Hi Peeps,
I've just released safe-result, a library inspired by Rust's Result pattern for more explicit error handling.
## Target Audience
Anybody.
## Comparison
Using safe_result
offers several benefits over traditional try/catch exception handling:
1. Explicitness: Forces error handling to be explicit rather than implicit, preventing overlooked exceptions
2. Function Composition: Makes it easier to compose functions that might fail without nested try/except blocks
3. Predictable Control Flow: Code execution becomes more predictable without exception-based control flow jumps
4. Error Propagation: Simplifies error propagation through call stacks without complex exception handling chains
5. Traceback Preservation: Automatically captures and preserves tracebacks while allowing normal control flow
6. Separation of Concerns: Cleanly separates error handling logic from business logic
7. Testing: Makes testing error conditions more straightforward since errors are just values
## Examples
### Explicitness
Traditional approach:
def processdata(data):
# This might raise various exceptions, but it's not obvious from the signature
processed = data.process()
return processed
# Caller might forget to handle exceptions
result = processdata(data) # Could raise exceptions!
With safe_result
:
@Result.safe
/r/Python
https://redd.it/1jimiz0
the backend doesn't support altering from IntegerField to AutoField.
Hello everybody.
I'm having issues with my models.py. I inherited a codebase from a few years ago which uses varios IntegerFields for its Primary Key.
At first it was fine but later on it started causing issues where it won't save rows properly, making me want to change the field to an Autofield as it should have been.
I'm using MSSQL where I can't alter into Autofields. I found a workaround where I delete the column from the id for 1 migration and recreate it, but it is very clunky as it deletes the values from the db and if the column is used as a foreign key elsewhere it becomes even clunkier to delete.
Wanted to know if anyone has any advice on how to more efficiently work around this. Preferably without deleting itema from the db.
/r/djangolearning
https://redd.it/1jlwp74
D Why is table extraction still not solved by modern multimodal models?
There is a lot of hype around multimodal models, such as Qwen 2.5 VL or Omni, GOT, SmolDocling, etc. I would like to know if others made a similar experience in practice: While they can do impressive things, they still struggle with table extraction, in cases which are straight-forward for humans.
Attached is a simple example, all I need is a reconstruction of the table as a flat CSV, preserving empty all empty cells correctly. Which open source model is able to do that?
https://preview.redd.it/krox7ytlhvre1.png?width=1650&format=png&auto=webp&s=5daa7f68f4acc55f4bdac3b2defa21b9ebfae0d9
/r/MachineLearning
https://redd.it/1jnjfaq
Unable to retrieve POST parameters from request. Getting None for the value.
I am trying to pass some params in a request body via post. This is what the client side code looks like:
const getCSRFToken = () => {
const cookies = document.cookie.split(";");
let csrfToken = cookies.find((ck) =>
ck.trim().startsWith("csrftoken=")
);
return decodeURIComponent(csrfToken.trim().substring(10));
};
/r/djangolearning
https://redd.it/1jm672l
iommi 7.12 released
The biggest new feature since last post is the introduction of `MainMenu`, a really nice system to declare your primary navigation AND manage access to views in the same place: https://docs.iommi.rocks/main_menu.html
* `Table` has a performance improvement that can go up to 20% for rendering the body contents
* Lots of fixes for the iommi admin
* And the usual cornucopia of small bug fixes
/r/django
https://redd.it/1jnexb2
Retto Social: Social network for modern web!
Hello friends, I'm Ekin. My journey started in 2019, and since then, I've been developing web applications with Python and Django while contributing to the free software community. Today, I want to introduce you to my latest and biggest project: Retto.
Retto is a social media platform built with a strong focus on anonymity and privacy. On Retto, you can share posts, follow discussions through groups, create forum threads on the community page, and even play mini-games (games will be added later). Although the platform is still in development, you can sign up now and be part of the growth of free software.
Our ultimate goal is to build a truly free social media platform, breaking away from the oppressive nature of big platforms like Instagram, Twitter, and more...
Platform: https://retto.social
GitHub Link: https://github.com/rettomedia/social
To contribute to Retto's development, you can reach out to me by posting in the Retto Help Center
/r/djangolearning
https://redd.it/1jnbd9e
I made airDrop2 with 3.11.3 and Flask.
What My Project Does:
iLocalShare is a simple, no-frills local file-sharing server built with Python 3.11.3 and Flask. It lets you share files between Windows and iOS devices using just a browser—no extra apps needed. It works in two modes: open access (no password) or secure (password-protected).
Target Audience:
This project is perfect for anyone who needs to quickly transfer files between their PC and iOS device without using Apple’s tools or dealing with clunky cloud services. It’s not meant for production environments, but it’s a great quick and dirty solution for personal use.
Comparison:
Unlike AirDrop, iLocalShare doesn't require any additional apps or device-specific software. It’s a lightweight solution that uses your local network, meaning it won’t rely on Apple’s ecosystem. Plus, it’s open-source, so you can tweak it as you like.
Check it out here!
/r/Python
https://redd.it/1jn7ohc
Django site for my two grandkids.
https://preview.redd.it/m9e0077zpkre1.png?width=4089&format=png&auto=webp&s=10a2753a81a56fe437bec972134bd65d7ba16876
/r/django
https://redd.it/1jmgbit
Help with Flask, Celery, Azure-Identity
Hello I am currently trying to setup an application that will authenticate users using Azure-Identity, then in a Celery Task I would like to make API calls to Azure using their bearer token.
This has taken me weeks of headaches and I have been so close so many times I just have not figured out how to correctly complete this.
/r/flask
https://redd.it/1jldagb
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:
1. Show & Tell: Share your current projects, completed works, or future ideas.
2. Discuss: Get feedback, find collaborators, or just chat about your project.
3. 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:
1. Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
2. Web Scraping: Built a script to scrape and analyze news articles. It's helped me understand media bias better.
3. 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! 🌟
/r/Python
https://redd.it/1jmzwh4
CSRF Protect not working in Flask
I have been trying to write a login page in Vue.JS and flask with CSRFProtect enabled, I can clearly see the X-CSRFToken header there. However, I am getting a response of that it is missing!
When I remove the CSRFProtect initialization, it works but with it I just the response it is missing, even though in the network tab I can see it being there
https://preview.redd.it/xyhl5mey6mre1.png?width=2015&format=png&auto=webp&s=67f7827a0ce7bf897c400b6cbe719c9e376f700c
https://preview.redd.it/t0oaqzrz6mre1.png?width=324&format=png&auto=webp&s=d24a6e40244e8c201ed0673df6a9f6db06c26415
https://preview.redd.it/jffl3ri17mre1.png?width=625&format=png&auto=webp&s=9268c5531387f4ba0ad5ec23976cee65c5658145
I even tried different names of the header with no luck
/r/flask
https://redd.it/1jmkacp
Dash plotly Deployment
Hi People. Im new to flask and my area of expertise is data analytics.Recently i had been asked to recreate a Power BI report in dash plotly and im almost done with it. Now i need to deploy the same for end users (approx 200 users will be using it). I just wanted to ask what are suitable deployment options for this. I want something budget friendly.
/r/flask
https://redd.it/1jmmp5q
Django Devs! Help Me Build OctopusDash – A Better Django Dashboard
Yo devs! I’m working on **OctopusDash**, a modern, lightweight Django admin panel alternative that actually looks good and makes your life easier. It’s built with **TailwindCSS** and has some cool features like **drag-and-drop M2M fields, custom actions, analytics, and better filtering.**
💡 **But here’s the deal:** It’s still in development, and I need some extra hands to make it stable and production-ready. If you’re into Django, open-source projects, or just want to build something awesome, let’s do this!
# 🚧 Current Status
* Still a work in progress – **expect bugs & API changes**
* Not ready for production yet, but great for testing
* Need help with **refining features, adding JWT authentication, and making it more solid**
# ✅ Cool Features So Far
* **Modern TailwindCSS UI** (finally, an admin panel that looks good 😅)
* **One-line model registration**
* **Drag & Drop M2M field management**
* **Advanced search & filtering**
* **Custom actions & pages**
* **Built-in analytics & widgets**
* **Better permissions & access control**
🚀 **What’s Coming Next?**
* **JWT authentication & API views**
* **More customization & performance tweaks**
# 📸 Sneak Peek
https://preview.redd.it/eeijgz33okre1.png?width=1920&format=png&auto=webp&s=1230270b5f475b7af64bd0e0780d502274771a75
# 👨💻 Want to Help?
* Check out the GitHub repo **(https://github.com/husseinnaeemsec/octopus-dash)**
* Test it out, break it, report issues, and suggest cool features
* Send PRs if you’re up for it!
Let’s build
/r/django
https://redd.it/1jmg7g8
Struggling with Django Deployment: WS, Celery, Docker, and Azure – Need Guidance!
Hey everyone,
I’m trying to deploy my Django backend, but this one is way more complex than what I’m used to. I’ve deployed DRF with a PostgreSQL DB and Redis cache on Azure Web App Service before, but this time, I’ve hit a lot of roadblocks.
Here’s the stack I’m dealing with:
* **Django + DRF**
* **Django Channels (WebSockets)** – I initially set up WS, then stumbled upon WSS, and things got messy. Eventually, it just didn’t work.
* **Celery + Redis** – Handling background tasks like email sending.
* **Celery Beat** – For scheduling tasks.
* **Dockerized app** – Everything is containerized.
I attempted deploying on **Azure Kubernetes Service (AKS)**, and it worked—*but* I did everything manually (manifests, deployments, etc.), and I *need* a proper CI/CD pipeline. Plus, AKS is **costly**, and I’m wondering if there’s a better approach.
So my main questions are:
1. **What’s the best way to deploy this setup on Azure with a CI/CD pipeline?**
2. **Should I stick with AKS, or is there a more cost-effective alternative that supports WS & Celery?**
3. **Any recommendations on handling WSS properly in production?**
Would love to hear from anyone who’s deployed something similar! Any guidance or resources would be super helpful.
Thanks in advance!
/r/djangolearning
https://redd.it/1jipyxu
Wireup 1.0 Released - Performant, concise and type-safe Dependency Injection for Modern Python 🚀
Hey r/Python! I wanted to share **Wireup** a dependency injection library that just hit 1.0.
What is it: A. After working with Python, I found existing solutions either too complex or having too much boilerplate. Wireup aims to address that.
# Why Wireup?
* 🔍 **Clean and intuitive syntax** \- Built with modern Python typing in mind
* 🎯 **Early error detection** \- Catches configuration issues at startup, not runtime
* 🔄 **Flexible lifetimes** \- Singleton, scoped, and transient services
* ⚡ **Async support** \- First-class async/await and generator support
* 🔌 **Framework integrations** \- Works with FastAPI, Django, and Flask out of the box
* 🧪 **Testing-friendly** \- No monkey patching, easy dependency substitution
* 🚀 **Fast** \- DI should not be the bottleneck in your application but it doesn't have to be slow either. Wireup outperforms Fastapi Depends by about 55% and Dependency Injector by about 35%. See [Benchmark code](https://github.com/maldoinc/wireup/tree/benchmarks/benchmarks).
# Features
# ✨ Simple & Type-Safe DI
Inject services and configuration using a clean and intuitive syntax.
@service
class Database:
pass
@service
class UserService:
def __init__(self, db: Database) ->
/r/Python
https://redd.it/1jimec9
Django allauth social auth and JWT
Hi All, Quick question, considering my front end in react only uses JWT to communicate with the backend DRF, how do I get the JWT token that requires a username/pass when I do social login with Google for example? Thanks! G. P.S Using allauth in headless version.
/r/django
https://redd.it/1jiay4j