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

Deploy Django on Render

Ever Wanted to Deploy Django to Render?

The tutorial below demonstrates how you can deploy Django to render for free and also have a PostgreSQL database at neon and store your media assets at cloudinary, all for free.

Check it out - simply legendary!

https://youtu.be/VUFg\_ov6b\_4?si=DeOSnXOFmTv6SkfK

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

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

Python Daily

Anyone successfully hosted on Plannethoster?

Trying to host my first Django/HTML project on Plannethoster as I'm with them for other projects, so thought how hard can it be 😵‍💫

Now I've read though the docs on the site about python and Django project, but I seem to be missing something or they have changed something 🤷 an their support support are not very helpful with it.

From what I've read you need to create the python app and navigate to via terminal, then in stall Django and a Django app, or instead of the Django app you upload you own.

But there's nothing on does it need to be in the app folder you created for the python app before, or can it be in a subfolder? Do I have to upload from their file manager or can I do it from git?

I'm sure there's more questions after this as it seems very convoluted in the setting up.

Thanks for your help and your time, if you have any knowledge on this.

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

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

Python Daily

Project RCPTelegram – A Telegram Bot to Remotely Control Remotely your PC

---

Project RCPTelegram – A Telegram Bot to Remotely Control Your PC (Webcam, Screen, Keylogger, Pranks & More)


---

🔧 What My Project Does

RCPTelegram is a Telegram bot that lets you remotely control your PC via chat commands. Some of the features include:

📸 Streaming your webcam and screen (via ngrok tunnels)

🖼️ Taking screenshots and webcam photos

⌨️ Keylogger

📶 Getting saved Wi-Fi passwords

🌍 Grabbing your public IP

🔊 Setting volume and managing output devices

🎭 Pranks and other fun tools

🔩 Many system automation commands (power, sleep, lock, etc.)


All features are accessible from a single Telegram chat — no GUI needed.


---

🎯 Target Audience

This is not meant for production — it's a toy/educational project designed to explore remote PC control using Python and Telegram. It’s great for learning purposes, automation experiments, or building your own personal remote assistant.


---

⚖️ Comparison to Existing Tools

Unlike commercial tools like TeamViewer or AnyDesk:

🟢 This works headlessly via Telegram

🛠️ Fully scriptable and open-source

🔌 Uses ngrok for quick and easy tunneling

🎉 Has playful features (like pranks) you won’t find in standard tools

🧩 You can modify and extend it however you like



---

🗂️ Links

Bot Code: https://github.com/RiccardoZappitelli/RCPTelegram

GUI Builder: https://github.com/RiccardoZappitelli/RCPTMaker



---

Let me know what features you’d add or how you'd improve it. I’m also planning to split the code into multiple

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

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

Python Daily

Django CSS Production not loading

Refused to apply style from because its MIME type ('text/html') is not a supported stylesheet MIME

settings.py

BASEDIR = Path(file).resolve().parent.parent

STATIC
URL = '/static/'
STATICROOT = BASEDIR / 'staticfiles'
STATICFILESDIRS = [
    BASE
DIR / 'myapp' / 'static',
]

base.html

<link rel="stylesheet" href="{% static 'styles.css' %}" />

I also am running

python manage.py collectstatic --noinput

So when I am in production its picking up nothing in my static folder I'm so confused help please!

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

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

Python Daily

Globally Disable Foreign Keys in Django
https://www.pixelstech.net/article/1749100094-globally-disable-foreign-keys-in-django

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

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

Python Daily

Python on tablet?

I have damaged my laptops hard disk and difficult to operate it in a remote area as there are no repair shops nearby. But i need to learn programming and dsa in 2 months. Can I code on my laptop? Any online softwares for it?

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

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

Python Daily

How can I crat a heartbeat type thread in Flask-MQTT

EDIT: crat s/b create

I have a working flask-MQQT app. But I want it to have a background thread always running that can check and react to outside events, such as broker on other machine is disconnected or a GPIO pin is high/low on the host Raspberry Pi.

I just want this thread to work full time and have it's own sleep(n) step. i would like it to be able to call functions in he main program.

Is this possible? Or..... Any suggestions?

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

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

Python Daily

Topographic Map to 3D Model Converter

What my project does

Takes an image of a topographic map and converts it into a .obj model.

Target audience
This is a pretty simple project with a lot of room to grow, so I'd say this is more of a beginner project seeing as how little time it took to produce.

Comparison I created this project because I couldn't really find anything else like it, so I'm not sure there is another project that does the same thing (at least, not one that I have found yet).

I created this for my Social Studies class, where I needed to have a 3D model of Israel and the Gaza strip. I plan on reusing this for future assignments as well.


However, it is kind of unfinished. As of posting this, any text in the map will be flipped on the final model, I don't have a way to upload the model to SketchFab (which is what you need in order to embed a 3D model viewer on a website), and a few other quality of life things that I'd like to implement.

But hey, I thought it turned out decently, so here is the repo:

https://github.com/dastarruer/terrain-obj

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

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

Python Daily

Closing the gap: strict CSP in the Django world | Wagtail CMS
https://wagtail.org/blog/closing-the-gap-strict-csp-compatibility/

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

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

Python Daily

A simple file-sharing app built in Python with GUI, host discovery, drag-and-drop.

Hi everyone! 👋

This is a Python-based file sharing app I built as a weekend project.

**What My Project Does**

* Simple GUI for sending and receiving files over a local network
* Sender side:
* Auto-host discovery (or manual IP input)
* Transfer status, drag-and-drop file support, and file integrity check using hashes
* Receiver side:
* Set a listening port and destination folder to receive files
* Supports multiple file transfers, works across machines (even VMs with some tweaks)

**Target Audience**

This is mainly a **learning-focused, hobby project** and is ideal for:

* Beginners learning networking with Python
* People who want to understand sockets, GUI integration, and file transfers

It's not meant for production, but the logic is clean and it’s a great foundation to build on.

**Comparison**

There are plenty of file transfer tools like Snapdrop, LAN Share, and FTP servers. This app differs by:

* Being **pure Python**, no setup or third-party dependencies
* Teaching-oriented — **great for learning sockets, GUIs, and local networking**

Built using **socket**, **tkinter**, and standard Python libraries. Some parts were tricky (like VM discovery), but I learned a lot along the way. Built this mostly using GitHub Copilot + debugging manually - had a lot of fun in doing so.

🔗

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

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

Python Daily

Why Django?

No seriously (purely an educational post since idrk).

If you want to do enterprise -> spring boot

If you want to microservice -> Golang backend frameworks

If you want to do prototypes -> Fastapi

If you want to do a startup level scheme -> Supabase auth or wtv + flask

So why django?

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

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

Python Daily

HttpOnly cookies in Django and React

Has anyone implemented JWT authentication using HttpOnly cookies in Django and React ? Are there any resources or videos that can help.

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

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

Python Daily

Want to Speed Up My Web Dev Process Without Losing the Learning

I’ve been developing apps with Django for about a year now. I’m mostly self-taught and would say I’m pretty decent with it, especially on the backend. I usually rely on AI or online templates for the frontend since I have very little experience with CSS.

Lately, I’ve noticed I’m really slow when building apps. For example, there’s this one app I’ve been working on since February. I feel tired and burned out, but I can’t drop it because someone is interested in it. The problem is—it’s holding me hostage. I’ve got other ideas and projects I want to start, but I feel stuck.

I want to speed up my development process without sacrificing learning. I’m aiming to really master Django deeply—not just use it, but understand how it works under the hood.

So how do you balance learning with building efficiently?

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

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

Python Daily

Built with Django
https://builtwithdjango.com/projects/

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

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

Python Daily

Recent Noteworthy Package Releases

In the last 7 days, there were these big upgrades.

**scikit-learn 1.7.0**

**delta-spark 4.0.0**

**compressed-tensors v0.10.0**

**langfuse 3.0.0**

**crewai 0.126.0**

**LanceDB v0.23.0**

**opentelemetry-sdk 1.34.0**

**wandb v0.20.0**

**deepspeed v0.17.0**

**py7zr 1.0.0**

**ffmpy 0.6.0**

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

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

Python Daily

🎬 MovieHit.online - A Django-powered movie discovery web app I built

https://redd.it/1l6j2rs
@pythondaily

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

Python Daily

Django tip Component-Based Design With Django Cotton

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

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

Python Daily

Help Django ModuleNotFoundError when deploying to Render

I'm struggling with a deployment issue on Render with my Django project.I'm struggling with a deployment issue on Render with my Django project. When deploying, I get
ModuleNotFoundError: No module named 'accounts'
Project Structure:
portfolio_app/
└── django_portfolio_app/
├── portfolio_app/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── accounts/
├── projects/
├── resume/
├── forum/
├── theme/
│ └── static/
└── manage.py
I did specify in the render deployment settings that django_portfolio_app is the root directory. No idea where to go from now on, as I'm stuck on this error since yesterday. Thanks for any advice and feedback

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

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

Python Daily

Audited SSS (shamir shared secret) code?

I’m currently looking for audited implementations of Shamir’s Secret Sharing (SSS). I recall coming across a dual-audited Java library on GitHub some time ago, but unfortunately, I can’t seem to locate it again.

Are there any audited Python implementations of SSS available? I've searched extensively but haven't been able to find any.

Can anyone found some? I'm thinking about: https://github.com/konidev20/pyshamir but I don't know.

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

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

Python Daily

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/1l5yvhd

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

Python Daily

R Apple Research: The Illusion of Thinking: Understanding the Strengths and Limitations of Reasoning Models via the Lens of Problem Complexity

Abstract:

>Recent generations of frontier language models have introduced Large Reasoning Models (LRMs) that generate detailed thinking processes before providing answers. While these models demonstrate improved performance on reasoning benchmarks, their fundamental capabilities, scal ing properties, and limitations remain insufficiently understood. Current evaluations primarily fo cus on established mathematical and coding benchmarks, emphasizing final answer accuracy. How ever, this evaluation paradigm often suffers from data contamination and does not provide insights into the reasoning traces’ structure and quality. In this work, we systematically investigate these gaps with the help of controllable puzzle environments that allow precise manipulation of composi tional complexity while maintaining consistent logical structures. This setup enables the analysis of not only final answers but also the internal reasoning traces, offering insights into how LRMs “think”. Through extensive experimentation across diverse puzzles, we show that frontier LRMs face a complete accuracy collapse beyond certain complexities. Moreover, they exhibit a counter intuitive scaling limit: their reasoning effort increases with problem complexity up to a point, then declines despite having an adequate token budget. By comparing LRMs with their standard LLM counterparts under equivalent inference compute, we identify three performance regimes: (1) low complexity tasks where standard models surprisingly outperform LRMs,

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

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

Python Daily

How to efficiently combine Redis-based recommendation scoring with Django QuerySet for paginated feeds?

I'm building a marketplace app and trying to implement a personalized recommendation feed. I have a hybrid architecture question about the best way to handle this:

Current Setup:
- Django backend with PostgreSQL for product data
- Redis for user preferences, actions, and computed recommendation scores
- Celery for background recommendation generation

The Challenge:
I need to serve a paginated feed where the order is determined by Redis-based scoring (user preferences, trending items, etc), but the actual product data comes from Django models.

My Current Approach:
1. Celery task generates ordered list of product IDs based on Redis metrics
2. Cache this ordered list in Redis (e.g., [123, 456, 789, ...])
3. For each page request, slice the cached ID list
4. Use Django's Case/When to maintain the Redis-determined order:


Questions:
1. Is using Case/When with enumerate() the most efficient way to preserve Redis-determined order in Django?
2. Should I be caching the actual product data in Redis instead of just IDs?
3. Any better patterns for this Redis scoring + Django data combination?
4. How do you handle the "cold start" problem when recommendations aren't ready yet?

The feed needs to handle —10k products with real-time scoring updates. Any architecture advice or alternative approaches would be greatly appreciated!

Tech Stack: Django 4.2, Redis, Celery, PostgreSQL, DRF


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

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

Python Daily

Pydantic / Celery Seamless Integration

I've been looking for existing pydantic - celery integrations and found some that aren't seamless so I built on top of them and turned them into a 1 line integration.

[https://github.com/jwnwilson/celery\_pydantic](https://github.com/jwnwilson/celery_pydantic)

**What My Project Does**

* Allow you to use pydantic objects as celery task arguments
* Allow you to return pydantic objecst from celery tasks

**Target Audience**

* Anyone who wants to use pydantic with celery.

**Comparison**

* [This blog post](https://benninger.ca/posts/celery-serializer-pydantic/) is the majority of the code above, but it requires registering each model manually, which I didn't want to do.
* [Celery’s official Pydantic integration](https://docs.celeryq.dev/en/v5.5.2/userguide/tasks.html?ref=blog.dosu.dev#argument-validation-with-pydantic) only accepts plain dicts in arguments, not pydantic models. It also only returns dicts.

You can also steal this file directly if you prefer:
[https://github.com/jwnwilson/celery\_pydantic/blob/main/celery\_pydantic/serializer.py](https://github.com/jwnwilson/celery_pydantic/blob/main/celery_pydantic/serializer.py)

There are some performance improvements that can be made with better json parsers so keep that in mind if you want to use this for larger projects. Would love feedback, hope it's helpful.

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

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

Python Daily

Am I dumb? Why does Flask just refuse to work?

https://preview.redd.it/obujwa5y8f5f1.png?width=387&amp;format=png&amp;auto=webp&amp;s=b859848ca12288d53f574c0fa9810ed474093a36

https://preview.redd.it/rcbu2df29f5f1.png?width=645&amp;format=png&amp;auto=webp&amp;s=015e5cd5b4d548e2ec6517207440ab14c3ceb6d5

https://preview.redd.it/u3fulu8k9f5f1.png?width=751&amp;format=png&amp;auto=webp&amp;s=0c492372a70f2ef7bd9ffb7de7c13edba72aa643

https://preview.redd.it/gei7k73m9f5f1.png?width=652&amp;format=png&amp;auto=webp&amp;s=94ec9027991c72ca0c8bb2144e78b34a173dd2f8

https://preview.redd.it/nwzgds3p9f5f1.png?width=610&amp;format=png&amp;auto=webp&amp;s=6328322de11734fdfeef5f43d96bb1c3319ff124

https://preview.redd.it/7uxhip5x9f5f1.png?width=836&amp;format=png&amp;auto=webp&amp;s=d82d28b7c3f6b6c43f7b2b392a8fd1906e24cead

https://preview.redd.it/n3r92vqqaf5f1.png?width=1279&amp;format=png&amp;auto=webp&amp;s=416858a0d81f87fd20d325256b9e78f58ee4cc8f

I have no clue why the site doesn't display anything. Like I think the index function is just not called for some reason. i've tried putting print statements within the index function and they never print anything.

When I click on the link, nothing appears, its just perpetual loading. i've checked a trillion times that the folder has the python file and then a templates folder with index.html inside.

I've tried tutorials, I've copy pasted 1:1 programs that are meant to work, everything leads to the same exact result, so i don't know if its my code anymore. I've tried reinstalling python, reinstalling flask, and nothing ever works. It's not just my device, my school one is also experiencing the same issue.

does anyone know what i can do?? if you need any more details please tell me. i'm kinda not good so apologies if im doing or missing something horribly obvious

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

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

Python Daily

R LLMs are Locally Linear Mappings: Qwen 3, Gemma 3 and Llama 3 can be converted to exactly equivalent locally linear systems for interpretability

https://arxiv.org/abs/2505.24293

https://github.com/jamesgolden1/llms-are-llms

Hello all, I'd like to share my new research describing an alternative approach to LLM interpretability. I show that transformer decoder LLMs can be made locally linear at inference time without changing outputs or weights.

Result: LLMs can be converted into nearly exactly equivalent linear systems that reconstruct the next-token output for any given input text sequence. Instead of 25+ layers of nonlinear computations, this method computes a single set of matrix multiplications that linearly operates on the input embedding vectors and nearly exactly reconstructs the output embedding for a single token prediction.

Method: A "linear path" through the transformer is identified, the nonlinear components are detached from the gradient, and the Jacobian with respect to the input embeddings is computed. This yields the "detached Jacobian", which is the set of matrices that operate linearly on input embeddings to reproduce the predicted output embedding with \~10⁻⁶ error for float32 models.

Interpretability: This method provides nearly-exact token attribution rather than approximate attention weights - tools from linear algebra like the SVD are used to understand which concepts drive predictions

Scope: Works across Qwen 3, Gemma 3, Llama 3, Phi 4, Ministral and OLMo 2 (tested up to 70B parameters at q4).

Practical: The method works on

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

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

Python Daily

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/1l57cfo

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

Python Daily

CRUDAdmin - Modern and light admin interface for FastAPI built with FastCRUD and HTMX

Hey, guys, for anyone who might benefit (or would like to contribute)

Github: https://github.com/benavlabs/crudadmin
Docs: https://benavlabs.github.io/crudadmin/

CRUDAdmin is an admin interface generator for FastAPI applications, offering secure authentication, comprehensive event tracking, and essential monitoring features.

Built with FastCRUD and HTMX, it's lightweight (85% smaller than SQLAdmin and 90% smaller than Starlette Admin) and helps you create admin panels with minimal configuration (using sensible defaults), but is also customizable.

Some relevant features:

Multi-Backend Session Management: Memory, Redis, Memcached, Database, and Hybrid backends
Built-in Security: CSRF protection, rate limiting, IP restrictions, HTTPS enforcement, and secure cookies
Event Tracking & Audit Logs: Comprehensive audit trails for all admin actions with user attribution
Advanced Filtering: Type-aware field filtering, search, and pagination with bulk operations

There are tons of improvements on the way, and tons of opportunities to help. If you want to contribute, feel free!

https://github.com/benavlabs/crudadmin

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

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

Python Daily

Best Django Open Source Repository

Hi everyone!

I’m currently looking for a high-quality, open-source Django project repository to explore and learn from. I strongly believe that studying real-world, production-grade codebases is one of the best ways to deepen understanding and improve as a developer.

Ideally, I’m looking for a repository that:
• Follows industry best practices
• Has a well-structured project architecture
• Includes features like testing, CI/CD, Docker support, authentication, API design, etc.
• Is actively maintained or at least well-documented

If you know of any such Django-based projects that have helped you or are known for their clean and scalable architecture, I’d love your recommendations!

Thanks in advance 🙌

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

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

Python Daily

How to setup a Jupyter Enterprise Gateway for my server?

Hey there. I'm new to setting up clusters and working on a backend of this complexity so let me explain what I'm trying to do here:

I'm trying to set up a framework in my lab for people to access our GPU server from their own local devices, ideally a jupyter notebook. When needed, I would like for them to run their code and utilize the server's gpu instead of their own local compute. For this i asked deep research and it gave me two options, based on JupyterHUB or JupyterEnterprise Gateway.

In the Jupyter Enterprise Gateway method it suggested, i would run jupyter notebooks locally but those notebooks will run on the kernels that are containerized on the server. I understood this approach broadly but have no idea if this is even feasible. I would like an explainer on how i would even start setting up this framework.

I will attach link to the conversation in ChatGPT. Please do tell me if it makes sense. If so, please be kind enough to explain how this works.

Conversation Link: **https://chatgpt.com/share/68431361-2650-8005-9373-97d13e8bcb77**

/r/IPython
https://redd.it/1l4wf65

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

Python Daily

Sold an App made with the help of AI

I sold an App ( Django Python JS) for 7K USD mostly using AI, I have done small projects for about 2 -3Ks, but since I don’t Like Front End that much I never tried more complex Apps, so I had the opportunity jump on this project inventory - buy orders - authentication - and some strange requirements from the owner of a car workshop where JS was a must, and I basically did the front end with AI, and part of the backend too, I just coded like 20% and using my old projects as base.
I understand the code and can make changes, if needed, but somehow I felt like this is just all? Or now is just work smarter not harder? I’m sure this project that took me 2 months, would have take 8 months or more without AI.
The App have been in use for some months and had no issues at all. I mean you need to understand things and what they do, but still this felt soo strange.

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

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