pythondaily | Education

Telegram-канал pythondaily - Python Daily

1102

Daily Python News Question, Tips and Tricks, Best Practices on Python Programming Language Find more reddit channels over at @r_channels

Subscribe to a channel

Python Daily

Static site to Django templates

So I am trying to learn more templating by turning a static site into a Django site with generic views. Is this a good approach or should I start from scratch? I am doing it because I am trying to learn about templating and though it would be cool to see how easy it would be to turn this static site into something I can use Django models and DB with.

/r/djangolearning
https://redd.it/1jpcdbp

Читать полностью…

Python Daily

Django e-commerce hosting

Hi all!

Context:
I created my first e-commerce with Django, right now I am hosting it with render ( free tier) and the project uses SQLite. The problem right now is that the free tier does not hold the project on all the time, after 10-15 minutes of inactivity it goes idle and takes around 1 minute to become active again, when it becomes active again all the new products that were added through admin panel (while the website was live ) disappear , as they were never there and I understand the reason.

Questions : if I upgrade to the standard tier ( the one that cost 7-9euro /month ) would that solve the problem with the new added products?( as the app won’t have downtime)
Do I have to purchase from render the postgreSQL as well? ( but then it becomes a bit costly with the standard version as well ( total of 14 euro or something like this)

Extra: I am using Cloudinary for the images uploaded via admin panel.


Or if someone knows better cost-eficient option for hosting or some workarounds that may work I would very much appreciate!

Thank you!



/r/django
https://redd.it/1jpkuo4

Читать полностью…

Python Daily

migrate many-to-one models

I tried to create a many-to-one relationship in my model, but when I migrated the model, I encountered an error.

https://preview.redd.it/zs59lv8htdse1.png?width=1010&format=png&auto=webp&s=18f11cf49d6515cd48f624648aa81b3b69db7354

i create two class in the names category and product and they are very simple but i don't know that should use specific properties for ForeignKey fild or no . Does anyone know how to properly define models with a ForeignKey? Also, if I want to delete some migration files, can I remove them manually, or must I use the terminal?"

/r/django
https://redd.it/1jpjoay

Читать полностью…

Python Daily

Looking for a Pageant Tabulation System – Buy, Rent, or Subscribe

Hello,
We’re looking for a reliable tabulation system specifically for pageants. Our company is open to subscribing, buying, or renting a system that fits our needs. If you have a working solution, please reach out so we can review its features and discuss potential opportunities.

Looking forward to your recommendations!

Thanks.

/r/django
https://redd.it/1jpi41a

Читать полностью…

Python Daily

Breaking news: Guido van Rossum back as Python's Benevolent Dictator for Life (BDFL)!

If you don't trust me, see for yourself here: https://www.youtube.com/watch?v=wgxBHuUOmjA 😱

/r/Python
https://redd.it/1jowzs2

Читать полностью…

Python Daily

MOT viewer, early release for kicking it!

It started as a mad idea when my son was looking for his first car. The UK GOV site is ok but it's hard to see the underlying figures so I decided why not make a prettier site?

Certainly not original, nor particularly pretty but it's all mine!

[https://cargeezer.co.uk/](https://cargeezer.co.uk/)

SSL self hosted, using Django, pico-css and no JavaScript as far as I can remember.

Soon going to extend the interface using HTMX so you can filter stuff etc etc and maybe enjoy it a simpler way, currently pico-css has been most excellent to work with.

The feedback page needs a captcha, nothing appears unless vetted by me anyway.

Not sure what else to say other than, any questions?

asgiref==3.8.1
certifi==2024.12.14
charset-normalizer==3.4.1
Django==5.1.4
django-htmx==1.21.0
idna==3.10
importlib_metadata==8.5.0
pygal==3.0.5
requests==2.32.3
ruff==0.8.6
sqlparse==0.5.3
urllib3==2.3.0
zipp==3.21.0

/r/django
https://redd.it/1jovqf2

Читать полностью…

Python Daily

Speeding up api request.

Hi everyone.

For the last 8 months or so (lost track abit!) I’ve been building a meal planning platform, but what I haven’t been able to speed up is the response of my backends api

The stack is nuxt3, drf, Postgres, nginx in a docker compose digitaloceon droplet. I have tampered with putting the highest of specs on the droplet and it doesn’t have any notable effects

The part I’m struggling with is when you browse recipes, they take ages (2-4seconds). I’m loading 12 a time, with a fair bit of information being sent but limited as much as I can. It’s only sending thumbnail size images condensed. I have redis but as each request is quite unique I’m unsure how to use it here.

If anyone’s experienced this it would be fantastic to hear your experiences!

The link to the page is www.mealmatcher.co.uk/recipes

Really hope this doesn’t come across as shilling

Thank you!

/r/django
https://redd.it/1jon7zr

Читать полностью…

Python Daily

[Code Review Request] Capstone Project - Streamlit App for Box Office Prediction

Hey everyone!
I'm working on my master’s capstone project and need a code review by Wednesday as part of my requirements. My project is a Streamlit-based data science app that predicts box office revenue using machine learning. It includes:
    •    Role-based access control (executive, finance, data science team)
    •    Data upload, cleaning, and feature engineering
    •    Model training, evaluation, and predictions
    •    Report generation & Google Drive integration
I’d really appreciate any feedback on bugs, coding best practices, or optimizations. You can find my code here:
https://github.com/ashcris12/streamlit_project/tree/main
If you have time, even a quick review would be super helpful! Thanks in advance!

/r/Python
https://redd.it/1jojd8e

Читать полностью…

Python Daily

Tuesday Daily Thread: Advanced questions

# Weekly Wednesday Thread: Advanced Questions 🐍

Dive deep into Python with our Advanced Questions thread! This space is reserved for questions about more advanced Python topics, frameworks, and best practices.

## How it Works:

1. **Ask Away**: Post your advanced Python questions here.
2. **Expert Insights**: Get answers from experienced developers.
3. **Resource Pool**: Share or discover tutorials, articles, and tips.

## Guidelines:

* This thread is for **advanced questions only**. Beginner questions are welcome in our [Daily Beginner Thread](#daily-beginner-thread-link) every Thursday.
* Questions that are not advanced may be removed and redirected to the appropriate thread.

## Recommended Resources:

* If you don't receive a response, consider exploring r/LearnPython or join the [Python Discord Server](https://discord.gg/python) for quicker assistance.

## Example Questions:

1. **How can you implement a custom memory allocator in Python?**
2. **What are the best practices for optimizing Cython code for heavy numerical computations?**
3. **How do you set up a multi-threaded architecture using Python's Global Interpreter Lock (GIL)?**
4. **Can you explain the intricacies of metaclasses and how they influence object-oriented design in Python?**
5. **How would you go about implementing a distributed task queue using Celery and RabbitMQ?**
6. **What are some advanced use-cases for Python's decorators?**
7. **How can you achieve real-time data streaming in Python with WebSockets?**
8. **What are the

/r/Python
https://redd.it/1joi4lc

Читать полностью…

Python Daily

Wi-Fi Controlled Robot Using Python

* **What My Project Does**

I've built a robot that can be controlled via Wifi and has a camera feed so you can see where you are going. The big idea is to have this autominusly controlled by a computer that can use computer vision to analyse the camera feed, so that it can retrieve the trash cans.

This fist iteration is just to get it controlled over WiFi. The robot has Raspberry Pi Zero on it which handles the camera feed and exposes it via a web server and a Raspberry Pi Pico which has a webserver and can contol the servo motors. There is a basic API on the Pico to allow for commands to be sent to it.

I have another Pi with a Python simple server which displays a page which combines the camera feed and the controls of the robot.

I realise I could have done this all on one Pi!

Video : [https://youtu.be/pU6xzsQAeKs](https://youtu.be/pU6xzsQAeKs)

Code: [https://github.com/btb331/binbot](https://github.com/btb331/binbot)

* **Target Audience**

100% a toy project

* **Comparison** 

There's quiet a few of these projects around but thought I'd add my custom spin on them

/r/Python
https://redd.it/1jobaz3

Читать полностью…

Python Daily

Flask not recognised as name of cmdlet

/r/flask
https://redd.it/1jnigyq

Читать полностью…

Python Daily

I built xlwings Lite as an alternative to Python in Excel

Hi all! I've previously written about why I wasn't a big fan of Microsoft's "Python in Excel" solution for using Python with Excel, see the [Reddit discussion](https://www.reddit.com/r/Python/comments/1de2hkw/my_thoughts_on_python_in_excel). Instead of just complaining, I have now published the "xlwings Lite" add-in, which you can install for free for both personal and commercial use via [Excel's add-in store](https://appsource.microsoft.com/en-us/product/office/wa200008175?tab=overview). I have made a [video walkthrough](https://youtu.be/amCCEbJ39W8?si=3vmVEZUr6RA0-IgS), or you can check out the [documentation](https://lite.xlwings.org/).

xlwings Lite allows analysts, engineers, and other advanced Excel users to program their custom functions ("UDFs") and automation scripts ("macros") in Python instead of VBA. Unlike the classic [open-source xlwings](https://github.com/xlwings/xlwings), it does not require a local Python installation and stores the Python code inside Excel for easy distribution. So the only requirement is to have the xlwings Lite add-in installed.

So what are the main differences from Microsoft's Python in Excel (PiE) solution?

* PiE runs in the cloud, xlwings Lite runs locally (via Pyodide/WebAssembly), respecting your privacy
* PiE has no access to the excel object model, xlwings Lite does have access, allowing you to insert new sheets, format data as an Excel table, set the color of a cell, etc.
* PiE turns Excel cells into Jupyter notebook cells and introduces a left to right and top to bottom

/r/Python
https://redd.it/1jnzepx

Читать полностью…

Python Daily

I have exhausted all my options to deploy my Django App on AWS EB, someone please chip in for help

I have been trying to deploy my Django app for a week now. I tried railway -> was getting errors there. Then moved to AWS. Now i am trying to deploy using EB. I have already set up my RDS. But I am unable to setup EB. I am following w3 tutorial to deploy.

I would really appreciate if someone could connect and help me with this.

/r/django
https://redd.it/1jnywkx

Читать полностью…

Python Daily

Multiprocessing & Threading guide in python 🚀

Hey, I have made a video which explains about multiprocessing and threading in python and shows a real world practical example, and the difference between using multiprocessing and threading and not.

The link is:
https://youtu.be/BfwQs1sEW7I?si=mSOMIEacUKmpgaQO

This video is not a low level os concurrency and parallelism course but more like a showcase for how concurrency and parallelism can be implemented in python, with straight to point examples and benchmarks to measure the performance differences 📊

/r/Python
https://redd.it/1jnrei1

Читать полностью…

Python Daily

Building a car service website

Hey everyone,

I’m building a Django app for a car booking service, and I’m trying to design a clean reservation + payment flow that’s flexible and user-friendly.

What I have:
• A Reservation model that holds all key info (vehicle, route, customer, pricing, status, etc.)
• A Rate model that links a vehicle and route (each with one-way and round-trip prices)
• When a user browses the site, they see route/vehicle combinations with prices

What I want to build:
• When a user clicks “Book Now” next to a specific rate (say, SUV from Airport to Hotel):
• They’re taken to a pre-filled reservation form with that vehicle and rate
• They fill in customer info, passenger count, special requests, flight info, etc.
• After submitting, they choose to either:
• Pay now via Stripe
• Save their card and pay later

I’m not using Stripe Checkout directly. Everything is tied to the Reservation object first, and then payment is triggered.

What I’m stuck on:
• What’s the best pattern for pre-filling the reservation form with a specific rate? I did a request.GET.get(‘vehicle_type’) and same for route and rate to get this information but i feel theres a better way

Is there a good way to cleanly separate form logic from payment logic without overcomplicating views?
How should I handle the “save card for later”

/r/django
https://redd.it/1jnw1t2

Читать полностью…

Python Daily

Django security releases issued: 5.1.8 and 5.0.14
https://www.djangoproject.com/weblog/2025/apr/02/security-releases/

/r/django
https://redd.it/1jpmqns

Читать полностью…

Python Daily

SaaS App created with Django

Hi all, I built and launched this SaaS app https://sweepzyapp.com/ with Django. It's still in a commercial market fit stage of development. It would be great to get some feedback from the Django experts but also welcome any questions from newer Django developers like myself?

/r/django
https://redd.it/1jpl1qz

Читать полностью…

Python Daily

Created my first COPYWRITING TOOL software with the help of Flask

Hey everyone,


A project I've been working on for the past 7 months is the following: Geniusgate.ai V1

It's an AI-powered copywriting tool, and it's been something I've been working on for a while.

I'd figure it would be pretty cool to show everyone here as it's my first SaaS.

Honestly, as I've made it temporarily free for 7 days. If you do decide to try it out, please let me know what you do and do not like, as I am trying to get as much feedback as possible. I'll be making adjustments to the first version within a few months as I gather feedback.

https://preview.redd.it/9uvswc6hacse1.jpg?width=1200&format=pjpg&auto=webp&s=b3f1e80aca15ca0f36bd1b7ce9b523d01cd3396d



We made this with the following:


React, Next.js, and Flask.


One of the biggest obstacles was that I had to differentiate it from regular GPT, as you may know, ChatGPT can do some form of copywriting. To overcome that problem, I had this tool run on GPT, but it was trained by countless professional copywriters with multiple successful high-converting copy input examples.

The other issue was that initially, we had the website designed with React, such as the landing page, and each blog post was manually added.

We had

/r/flask
https://redd.it/1jpf4ox

Читать полностью…

Python Daily

Heroku Procfile/Dynos Issue

Hello. Before anything else, I'd like to emphasize that I am very new and very ignorant to coding, so please don't be TOO hard on me.

I'm having a problem with my Procfile in connecting it to Heroku. When I try to run my app, I keep getting an error message saying that heroku can't read my Procfile.

The code that I currently have in my Procfile is web: gunicorn app:app - yes, gunicorn is installed, yes it's in the requirements and no it's not saved a a .txt.


the error code that I keep getting is heroku ps:scale web=1

» Warning: heroku update available from 8.7.1 to 10.4.0.

Scaling dynos... !

! Couldn't find that process type (web).


The contents of my-app-folder is

app,py - generate_report.py - requirements.txt - .gitignore - .env

there is also a venv folder, static, src, data and reports folder saved within the root directory.

ChatGPT isn't being very helpful so I'm coming to the humans instead. I promise I'm not stupid (I never studied coding and I know nothing). I appreciate your help, patience and kindness in advance.

/r/flask
https://redd.it/1jpd05v

Читать полностью…

Python Daily

Trending Django apps in March
https://django.wtf/trending/?trending=30

/r/django
https://redd.it/1jofa0k

Читать полностью…

Python Daily

Trying a Spring Boot style project structure in Django

I've been working with Django for the last 3–4 years. One thing I’ve always struggled with is keeping things clean and modular as the project grows.

Django’s flexibility is great, but I’ve often found myself mixing business logic in views, duplicating structure across apps, and losing track of where certain responsibilities live. So I’ve been trying a new approach lately borrowing ideas from Spring Boot (Java), which I used briefly and really liked for its structure.

What I tried:
Created a /apps/ directory where each app is treated as a self-contained module


Split responsibilities into:

controllers/ → class-based views

services/ → business logic

dtos/ → Pydantic v2 for request/response validation


Added a few management commands to generate apps + CRUD automatically:


python manage.py generateapp blog
python
manage.py generatecrud blog Post


The goal is to keep things clean and explicit, especially for larger projects or when working with a team.

Here is the Repo Link 🖇️

It’s not trying to be a full framework, just a structured way to get up and running faster with good practices baked in. Eventual goal is to teach Django in meaningful way

Would love your thoughts on:
Is this too much structure for Django?

Does separating logic this way actually help in the long run?

What would you improve if

/r/django
https://redd.it/1jor6v2

Читать полностью…

Python Daily

docdog: open source generating docs using claude

Hi everyone, gonna just go straight to the point.

What my project does: Creates docs for you by chunking then summarising it. Remember to set up your own api key and put it in a .env file.

Target audience: anyone

Why did I do it? sometimes i write all my code and then i forget what i was writing a day ago. and then i have to relook at my codebase all over again ..

Comparison: claude itself?

How to use Docdog: Just run pip install docdog then run docdog

Future enhancements: May add new features like more models etc.

Note: This is NOT a tool to replace writing docs. Ultimately you should still write your own docs but this will help you to save some time.

Link: https://github.com/duriantaco/docdog

For any bug or feature please raise an issue in my github page. Please leave a star if you found it useful. If you didn't find it useful, having a bad day, had a breakup or whatever, you can use this post as a punching bag. Thats all. Thanks

/r/Python
https://redd.it/1joq5x3

Читать полностью…

Python Daily

Flask API Tutorial: Build, Document, and Secure a REST API
https://zuplo.com/blog/2025/03/29/flask-api-tutorial

/r/flask
https://redd.it/1jod40k

Читать полностью…

Python Daily

Django Project

Hello guys, I am a beginner in Django web development. Previously, I completed Django projects with help, but now I want to create them by myself.

I just started a basic Django project with a PostgreSQL connection. Now I have to design the database, and I am currently stuck on whether to create a simple design and expand it later or to create an advanced design of the database from the start.

Please give suggestions for further steps in Django web development.

/r/djangolearning
https://redd.it/1jo9nq9

Читать полностью…

Python Daily

PEP 751 (a standardized lockfile for Python) is accepted!

https://peps.python.org/pep-0751/
https://discuss.python.org/t/pep-751-one-last-time/77293/150

After multiple years of work (and many hundreds of posts on the Python discuss forum), the proposal to add a standard for a lockfile format has been accepted!

Maintainers for pretty much all of the packaging workflow tools were involved in the discussions and as far as I can tell, they are all planning on adding support for the format as either their primary format (replacing things like poetry.lock or uv.lock) or at least as a supported export format.

This should allow a much nicer deployment experience than relying on a variety of requirements.txt files.

/r/Python
https://redd.it/1jo8gvx

Читать полностью…

Python Daily

django-components v0.135 - Defaults, Vue-like class and style attributes, and extensions

Hey, I haven't shared updates on django-components in some time (last was on v0.122). Lots of new things! Some highlights:

\- Extensions \- Hook into component lifecycle, pre-/post-process components, add custom URLs, or custom commands.

\- Performance improvements (see 0.128 and 0.126) - 5x perf gain with Rust. Components can now be infinitely nested. Also, we now actively track performance of each release, see here. The aim is to get it to at least as fast as vanilla Django templates.

\- Add defaults to your components.

\- The {% html\_attrs %} tag allows you to manage class and style attributes with same granularity as seen in Vue.

\- Tests for your components are now easy to write with \``@djc_test`\` decorator. It ensures that all the internal state is reset after the test is done.

\- More debugging tools, such as to highlight components and / or slots in the UI

\- When using template tags from django-components, like `{% component %}`, our tags have extra nicities, such as allowing you to define literal lists and dictionaries when writing an input for a component. You too can write template tags with these extra features, with \``@template_tag`\` decorator, or by subclassing from \``BaseNode`\`

/r/django
https://redd.it/1jo52ef

Читать полностью…

Python Daily

D Monthly Who's Hiring and Who wants to be Hired?

For Job Postings please use this template

>Hiring: [Location\], Salary:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] and [Brief overview, what you're looking for\]

For Those looking for jobs please use this template

>Want to be Hired: [Location\], Salary Expectation:[\], [Remote | Relocation\], [Full Time | Contract | Part Time\] Resume: [Link to resume\] and [Brief overview, what you're looking for\]

​

Please remember that this community is geared towards those with experience.

/r/MachineLearning
https://redd.it/1jnt4sp

Читать полностью…

Python Daily

Remote control with terminal client

Hi, created Python packages indipydriver and indipyterm which provide classes to interface with your own Python code controlling instruments, GPIO pins etc., and serves this data on a port. Indipyterm creates a terminal client which can then view and control the instrument, useful for headless raspberry pis or similar devices. Available on Pypi, and more info at

[readthedocs](https://indipydriver.readthedocs.io) and source at [github](https://github.com/bernie-skipole/indipydriver)

Terminal screenshot at

https://indipydriver.readthedocs.io/en/latest/_images/image2.png



/r/Python
https://redd.it/1jnysrb

Читать полностью…

Python Daily

PyAwaitable 2.0.0 Released - Call Asynchronous Code From An Extension Module

Hi everyone! I've released PyAwaitable with a major version bump to 2. I completely redesigned how it's distributed, so now it's solely a build time dependency; PyAwaitable doesn't have to be installed at runtime in your C extensions, making it extremely portable.

## What My Project Does

PyAwaitable is a library for using async/await with extension modules. Python's C API doesn't provide this by default, so PyAwaitable is pretty much the next best thing!

Anyways, in the past, basically all asynchronous functions have had to be implemented in pure-Python, or use some transpiler like Cython to generate a coroutine object at build time. In general, you can't just write a C function that can be used with await at a Python level.

PyAwaitable lets you break that barrier; C extensions, without any additional transpilation step, can use PyAwaitable to very easily use async/await natively.

## Target audience

I'm targetting anyone who develops C extensions, or anyone who maintains transpilers for C extensions looking to add/improve asynchronous support (for example, mypyc).

## Comparison

There basically isn't any other library like PyAwaitable that I know of. If you look up anything along the lines of "Using async in Python's C API," you get led to some of my DPO threads

/r/Python
https://redd.it/1jnl2e8

Читать полностью…

Python Daily

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 description 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

**Description**: 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

**Description**: 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

**Description**: Create a script 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/1jnqc6n

Читать полностью…
Subscribe to a channel