Python OCR for each element/section reading multiple details of multiple objects
Hey I have a list of buttons underneath each other (sections). Each button has some details, pretty many different, I need to read some data with OCR, some with is image in that region,... I really struggle to find something reliable, anyone got any tips.
And please if you do not dont write, pytesseract is not the way to go here...
/r/Python
https://redd.it/1hcgtlr
Hey I have a list of buttons underneath each other (sections). Each button has some details, pretty many different, I need to read some data with OCR, some with is image in that region,... I really struggle to find something reliable, anyone got any tips.
And please if you do not dont write, pytesseract is not the way to go here...
/r/Python
https://redd.it/1hcgtlr
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
python-json-logger has changed hands
Hi r/python,
I wanted to introduce myself as the new maintainer of python-json-logger and hopefully establish a bit of trust.
Understandably there has been some anxiety over the PEP 541 Request that I submitted given the importance / popularity of the package - especially in the context of the XZ Utils backdoor earlier in the year.
I think it's important to highlight that although this was prompted by the PEP 541 request, it was not done through PEP 541 mechanisms. In other words this was a decision by the original maintainer and not the PyPI Administrators.
For those wanting to know more about me (to prove that I'm not some statebased actor subverting the package), I'm a security professional and maintain a few other packages. You might also have seen some of my blog posts on reddit.
Finally apologies if the newly released versions broke your things - despite my best efforts at testing and maintaining backwards compatibility it appears some bugs managed to slip through.
/r/Python
https://redd.it/1hcm2rr
Hi r/python,
I wanted to introduce myself as the new maintainer of python-json-logger and hopefully establish a bit of trust.
Understandably there has been some anxiety over the PEP 541 Request that I submitted given the importance / popularity of the package - especially in the context of the XZ Utils backdoor earlier in the year.
I think it's important to highlight that although this was prompted by the PEP 541 request, it was not done through PEP 541 mechanisms. In other words this was a decision by the original maintainer and not the PyPI Administrators.
For those wanting to know more about me (to prove that I'm not some statebased actor subverting the package), I'm a security professional and maintain a few other packages. You might also have seen some of my blog posts on reddit.
Finally apologies if the newly released versions broke your things - despite my best efforts at testing and maintaining backwards compatibility it appears some bugs managed to slip through.
/r/Python
https://redd.it/1hcm2rr
PyPI
python-json-logger
JSON Log Formatter for the Python Logging Package
Django on ecs
Whats the common practice for serving a Django app from ECS?
Should I use gunicorn from within the container and nginx as reverse proxy?
It’s mainly going to be used as a project to go on my resume so don’t need anything to complex.
Thanks
/r/django
https://redd.it/1hcl1pu
Whats the common practice for serving a Django app from ECS?
Should I use gunicorn from within the container and nginx as reverse proxy?
It’s mainly going to be used as a project to go on my resume so don’t need anything to complex.
Thanks
/r/django
https://redd.it/1hcl1pu
Reddit
From the django community on Reddit
Explore this post and more from the django community
Programming languages that compile to Python?
All I'm aware of is Coconut, which is a functional programming language that is essentially a superset of Python syntax. Are there any other languages like this?
/r/Python
https://redd.it/1hchwjd
All I'm aware of is Coconut, which is a functional programming language that is essentially a superset of Python syntax. Are there any other languages like this?
/r/Python
https://redd.it/1hchwjd
coconut-lang.org
Coconut Programming Language
Simple, elegant, Pythonic functional programming.
Question about app.config'UPLOAD_FOLDER' statement
I don't understand the usefulness of this statement: app.config['UPLOAD_FOLDER'\]
Can't use the os library? Also because I have to constantly change path based on the name of a file.
Example: /static/uploads/Username/S/song.mp3
/r/flask
https://redd.it/1hck2gp
I don't understand the usefulness of this statement: app.config['UPLOAD_FOLDER'\]
Can't use the os library? Also because I have to constantly change path based on the name of a file.
Example: /static/uploads/Username/S/song.mp3
/r/flask
https://redd.it/1hck2gp
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
encoding error
Hi guys, i'm new to coding on flask and python. I'm creating small web application and facing one problem. I input data via textboxes and use my native language while doing it. I am trying to get some data (group and day in def student_show()). After input the error appears, which goes "UnicodeEncodeError: 'ascii' codec can't encode characters in position 11-21: ordinal not in range(128)". I tried to apply .decode('cp1251').encode('utf8'), but got another error "'str' object has no attribute 'decode'". All screeenshots are included. I also included student.html. How can I fix it?
My code
Error
Decode error
HTML
/r/flask
https://redd.it/1hch3sb
Hi guys, i'm new to coding on flask and python. I'm creating small web application and facing one problem. I input data via textboxes and use my native language while doing it. I am trying to get some data (group and day in def student_show()). After input the error appears, which goes "UnicodeEncodeError: 'ascii' codec can't encode characters in position 11-21: ordinal not in range(128)". I tried to apply .decode('cp1251').encode('utf8'), but got another error "'str' object has no attribute 'decode'". All screeenshots are included. I also included student.html. How can I fix it?
My code
Error
Decode error
HTML
/r/flask
https://redd.it/1hch3sb
Why does the allowedmethods() function return all http methods even though only get is implemented?
I have a view being inherited by APIView and I have only implemented the GET method in it. But when I call ClassInstance._allowed_methods() I get list of all the HTTP methods even though they are not implemented. When I hit that API with a POST request I get a not allowed error. How could it be?
/r/djangolearning
https://redd.it/1hcn9ug
I have a view being inherited by APIView and I have only implemented the GET method in it. But when I call ClassInstance._allowed_methods() I get list of all the HTTP methods even though they are not implemented. When I hit that API with a POST request I get a not allowed error. How could it be?
/r/djangolearning
https://redd.it/1hcn9ug
Reddit
[deleted by user] : r/djangolearning
29K subscribers in the djangolearning community. A group dedicated to learning Django, a Python web framework.
ER Diagrams in Mermaid
Does anyone know of a way to export Django models to Mermaid UML?
/r/django
https://redd.it/1hczo8d
Does anyone know of a way to export Django models to Mermaid UML?
/r/django
https://redd.it/1hczo8d
Reddit
From the django community on Reddit
Explore this post and more from the django community
DRF docs
I noticed the docs for DRF aren't really detailed. I've learnt a lot of what I can do within it from breaking stuff and asking AI or SOF. I was wondering if there are more detailed articles on it or parts of it like views and generic views
/r/django
https://redd.it/1hcxkyv
I noticed the docs for DRF aren't really detailed. I've learnt a lot of what I can do within it from breaking stuff and asking AI or SOF. I was wondering if there are more detailed articles on it or parts of it like views and generic views
/r/django
https://redd.it/1hcxkyv
Reddit
From the django community on Reddit: DRF docs
Posted by WayAndMeans01 - 9 votes and 5 comments
Suggestions
Hi,
I am proposing Django with python backend over springboot with java and have been getting lot of pushback as front end is angular and one of the concern is regarding the pagination in Django app.In springboot with jpa we have the paging and sorting repo which provide standard way to fetch items for subsequent page loads.
Is there a similar standard way for Django apps? Like we are using Oracle database and wanted to know if there was a standard way to implement pagination for a Django app with angular frontend?
Thanks
/r/django
https://redd.it/1hd0y74
Hi,
I am proposing Django with python backend over springboot with java and have been getting lot of pushback as front end is angular and one of the concern is regarding the pagination in Django app.In springboot with jpa we have the paging and sorting repo which provide standard way to fetch items for subsequent page loads.
Is there a similar standard way for Django apps? Like we are using Oracle database and wanted to know if there was a standard way to implement pagination for a Django app with angular frontend?
Thanks
/r/django
https://redd.it/1hd0y74
Reddit
From the django community on Reddit
Explore this post and more from the django community
Friday Daily Thread: r/Python Meta and Free-Talk Fridays
# Weekly Thread: Meta Discussions and Free Talk Friday 🎙️
Welcome to Free Talk Friday on /r/Python! This is the place to discuss the r/Python community (meta discussions), Python news, projects, or anything else Python-related!
## How it Works:
1. Open Mic: Share your thoughts, questions, or anything you'd like related to Python or the community.
2. Community Pulse: Discuss what you feel is working well or what could be improved in the /r/python community.
3. News & Updates: Keep up-to-date with the latest in Python and share any news you find interesting.
## Guidelines:
All topics should be related to Python or the /r/python community.
Be respectful and follow Reddit's Code of Conduct.
## Example Topics:
1. New Python Release: What do you think about the new features in Python 3.11?
2. Community Events: Any Python meetups or webinars coming up?
3. Learning Resources: Found a great Python tutorial? Share it here!
4. Job Market: How has Python impacted your career?
5. Hot Takes: Got a controversial Python opinion? Let's hear it!
6. Community Ideas: Something you'd like to see us do? tell us.
Let's keep the conversation going. Happy discussing! 🌟
/r/Python
https://redd.it/1hcz7n3
# Weekly Thread: Meta Discussions and Free Talk Friday 🎙️
Welcome to Free Talk Friday on /r/Python! This is the place to discuss the r/Python community (meta discussions), Python news, projects, or anything else Python-related!
## How it Works:
1. Open Mic: Share your thoughts, questions, or anything you'd like related to Python or the community.
2. Community Pulse: Discuss what you feel is working well or what could be improved in the /r/python community.
3. News & Updates: Keep up-to-date with the latest in Python and share any news you find interesting.
## Guidelines:
All topics should be related to Python or the /r/python community.
Be respectful and follow Reddit's Code of Conduct.
## Example Topics:
1. New Python Release: What do you think about the new features in Python 3.11?
2. Community Events: Any Python meetups or webinars coming up?
3. Learning Resources: Found a great Python tutorial? Share it here!
4. Job Market: How has Python impacted your career?
5. Hot Takes: Got a controversial Python opinion? Let's hear it!
6. Community Ideas: Something you'd like to see us do? tell us.
Let's keep the conversation going. Happy discussing! 🌟
/r/Python
https://redd.it/1hcz7n3
Redditinc
Reddit Rules
Reddit Rules - Reddit
Getting 302 Error When Uploading Document to S3 Bucket via Django Admin Panel
Hey everyone,
I'm working on a Django project where I'm trying to upload documents via the admin panel to an S3 bucket. However, I'm consistently encountering a **302 Redirect error** during the upload process.
# Setup Details:
* **Django Version:** Django==5.1.4
* **Storage Backend:** `boto3` and django-storages
* **S3 Bucket:** Configured on AWS with correct policies (I believe).
* **Settings:**
* `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, and `AWS_STORAGE_BUCKET_NAME` are set correctly in [dev.py](http://dev.py) of settings folder.
* `DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'`
* **Admin Panel:** The error only occurs when trying to upload via the admin panel.
​
[13/Dec/2024 14:31:04] INFO [django.server:213 log_message] "POST /admin/core/documents/5/change/ HTTP/1.1" 302 0
[13/Dec/2024 14:31:04] INFO [django.server:213 log_message] "GET /admin/core/documents/ HTTP/1.1" 200 31656
[13/Dec/2024 14:31:05] INFO [django.server:213 log_message] "GET /admin/jsi18n/ HTTP/1.1" 200 3342
I tried uploading document through basic python noscript, I am able to upload it means credentials and other AWS settings are correctly configured.
import boto3
s3 = boto3.client(
's3',
aws_access_key_id=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
region_name=region_name
)
/r/django
https://redd.it/1hd8j5x
Hey everyone,
I'm working on a Django project where I'm trying to upload documents via the admin panel to an S3 bucket. However, I'm consistently encountering a **302 Redirect error** during the upload process.
# Setup Details:
* **Django Version:** Django==5.1.4
* **Storage Backend:** `boto3` and django-storages
* **S3 Bucket:** Configured on AWS with correct policies (I believe).
* **Settings:**
* `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, and `AWS_STORAGE_BUCKET_NAME` are set correctly in [dev.py](http://dev.py) of settings folder.
* `DEFAULT_FILE_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'`
* **Admin Panel:** The error only occurs when trying to upload via the admin panel.
​
[13/Dec/2024 14:31:04] INFO [django.server:213 log_message] "POST /admin/core/documents/5/change/ HTTP/1.1" 302 0
[13/Dec/2024 14:31:04] INFO [django.server:213 log_message] "GET /admin/core/documents/ HTTP/1.1" 200 31656
[13/Dec/2024 14:31:05] INFO [django.server:213 log_message] "GET /admin/jsi18n/ HTTP/1.1" 200 3342
I tried uploading document through basic python noscript, I am able to upload it means credentials and other AWS settings are correctly configured.
import boto3
s3 = boto3.client(
's3',
aws_access_key_id=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
region_name=region_name
)
/r/django
https://redd.it/1hd8j5x
Is full stack django or full stack fastapi better startup web apps?
Wanting to build mvp for idea I have, Python has been my first language of choice. Need to have ability for rapid development but scale and performance is priority.
/r/Python
https://redd.it/1hd3vvm
Wanting to build mvp for idea I have, Python has been my first language of choice. Need to have ability for rapid development but scale and performance is priority.
/r/Python
https://redd.it/1hd3vvm
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Connecting frontend and backend
Hey my friends....
I am new to django....
My teacher gave me a group project
Where i have to connect frontend with backend
How to do it with django?
I am still new to this but my
Time is short...
Can anyone help me with a video or
Explanation text
/r/django
https://redd.it/1hd8fc2
Hey my friends....
I am new to django....
My teacher gave me a group project
Where i have to connect frontend with backend
How to do it with django?
I am still new to this but my
Time is short...
Can anyone help me with a video or
Explanation text
/r/django
https://redd.it/1hd8fc2
Reddit
From the django community on Reddit
Explore this post and more from the django community
I created Musync - a python CLI tool for syncing playlists between music streaming services
Hi r/Python \- a couple of months ago decided to try out Youtube Music as a long time Spotify user. I ended up really liking it, but was hesitant to fully make the switch for fear of losing all of my playlists, followed artists, liked songs etc. So I decided to create Musync.
Link to source code
# What it does
Musync allows you sync your own user-created playlists, followed playlists and followed artists from one streaming service to another in a single command e.g.
# Target Audience
Spotify users interested in trying out Youtube Music (or vice versa).
Youtube Music users who want to share playlists with Spotify users (or vice versa).
# Quickstart
# Installation
Using pip:
pip install pymusync
Using pipx:
pipx install pymusync
You can verify the installation worked and see a list of commands by running:
musync --help
For more details on how to use, see the README. Feedback welcome!
/r/Python
https://redd.it/1hdg7v8
Hi r/Python \- a couple of months ago decided to try out Youtube Music as a long time Spotify user. I ended up really liking it, but was hesitant to fully make the switch for fear of losing all of my playlists, followed artists, liked songs etc. So I decided to create Musync.
Link to source code
# What it does
Musync allows you sync your own user-created playlists, followed playlists and followed artists from one streaming service to another in a single command e.g.
musync unisync --source spotify --destination youtube# Target Audience
Spotify users interested in trying out Youtube Music (or vice versa).
Youtube Music users who want to share playlists with Spotify users (or vice versa).
# Quickstart
# Installation
Using pip:
pip install pymusync
Using pipx:
pipx install pymusync
You can verify the installation worked and see a list of commands by running:
musync --help
For more details on how to use, see the README. Feedback welcome!
/r/Python
https://redd.it/1hdg7v8
GitHub
GitHub - devitt94/musync: A simple python CLI tool for syncing user data across music streaming services.
A simple python CLI tool for syncing user data across music streaming services. - devitt94/musync
Need Python contributors for an open-source top-down survival game with rogue lite/like elements.
If anyone is interested, you can contribute or download the source code here Poppadomus/pygameTDS
(yes, I know you shouldn't make games in python).
/r/Python
https://redd.it/1hd3pnu
If anyone is interested, you can contribute or download the source code here Poppadomus/pygameTDS
(yes, I know you shouldn't make games in python).
/r/Python
https://redd.it/1hd3pnu
GitHub
GitHub - Poppadomus/pygameTDS: PyGameTDS is an open source, 2D top-down shooter engine with roguelite elements.
PyGameTDS is an open source, 2D top-down shooter engine with roguelite elements. - Poppadomus/pygameTDS
I need help importing JS packages in Django projects
I did my research and apparently i need webpack, but none of the tutorials i found were really helpful. any advice?
/r/django
https://redd.it/1hdouc4
I did my research and apparently i need webpack, but none of the tutorials i found were really helpful. any advice?
/r/django
https://redd.it/1hdouc4
Reddit
From the django community on Reddit
Explore this post and more from the django community
Is there a way to update session variables from a generator function()?
I'm building a web app that streams content from the Claude streaming API to the frontend UI. Conceptually like a chatbot.
I've used a generator() function for this. My issue is that I'm unable to update any session variables with this function. I need to save the API response to the session once response is complete.
**But I'm unable to update session variables within a generator.** So instead I tried doing this modification within a call\_on\_close with a copy\_current\_request\_context decorator. But that also didn't work.
**How can I update a session variable based on a value that is generated with a Flask generator function?**
with anthropic.client.messages.stream(
...
) as stream:
for text in stream.text_stream:
/r/flask
https://redd.it/1hdm1f4
I'm building a web app that streams content from the Claude streaming API to the frontend UI. Conceptually like a chatbot.
I've used a generator() function for this. My issue is that I'm unable to update any session variables with this function. I need to save the API response to the session once response is complete.
**But I'm unable to update session variables within a generator.** So instead I tried doing this modification within a call\_on\_close with a copy\_current\_request\_context decorator. But that also didn't work.
**How can I update a session variable based on a value that is generated with a Flask generator function?**
with anthropic.client.messages.stream(
...
) as stream:
for text in stream.text_stream:
/r/flask
https://redd.it/1hdm1f4
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
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/1hdq183
# 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/1hdq183
Django and SOLID principles
I'm studying traditional software development best practices and also trying to tie up with what I do at work (building APIs).
If I take a look at Django's Model class, it doesn't seem to me to follow S of SOLID (it has validate() and save() methods, which means it has too many responsibilites apart from just defining model). Do you agree with me here? It seems that the framework is not written to follow SOLID. Does it follow some kind of other philosophy? It's hard for me to understand what's best practice when even the giant in the industry (e.g. Django) doesn't follow it...
/r/django
https://redd.it/1hdidm0
I'm studying traditional software development best practices and also trying to tie up with what I do at work (building APIs).
If I take a look at Django's Model class, it doesn't seem to me to follow S of SOLID (it has validate() and save() methods, which means it has too many responsibilites apart from just defining model). Do you agree with me here? It seems that the framework is not written to follow SOLID. Does it follow some kind of other philosophy? It's hard for me to understand what's best practice when even the giant in the industry (e.g. Django) doesn't follow it...
/r/django
https://redd.it/1hdidm0
Reddit
From the django community on Reddit
Explore this post and more from the django community