Python Daily
2.57K subscribers
1.48K photos
53 videos
2 files
38.9K links
Daily Python News
Question, Tips and Tricks, Best Practices on Python Programming Language
Find more reddit channels over at @r_channels
Download Telegram
Python Model for PDF table extraction

Hi

I am looking for a python library model that can extract tables out of PDF, but here are some more requirements:

a) Able to differentiate two table in same page, having different width

b) Able to Understand table that spans across multiple Pages in Same pdf



Tried Tabula, pyMuPDF both are not showing any good results, Suggest some better models

/r/Python
https://redd.it/1hqbfm5
Pydantic-Ai Multi Modal Support Hack

Been playing around with LLMs lately and thought of giving pydantic-ai a try. Pydantic-ai makes working with LLMs a breeze thanks to its features like type safety and structured outputs(Thanks to Samuel Colvin and the Pydantic team), It's perfect for someone like me who loves using Pydantic. While it doesn't have built-in multimodal support yet, I decided to explore a workaround. 🙌

So, I built a quick example showing how to use it with images. Here's how I used it to summarize a resume from a picture: https://github.com/rawheel/Pydantic-ai-MultiModal-Example

Let me know what you think!  💭

/r/Python
https://redd.it/1hqpj8d
D Simple Questions Thread

Please post your questions here instead of creating a new thread. Encourage others who create new posts for questions to post here instead!

Thread will stay alive until next one so keep posting after the date in the title.

Thanks to everyone for answering questions in the previous thread!

/r/MachineLearning
https://redd.it/1hoyxhm
What is the best way to work with Multi-Tenant in Django?

Hello everyone, how are you?

I'm writing SaaS software, in Django and using it as a Full-Stack, including the templates part, I'm using 1 database and at first, all data will be saved in a single database, separated by a TenantID , which will show which "company" that data belongs to.

What is the best way so that, when the user logs in, I only retrieve data relating to that company?

I saw that there is the Django Multi-Tenant package that works with Schemas, but I don't want to use schemas at the moment, I want to use TenantID.

I came from C#, and in EntityFramework (.NET ORM), it is possible to create a global filter that allows filtering by TenantID, thus only bringing information from that "company/tenant", does anyone have any tips?

Cheers.

/r/django
https://redd.it/1hqfwr9
Stuck in tutorial hell, how to build my first production-ready Django project?

Hey everyone,

I’ve been using Django for about 2 years, mostly building prototypes and small projects, but I’ve just realized... I don’t actually know much about Django or how to build something valuable with it.

Now, I’ve got a client who’s willing to trust me to build a web app for them. It’s not super complex, but I’m kinda freaking out because I don’t know where to start or how to ensure it’s something they’ll actually be happy with.

If you’ve been in my shoes, how did you get over this and deliver something solid? Any tips or resources to help me plan and build this app the right way?

Appreciate any advice you’ve got!

/r/django
https://redd.it/1hqd1yv
Wednesday Daily Thread: Beginner questions

# Weekly Thread: Beginner Questions 🐍

Welcome to our Beginner Questions thread! Whether you're new to Python or just looking to clarify some basics, this is the thread for you.

## How it Works:

1. Ask Anything: Feel free to ask any Python-related question. There are no bad questions here!
2. Community Support: Get answers and advice from the community.
3. Resource Sharing: Discover tutorials, articles, and beginner-friendly resources.

## Guidelines:

This thread is specifically for beginner questions. For more advanced queries, check out our [Advanced Questions Thread](#advanced-questions-thread-link).

## Recommended Resources:

If you don't receive a response, consider exploring r/LearnPython or join the Python Discord Server for quicker assistance.

## Example Questions:

1. What is the difference between a list and a tuple?
2. How do I read a CSV file in Python?
3. What are Python decorators and how do I use them?
4. How do I install a Python package using pip?
5. What is a virtual environment and why should I use one?

Let's help each other learn Python! 🌟

/r/Python
https://redd.it/1hqr98f
kenobiDB 3.0 made public, pickleDB replacement?

So years ago I wrote the (what I now consider very stupid and useless) program called pickleDB. To date is has over 2 million downloads, and I still get issues and pull request notifications on GitHub about it.

# Comparison

I stopped using pickleDB awhile ago and I suggest other people do the same. For my small projects and prototyping I use another database abstraction I created awhile ago. I call it kenobiDB and tonite I decided to make its GitHub repo public and publish the current version on PyPI. So, a little about kenobiDB:

# What My Project Does

kenobiDB is a small document based database supporting very simple usage including insertion, update, removal and search. It useses YAML, is thread safe, process safe, and atomic.

Here is a stupid example of it in action:

>>> from kenobi import KenobiDB
>>> db = KenobiDB('example.yaml')
>>> db.insert({'name': 'Obi-Wan', 'color': 'blue'})
True
>>> db.search('color', 'blue')
{'name': 'Obi-Wan', 'color': 'blue'}

Check it out on GitHub: https://github.com/patx/kenobi

View the website (includes api docs and a walk-through): https://patx.github.io/kenobi/

# Target Audience

This is an experimental database that should be safe for small scale production where

/r/Python
https://redd.it/1hqvrd6
Django Paginator Fails to generate new pages

from django.core.paginator import Paginator
from .models import Product

global_storage = Paginator(Product.objects.order_by('-created'), 3)


def home(request):
context = {'list_items': global_storage.page(1)}
return render(request, 'index.html', context)


def next_page(request, page_number):

if page_number <= global_storage.num_pages:
context = {'list_items': global_storage.page(page_number)}

return render(request, 'partial_page.html', context)
else:
# send empty response



So initially I had 6 rows in the database and paginator has total two pages. But when I insert +3 rows in the database Django paginator wont generate the new 3rd page. How do i update the pagonator to recognize new rows

/r/django
https://redd.it/1hqv15m
dorm: Django wrapper that lets you use its ORM in standalone manner
https://pypi.org/project/dorm-project/

/r/django
https://redd.it/1hqy923
Python / Computer Science Local to my area.

Without doxxing myself, I am looking for other like minded developers in my area. I live in WV, I need to link up with some Python developers close to my area. Feels like out of all my friend groups, Im the only nerd that likes to code.

I am 29, Stay at home dad with 3 kids, but I am also in my sophomore year of college for Computer Science. Why does it seem so hard to find others who like to code?

I enjoy just chillin in discord calls while the homies game and I code, but I need to network more.

/r/Python
https://redd.it/1hqwtif
I made a website to put free tools on it


So, I've started programming a website to put web tools on it like a PNG to JPEG image converter etc, and I'd love your opinion as well as ideas for other tools! :)


here the site : https://javu.xyz/

/r/flask
https://redd.it/1hqasub
Is it worth learning Django in 2025?

Hi everyone, and Happy New Year!

I just completed learning Python and recently started exploring Django. I've gone through the basics by following some tutorials, but now I'm at a crossroads.
Should I dive deeper into Django and consider starting my career with it, or would it be better to shift to js and focus on something else, like Node.js or another popular framework?

/r/django
https://redd.it/1hr3wfa
I build a tool that automates testing of a product against its documentation

Happy new year everyone! This is still a proof-of-concept but criticism and some help are very welcome.

As a self-taught coder, I was fed up (and also very inexperienced) writing system and end-to-end tests so I made this. The implementation is a bit convoluted but the basic features are:

1. Writing detailed specs \-- based on existing READMEs, design docs, references, etc.
2. Generating test code \-- in a Python DSL
3. Executing the tests \-- with a DSL interpreter

Step 1 and 2 are enabled by LLMs. You may review and edit the outputs in one text file, and fill in necessary info to properly set up the tests (like describing how data should be validated when the data schema is an implementation detail).

The project is implemented in Python because of the rich dynamic and reflective capabilities of the language. It makes modifying the test code DSL very easy so they may cater to specific test needs.

Target audience: Developers like me who don't like learning about and/or writing system tests.

Comparison:

Cucumber/Gherkin - Unlike Cucumber, you only write minimal code and focus more on fixture data and test environments, which are usually not part of the documentation
Unit/integration tests - This is not a replacement

/r/Python
https://redd.it/1hr4dnu
An alternative to port forwarding for multiplayer functionalities

Hey, I’ve developed an algorithm that strips down ngrok's dynamic URL's into room numbers, to simplify multiplayer connections. It works by converting ngrok-generated links into room numbers, which clients can use to establish connections over the network—no port forwarding required.

This is just a proof of concept for an easy way of adding multiplayer connections into low level games. Currently, it’s in a primitive state as just a chatroom, but the concept could be expanded and integrated into games with further development. If it sparks interest, I’d be happy to continue working on it!

You can check out the project on GitHub: https://github.com/siryazgan/ChatRoom\_OverTheNetwork

What My Project Does:
This project is a network-based chatroom app that simplifies internet connections by utilizing ngrok. It eliminates the need for port forwarding, allowing users to create and join rooms using a room number, which is essentially just a dynamic URL generated by ngrok, stripped down to be a room number. Clients can then use this number to connect to each other and chat over the network. This room number functionality is already widely used in multiplayer games as a common way for players to join sessions.

Target Audience:
This project is for anyone

/r/Python
https://redd.it/1hr8xlo
What’s Your Go-To Platform for Hosting Django Projects? 🚀

Hey guys! 👋 I’m curious to know what hosting platforms you’re using for your Django projects. There are so many options out there—AWS, DigitalOcean, Heroku, UpCloud, Linode, Render, Railway, Netlify, Flyio, etc. — each with its pros and cons.

Which ones is the best for you and why?

/r/django
https://redd.it/1hr7sgh
Quart-Schema 0.21.0 released

[Quart-Schema](https://quart-schema.readthedocs.io/) is a [Quart](https://quart.palletsprojects.com/en/latest/) extension that adds validation (request, response, etc) and autogeneration of OpenAPI documentation using either Pydantic, msgspec, attrs, or dataclasses. For example,

@dataclass
class Todo:
task: str
due: datetime | None

@app.post("/")
@validate_request(Todo)
@validate_response(Todo, 201)
async def create_todo(data: Todo) -> tuple[Todo, int]:
"""Create a Todo"""
# Do something with data, e.g. save to the DB
...
return data, 201

This latest release allows the auto generated OpenAPI schema to be fully customised by [altering Quart-Schema's OpenAPIProvider](https://quart-schema.readthedocs.io/en/latest/how_to_guides/customising.html). For example to use the function name as the operation ID,

class CustomOperationIdOpenAPIProvider(OpenAPIProvider):
def operation_id(self, method: str, func: Callable) -> Optional[str]:
return func.__name__

quart_schema = QuartSchema(app, openapi_provider_class=CustomerOpenAPIProvider)

/r/Python
https://redd.it/1hrd8w0
Looking to Collaborate on Django Projects (Open to Learning and Contributing)

Hi everyone,

I have a working knowledge of Django and a strong enthusiasm to improve my hands-on experience. I'm eager to contribute to any ongoing or new projects involving Django, be it for learning or collaboration purposes.

If you're working on Django and could use an extra pair of hands, I'm ready to help and learn along the way. I'm open to coding, debugging, testing, or any other tasks to contribute to the project.

Feel free to DM me or comment below if you're interested in collaborating!

Looking forward to working with you.

r/django
r/webdev
r/learnprogramming
r/coding
r/developers

/r/djangolearning
https://redd.it/1hr7148
Understanding null=True vs. blank=True

What is the difference between null=True and blank=True in Django models? Can they be used together?

/r/django
https://redd.it/1hr5nez
Thursday Daily Thread: Python Careers, Courses, and Furthering Education!

# Weekly Thread: Professional Use, Jobs, and Education 🏢

Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment.

---

## How it Works:

1. Career Talk: Discuss using Python in your job, or the job market for Python roles.
2. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources.
3. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally.

---

## Guidelines:

- This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar.
- Keep discussions relevant to Python in the professional and educational context.

---

## Example Topics:

1. Career Paths: What kinds of roles are out there for Python developers?
2. Certifications: Are Python certifications worth it?
3. Course Recommendations: Any good advanced Python courses to recommend?
4. Workplace Tools: What Python libraries are indispensable in your professional work?
5. Interview Tips: What types of Python questions are commonly asked in interviews?

---

Let's help each other grow in our careers and education. Happy discussing! 🌟

/r/Python
https://redd.it/1hrgc7f
Turn your desktop into your todo list

This is my second project ever and I thought I'd make something I wanted personally.

**What my project does:** This little script will take your todo.txt file and make an image out of it. Then it will set it as your background wallpaper image.

This currently only works for Linux, I'm on Mint XFCE, but it should be really easy to configure to work with other distros or os.I included instructions in the readme on how to add an alias to your bash file so you can just run 'todo' in the terminal and have the wallpaper image update after making changes to your txt file.

**Target Audience:** Anyone looking for help being productive. Anyone like me that gets sidetracked easily when trying to keep multiple small tasks in my head during the day.

**Comparison:** I couldn't find anything like this for Linux that fit my needs, so I can't compare to any other programs honestly.

This is simple and silly but I thought I'd share it in case anyone else wanted something like this.

check it out: https://github.com/CHaagFernandez/Desktop-Todo.git

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