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/1ki537m
# 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/1ki537m
Redditinc
Reddit Rules
Reddit Rules - Reddit
What problems in the Django framework still have no direct solution?
Good day, everyone. I am planning to create an extension or a Django app specifically aimed at providing solutions to recurring problems that affect the development process—particularly those that cause headaches during integration or development.
This thread is a safe space to share suggestions, constructive criticism, and ideas for improvement, all with the goal of making Django more efficient, developer-friendly, and robust.
Your input is valuable and highly appreciated. Let’s work together to enhance the Django ecosystem.
/r/django
https://redd.it/1kias7m
Good day, everyone. I am planning to create an extension or a Django app specifically aimed at providing solutions to recurring problems that affect the development process—particularly those that cause headaches during integration or development.
This thread is a safe space to share suggestions, constructive criticism, and ideas for improvement, all with the goal of making Django more efficient, developer-friendly, and robust.
Your input is valuable and highly appreciated. Let’s work together to enhance the Django ecosystem.
/r/django
https://redd.it/1kias7m
Reddit
From the django community on Reddit
Explore this post and more from the django community
Could anyone help us with this program problem?
my wife and I have been going to couples therapy and we've been assigned to work on something we both like. We've both enjoyed robotics back in school so we bought the maqueen plus. We've hit a wall with our program. It's supposed to be going around the black edge and stopping at the top opening (as you could see if you try it). The problem is if he even stays on track long enough, he doesnt stop at the white opening. If anyone knows how to fix our bug, we'd be so grateful.
from mbrobot import *
RobotContext.useBackground("sprites/field2.gif")
rightArc(0.1)
delay(1000)
forward()
def aufDerKanteFahren():
count = 0
if count == 0:
forward()
vR = irRight.read_digital()
vL = irLeft.read_digital()
if vR != 1 or vL != 1:
count += 1
if count == 1:
if vL == 0 and vR == 0:
rightArc(0.1)
delay(300)
count +=1
elif vL == 0 and vR == 1:
leftArc(0.1)
delay(300)
count +=1
elif vL == 1 and vR == 0:
rightArc(0.1)
delay(1000)
count +=1
elif count == 2 and vR == 1 and vL == 1:
stop()
print(count)
setSpeed(50)
while True:
vR = irRight.read_digital()
vL = irLeft.read_digital()
aufDerKanteFahren()
delay(100)
/r/IPython
https://redd.it/1kic4ts
my wife and I have been going to couples therapy and we've been assigned to work on something we both like. We've both enjoyed robotics back in school so we bought the maqueen plus. We've hit a wall with our program. It's supposed to be going around the black edge and stopping at the top opening (as you could see if you try it). The problem is if he even stays on track long enough, he doesnt stop at the white opening. If anyone knows how to fix our bug, we'd be so grateful.
from mbrobot import *
RobotContext.useBackground("sprites/field2.gif")
rightArc(0.1)
delay(1000)
forward()
def aufDerKanteFahren():
count = 0
if count == 0:
forward()
vR = irRight.read_digital()
vL = irLeft.read_digital()
if vR != 1 or vL != 1:
count += 1
if count == 1:
if vL == 0 and vR == 0:
rightArc(0.1)
delay(300)
count +=1
elif vL == 0 and vR == 1:
leftArc(0.1)
delay(300)
count +=1
elif vL == 1 and vR == 0:
rightArc(0.1)
delay(1000)
count +=1
elif count == 2 and vR == 1 and vL == 1:
stop()
print(count)
setSpeed(50)
while True:
vR = irRight.read_digital()
vL = irLeft.read_digital()
aufDerKanteFahren()
delay(100)
/r/IPython
https://redd.it/1kic4ts
Reddit
From the IPython community on Reddit
Explore this post and more from the IPython community
Every script can become a web app with no effort.
When implementing a functionality, you spend most of time developing the UI. Should it run in the terminal only or as a desktop application? These problems are no longer something you need to worry about; the library Mininterface provides several dialog methods that display accordingly to the current environment – as a clickable window or a text on screen. And it works out of the box, requiring no previous knowledge.
What My Project Does
The current version includes a feature that allows every script to be broadcast over HTTP. This means that whatever you do or have already done can be accessed through the web browser. The following snippet will bring up a dialog window.
from mininterface import run
m = run()
m.form({"Name": "John Doe", "Age": 18})
Now, use the bundled mininterface program to expose it on a port:
$ mininterface web program.py --port 1234
Besides, a lot of new functions have been added. Multiple selection dialog, file picker both for GUI and TUI, minimal installation dropped to 1 MB, or added
/r/Python
https://redd.it/1kie6uw
When implementing a functionality, you spend most of time developing the UI. Should it run in the terminal only or as a desktop application? These problems are no longer something you need to worry about; the library Mininterface provides several dialog methods that display accordingly to the current environment – as a clickable window or a text on screen. And it works out of the box, requiring no previous knowledge.
What My Project Does
The current version includes a feature that allows every script to be broadcast over HTTP. This means that whatever you do or have already done can be accessed through the web browser. The following snippet will bring up a dialog window.
from mininterface import run
m = run()
m.form({"Name": "John Doe", "Age": 18})
Now, use the bundled mininterface program to expose it on a port:
$ mininterface web program.py --port 1234
Besides, a lot of new functions have been added. Multiple selection dialog, file picker both for GUI and TUI, minimal installation dropped to 1 MB, or added
argparse support. The library excels in generating command-line flags, but before, it only served as an/r/Python
https://redd.it/1kie6uw
GitHub
GitHub - CZ-NIC/mininterface: CLI & dialog toolkit – a minimal interface to Python application (GUI, TUI, CLI + config files, web)
CLI & dialog toolkit – a minimal interface to Python application (GUI, TUI, CLI + config files, web) - CZ-NIC/mininterface
: are replaced with \x3a
this is i have set in the .env file
DATABASE_URL=mysql+pymysql://root:@localhost/test_flask_db
os.getenv("DATABASE_URL",'')
mysql+pymysql\\x3a//root\\x3a@localhost/test_flask_db
if i access like this then im getting : are replaced with \\x3a
how can i solve this issue.
/r/flask
https://redd.it/1kierwb
this is i have set in the .env file
DATABASE_URL=mysql+pymysql://root:@localhost/test_flask_db
os.getenv("DATABASE_URL",'')
mysql+pymysql\\x3a//root\\x3a@localhost/test_flask_db
if i access like this then im getting : are replaced with \\x3a
how can i solve this issue.
/r/flask
https://redd.it/1kierwb
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
I feel stuck, books recommendations?
I’ve been programming in python for almost 2 years. I love python and I’m focusing in data analytics using python.
I’m tired of watching YouTube videos and tutorials, do you guys have some books to recommend?
I’m looking to improve my programming skills in general, to understand in a deeper level how python works or useful things to know about it idk.
I haven’t read any programming books in my life so idk what they talk about haha
Preferably, intermediate level books.
Thank you!
/r/Python
https://redd.it/1kif0pz
I’ve been programming in python for almost 2 years. I love python and I’m focusing in data analytics using python.
I’m tired of watching YouTube videos and tutorials, do you guys have some books to recommend?
I’m looking to improve my programming skills in general, to understand in a deeper level how python works or useful things to know about it idk.
I haven’t read any programming books in my life so idk what they talk about haha
Preferably, intermediate level books.
Thank you!
/r/Python
https://redd.it/1kif0pz
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
I built cutieAPI, a Python CLI tool for interactive API testing with a Rich TUI.
I created CutieAPI, a terminal-based, beginner-friendly API manager.
Most beginners are intimidated by
Check it out and let me know what you think!
here github link :
https://github.com/samunderSingh12/cutieAPI.git
/r/Python
https://redd.it/1kie6tn
I created CutieAPI, a terminal-based, beginner-friendly API manager.
Most beginners are intimidated by
curl commands—I was one of them too! That’s why I built this tool to simplify API interactions in the terminal.Check it out and let me know what you think!
here github link :
https://github.com/samunderSingh12/cutieAPI.git
/r/Python
https://redd.it/1kie6tn
GitHub
GitHub - samunderSingh12/cutieAPI: # 🚀 cutieAPI - Your Friendly Command-Line API Client 🚀 cutieAPI is a Python-based, interactive…
# 🚀 cutieAPI - Your Friendly Command-Line API Client 🚀 cutieAPI is a Python-based, interactive command-line tool designed to make API testing and interaction easy and enjoyable, right from your te...
Looking for Full Stack Django Engineer (Django/Angular)
I work for a large public sector software company and I am looking to hire a full-time Django full stack engineer (US citizens only due to security compliance for some of the data we deal with). We are deciding between Django or .NET for the backend, and it will largely be dependent on the best resource we find and their skill set. On the frontend, we are are planning to use Angular (to be consistent with our other applications).
I have hired two other Django developers that I found through this subreddit in the past, and they both have been awesome, so hoping for a similar experience again.
The job is located in College Station, TX. In a perfect world, the candidate we choose would be close to this location, but I am open to hiring a remote resource if we can't find the right person close (some travel will be required, especially at the beginning if this is the case). The primary reason we would like the resource to be close is that they will need to work with the existing product team to understand the existing product in order to build automation and tooling to simplify the configuration and deployment
/r/django
https://redd.it/1kii3az
I work for a large public sector software company and I am looking to hire a full-time Django full stack engineer (US citizens only due to security compliance for some of the data we deal with). We are deciding between Django or .NET for the backend, and it will largely be dependent on the best resource we find and their skill set. On the frontend, we are are planning to use Angular (to be consistent with our other applications).
I have hired two other Django developers that I found through this subreddit in the past, and they both have been awesome, so hoping for a similar experience again.
The job is located in College Station, TX. In a perfect world, the candidate we choose would be close to this location, but I am open to hiring a remote resource if we can't find the right person close (some travel will be required, especially at the beginning if this is the case). The primary reason we would like the resource to be close is that they will need to work with the existing product team to understand the existing product in order to build automation and tooling to simplify the configuration and deployment
/r/django
https://redd.it/1kii3az
Reddit
From the django community on Reddit: Looking for Full Stack Django Engineer (Django/Angular)
Explore this post and more from the django community
JetBrains will no longer provide binary builds of PyCharm Community Edition after version 2025.2
As the title says, PyCharm Community Edition will only be available in source code form after version 2025.2
Users will be forced to build PyCharm Community Edition from source or switch to the proprietary Unified edition of PyCharm.
https://www.jetbrains.com/help/pycharm/unified-pycharm.html#next-steps
/r/Python
https://redd.it/1kitdld
As the title says, PyCharm Community Edition will only be available in source code form after version 2025.2
Users will be forced to build PyCharm Community Edition from source or switch to the proprietary Unified edition of PyCharm.
https://www.jetbrains.com/help/pycharm/unified-pycharm.html#next-steps
/r/Python
https://redd.it/1kitdld
PyCharm Help
Unified PyCharm overview | PyCharm
I made a Vim Game in Python
I made a vim game in python using pygame. I would describe it as if Letter Invaders from Typing Tutor 7 had vim motions. It is in the early stages of development, so please go easy in the comments.
\#What My Project Does
It is a vim game in pygame designed to help the user build up speed and familiarity with the vim motions
\#Target Audience
People who use vim and want to become fast with the motions
\#Comparison
Alternative games include VimBeGood and Golf.Vim. This is closer to VimBeGood, in that it focuses on building up speed, rather than giving the user a single puzzle to study.
\# Repo
https://github.com/RaphaelKMandel/chronicles-of-vimia
/r/Python
https://redd.it/1kiseo7
I made a vim game in python using pygame. I would describe it as if Letter Invaders from Typing Tutor 7 had vim motions. It is in the early stages of development, so please go easy in the comments.
\#What My Project Does
It is a vim game in pygame designed to help the user build up speed and familiarity with the vim motions
\#Target Audience
People who use vim and want to become fast with the motions
\#Comparison
Alternative games include VimBeGood and Golf.Vim. This is closer to VimBeGood, in that it focuses on building up speed, rather than giving the user a single puzzle to study.
\# Repo
https://github.com/RaphaelKMandel/chronicles-of-vimia
/r/Python
https://redd.it/1kiseo7
GitHub
GitHub - RaphaelKMandel/chronicles-of-vimia
Contribute to RaphaelKMandel/chronicles-of-vimia development by creating an account on GitHub.
How to deploy?
Hello guys !! Iam new to flask , learnt and made a small application using flask , HTML , CSS , JS . Iam not understanding how to deploy it? . Iam from MERN stack background . I use vercel , netlify , firebase more to deploy those . But iam stuck with flask deployment . Can anyone help me out?
/r/flask
https://redd.it/1kiozil
Hello guys !! Iam new to flask , learnt and made a small application using flask , HTML , CSS , JS . Iam not understanding how to deploy it? . Iam from MERN stack background . I use vercel , netlify , firebase more to deploy those . But iam stuck with flask deployment . Can anyone help me out?
/r/flask
https://redd.it/1kiozil
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/1kix1lf
# 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/1kix1lf
Amazon
Fluent Python: Clear, Concise, and Effective Programming
Fluent Python: Clear, Concise, and Effective Programming [Ramalho, Luciano] on Amazon.com. *FREE* shipping on qualifying offers. Fluent Python: Clear, Concise, and Effective Programming
I uploaded my flask app in a shared hosting with cpanel, but getting 404 error
I uploaded my flask app and install that app as a package. I have no terminal access beacuse of shared hosting. All i can do is run script through cpanel run-script interface.
if i include blueprint or routing in
what is the solution, is there will be any problem if i use
thanks in advance.
/r/flask
https://redd.it/1kizc3x
I uploaded my flask app and install that app as a package. I have no terminal access beacuse of shared hosting. All i can do is run script through cpanel run-script interface.
if i include blueprint or routing in
__init__.py, at the root of the package where passenger_wsgi.py located all routing works without any error. But if i have routing or blueprints in app.py, even in that same directory, i get 404 error.what is the solution, is there will be any problem if i use
__init__.py thanks in advance.
/r/flask
https://redd.it/1kizc3x
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
D Best Way to Incorporate Edge Scores into Transformer After GNN?
Hi everyone,
I’m working on a social recommendation system using GNNs for link prediction. I want to add a Transformer after the GNN to refine embeddings and include score ratings (edge features).
I haven’t found papers that show how to pass score ratings into the Transformer. Some mention projecting the scalar into an embedding. Does adding the score rating or the relation scalar is not recommended ?
Has anyone dealt with this before please?
/r/MachineLearning
https://redd.it/1kj7ylw
Hi everyone,
I’m working on a social recommendation system using GNNs for link prediction. I want to add a Transformer after the GNN to refine embeddings and include score ratings (edge features).
I haven’t found papers that show how to pass score ratings into the Transformer. Some mention projecting the scalar into an embedding. Does adding the score rating or the relation scalar is not recommended ?
Has anyone dealt with this before please?
/r/MachineLearning
https://redd.it/1kj7ylw
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
🚀 I Built a Django App to Track Income, Expenses, Crypto & Bank Accounts – Django Income Tracking
# Hey everyone!
I'm excited to share a personal project I've been working on: **Django Income Tracking** – a web app built with Django to help you get a comprehensive overview of your finances.
Check out how it looks here -> [https://www.youtube.com/watch?v=piMv2jAwbo8](https://www.youtube.com/watch?v=piMv2jAwbo8)
Get the code here -> [https://github.com/vic-cieslak/portfolio-income-manager](https://github.com/vic-cieslak/portfolio-income-manager)
Let me know what you think! No strings attached ;p
# 💼 What can it do?
* **Track Income**: Log income from multiple sources, categorize it, and calculate totals based on hourly rates.
* **Manage Expenses**: Track and categorize your spending to stay on top of your budget.
* **Oversee Your Portfolio**: Monitor cryptocurrency investments (real-time prices via CoinGecko) and bank account balances.
* **Interactive Dashboard**: View your net worth, monthly summaries, portfolio breakdowns, and recent transactions – all visualized with dynamic charts.
* **User Settings**: Personalize your experience (currency preferences coming soon!).
* **Modern UI**: Cyberpunk-inspired, responsive design for both desktop and mobile.
# 🛠 Tech Stack
* **Backend**: Django, Python
* **Frontend**: HTML, CSS, JavaScript, Bootstrap 5
* **Database**: SQLite (default)
* **Charts**: Chart.js
* **Package Management**: Poetry
I built this to manage my own finances in one place and decided to share it with the community. It’s still evolving, with future features planned like advanced forecasting and client management.
The [`README.md`](http://README.md) includes full feature descriptions and
/r/django
https://redd.it/1kj9a50
# Hey everyone!
I'm excited to share a personal project I've been working on: **Django Income Tracking** – a web app built with Django to help you get a comprehensive overview of your finances.
Check out how it looks here -> [https://www.youtube.com/watch?v=piMv2jAwbo8](https://www.youtube.com/watch?v=piMv2jAwbo8)
Get the code here -> [https://github.com/vic-cieslak/portfolio-income-manager](https://github.com/vic-cieslak/portfolio-income-manager)
Let me know what you think! No strings attached ;p
# 💼 What can it do?
* **Track Income**: Log income from multiple sources, categorize it, and calculate totals based on hourly rates.
* **Manage Expenses**: Track and categorize your spending to stay on top of your budget.
* **Oversee Your Portfolio**: Monitor cryptocurrency investments (real-time prices via CoinGecko) and bank account balances.
* **Interactive Dashboard**: View your net worth, monthly summaries, portfolio breakdowns, and recent transactions – all visualized with dynamic charts.
* **User Settings**: Personalize your experience (currency preferences coming soon!).
* **Modern UI**: Cyberpunk-inspired, responsive design for both desktop and mobile.
# 🛠 Tech Stack
* **Backend**: Django, Python
* **Frontend**: HTML, CSS, JavaScript, Bootstrap 5
* **Database**: SQLite (default)
* **Charts**: Chart.js
* **Package Management**: Poetry
I built this to manage my own finances in one place and decided to share it with the community. It’s still evolving, with future features planned like advanced forecasting and client management.
The [`README.md`](http://README.md) includes full feature descriptions and
/r/django
https://redd.it/1kj9a50
Is there any huge diference between django 4 and 5?
Hello, I've just started learning django and I was looking for books to get deeper, and the question remains is, is there any huge diference between django 4 and 5, because all the books I've got is for django 4.
/r/djangolearning
https://redd.it/1kh75fp
Hello, I've just started learning django and I was looking for books to get deeper, and the question remains is, is there any huge diference between django 4 and 5, because all the books I've got is for django 4.
/r/djangolearning
https://redd.it/1kh75fp
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
I fully developed and deployed my first website!
\# What My Project Does
I've been learning to code for a few years now but all projects I've developed have either been too inconsequential or abandoned. That changed a few months back when a relative asked me to help him make a portfolio. I had three ways of going about it.
1. Make the project completely static and hard code every message and image in the HTML.
2. Use WordPress.
3. Fully develop it from scratch.
I decided to go with option 3 for three main reasons, making it fully static means every change they want to make to the site they would need me, WordPress would have been nice but the plugins ecosystem seemed way too expensive for the budget we were working with, and making it from scratch also means portfolio for myself so we both get a benefit out of it.
The website is an Interior Design portfolio. Content-wise it isn't too demanding, just images and text related to those images. The biggest issue came from making it fully editable, I had to develop an editor from scratch and it's the main reason I don't want to touch CSS ever again 😛.
The full stack is as follows. Everything is dockerized and put
/r/Python
https://redd.it/1kjdt6n
\# What My Project Does
I've been learning to code for a few years now but all projects I've developed have either been too inconsequential or abandoned. That changed a few months back when a relative asked me to help him make a portfolio. I had three ways of going about it.
1. Make the project completely static and hard code every message and image in the HTML.
2. Use WordPress.
3. Fully develop it from scratch.
I decided to go with option 3 for three main reasons, making it fully static means every change they want to make to the site they would need me, WordPress would have been nice but the plugins ecosystem seemed way too expensive for the budget we were working with, and making it from scratch also means portfolio for myself so we both get a benefit out of it.
The website is an Interior Design portfolio. Content-wise it isn't too demanding, just images and text related to those images. The biggest issue came from making it fully editable, I had to develop an editor from scratch and it's the main reason I don't want to touch CSS ever again 😛.
The full stack is as follows. Everything is dockerized and put
/r/Python
https://redd.it/1kjdt6n
Reddit
From the Python community on Reddit
Explore this post and more from the Python community