Python 3.12 vs Python 3.13 – performance testing
This article describes the performance testing results of Python 3.13 compared to Python 3.12. A total of 100 various benchmark tests were conducted on computers with the AMD Ryzen 7000 series and the 13th-generation of Intel Core processors for desktops, laptops or mini PCs.
https://en.lewoniewski.info/2024/python-3-12-vs-python-3-13-performance-testing/
/r/Python
https://redd.it/1g3gb73
This article describes the performance testing results of Python 3.13 compared to Python 3.12. A total of 100 various benchmark tests were conducted on computers with the AMD Ryzen 7000 series and the 13th-generation of Intel Core processors for desktops, laptops or mini PCs.
https://en.lewoniewski.info/2024/python-3-12-vs-python-3-13-performance-testing/
/r/Python
https://redd.it/1g3gb73
Lewoniewski
Python 3.12 vs Python 3.13 – performance testing
This article describes the performance testing results of Python 3.13 compared to Python 3.12. A total of 100 various benchmark tests were conducted on computers with the AMD Ryzen 7000 series and the 13th-generation of Intel Core processors for desktops…
Hi! 😊 I'm a self-taught backend developer
I've learned Django, REST API, Docker just finished learning it today and it was easy and fun , and many other skills.
Here’s a list of what I've learned so far:
django
Django rest
Docker
javaScript
MySQL
Git/GitHub
Django channels
html and css
I've also completed several projects, including:
ecommerce website
Real-time chat app
To-do list app
CRUD application
Portfolio website
I’m not sure what to learn next to land a job i have nobdy to guide my what to do next im right know in a rabbit hole . Any advice would be awesome! 🙏
/r/django
https://redd.it/1g432ly
I've learned Django, REST API, Docker just finished learning it today and it was easy and fun , and many other skills.
Here’s a list of what I've learned so far:
django
Django rest
Docker
javaScript
MySQL
Git/GitHub
Django channels
html and css
I've also completed several projects, including:
ecommerce website
Real-time chat app
To-do list app
CRUD application
Portfolio website
I’m not sure what to learn next to land a job i have nobdy to guide my what to do next im right know in a rabbit hole . Any advice would be awesome! 🙏
/r/django
https://redd.it/1g432ly
Reddit
From the django community on Reddit
Explore this post and more from the django community
Keep posting your wins
Hello guys keep telling us your wins. That keeps many of us motivated bigtime, and remember there is no small or big wins...a win is a win.
/r/djangolearning
https://redd.it/1g44tql
Hello guys keep telling us your wins. That keeps many of us motivated bigtime, and remember there is no small or big wins...a win is a win.
/r/djangolearning
https://redd.it/1g44tql
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Requiring approval for certain actions
Hello,
I am trying to figure out if there is a way for me to implement some form of authorization for an action to occur for example if someone wants to do a task on the web app which would change a lot of data I want that action to have to be approved by someone else first, is there a known way in which this could be implemented in flask?
/r/flask
https://redd.it/1g4eryb
Hello,
I am trying to figure out if there is a way for me to implement some form of authorization for an action to occur for example if someone wants to do a task on the web app which would change a lot of data I want that action to have to be approved by someone else first, is there a known way in which this could be implemented in flask?
/r/flask
https://redd.it/1g4eryb
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Pyro5 and other similar packages
Does anyone use Pyro5 to work with Python objects over a network? What are the pros and cons of using the package? Are there other Python packages that offer this functionality?
/r/Python
https://redd.it/1g4d554
Does anyone use Pyro5 to work with Python objects over a network? What are the pros and cons of using the package? Are there other Python packages that offer this functionality?
/r/Python
https://redd.it/1g4d554
GitHub
GitHub - irmen/Pyro5: Pyro 5 - Python remote objects
Pyro 5 - Python remote objects. Contribute to irmen/Pyro5 development by creating an account on GitHub.
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/1g4m6wp
# 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/1g4m6wp
Discord
Join the Python Discord Server!
We're a large community focused around the Python programming language. We believe that anyone can learn to code. | 413614 members
Pre-commit hooks that autogenerate iPython notebook diffs
What My Project Does
Nowadays, I use iPython notebooks a lot in my software development nowadays. It's a nice way to debug things without having to fire up pdb; I'll often use it when I'm trying to debug and explore a new API.
Unfortunately, notebooks are really hard to diff in Git. I use magit and git diffs pretty extensively when I change code, and I rely heavily them to make sure I haven't introduced typos or bugs. iPython notebooks are just JSON blobs, though, so git gives me a horrible, incoherent mess. I basically commit them blindly without checking the code at all nowadays, which isn't ideal.
So to resolve this I generate a readable version of the notebook, and check the diff for that. Specifically, I wrote a noscript that extracts only the Python code from the iPython notebook (which is essentially a JSON file). Then, whenever I commit a change to the iPython notebook, it:
1. Automatically generates the Python-only version alongside the original notebook.
2. Commits both files to the repository.
To make sure it runs when I need it, I created a git pre-commit hook. Git's default pre-commit hooks are a little difficult to use, so I built a hook for
/r/Python
https://redd.it/1g4lntg
What My Project Does
Nowadays, I use iPython notebooks a lot in my software development nowadays. It's a nice way to debug things without having to fire up pdb; I'll often use it when I'm trying to debug and explore a new API.
Unfortunately, notebooks are really hard to diff in Git. I use magit and git diffs pretty extensively when I change code, and I rely heavily them to make sure I haven't introduced typos or bugs. iPython notebooks are just JSON blobs, though, so git gives me a horrible, incoherent mess. I basically commit them blindly without checking the code at all nowadays, which isn't ideal.
So to resolve this I generate a readable version of the notebook, and check the diff for that. Specifically, I wrote a noscript that extracts only the Python code from the iPython notebook (which is essentially a JSON file). Then, whenever I commit a change to the iPython notebook, it:
1. Automatically generates the Python-only version alongside the original notebook.
2. Commits both files to the repository.
To make sure it runs when I need it, I created a git pre-commit hook. Git's default pre-commit hooks are a little difficult to use, so I built a hook for
/r/Python
https://redd.it/1g4lntg
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
D Self-Promotion Thread
Please post your personal projects, startups, product placements, collaboration needs, blogs etc.
Please mention the payment and pricing requirements for products and services.
Please do not post link shorteners, link aggregator websites , or auto-subscribe links.
--
Any abuse of trust will lead to bans.
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 noscript.
--
Meta: This is an experiment. If the community doesnt like this, we will cancel it. This is to encourage those in the community to promote their work by not spamming the main threads.
/r/MachineLearning
https://redd.it/1g2fmfw
Please post your personal projects, startups, product placements, collaboration needs, blogs etc.
Please mention the payment and pricing requirements for products and services.
Please do not post link shorteners, link aggregator websites , or auto-subscribe links.
--
Any abuse of trust will lead to bans.
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 noscript.
--
Meta: This is an experiment. If the community doesnt like this, we will cancel it. This is to encourage those in the community to promote their work by not spamming the main threads.
/r/MachineLearning
https://redd.it/1g2fmfw
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
Kanban-Tui, Moving Cards around in the Terminal
* **What My Project Does**
Kanban-Tui is a CLI application to manage tasks and (hopefully) makes you more productive.
It is quite customizable and my motivation was to have a better experience using the fantastic [textual](https://textual.textualize.io) package than with my
previous project [kanban-python](https://github.com/Zaloog/kanban-python) which just utilizes `rich`. It was also the first project, where I used `uv` and I wanted to get more comfortable with databases (sqlite).
With v0.2.0 I also included a `Demo Mode` to create a temporary database and config to play around and test things out.
You can find it on PyPi: [Link](https://pypi.org/project/kanban-tui/)
Source Code on github: [Link](https://github.com/Zaloog/kanban-tui)
* **Target Audience** (e.g., Is it meant for production, just a toy project, etc.)
For everyone who likes to work in the terminal and does not want to miss a more graphical Interface. It is ready to use, but I plan to add multiple boards feature after vacation. That might lead to a db schema change, so keep that in mind, when playing around.
* **Comparison** (A brief comparison explaining how it differs from existing alternatives.)
Its similar to kanban-python, but has not yet all the features.
Also with the TUI I was able to utilize vim-like motions to move cards around, which comes closer to the feeling of actually moving
/r/Python
https://redd.it/1g4huyp
* **What My Project Does**
Kanban-Tui is a CLI application to manage tasks and (hopefully) makes you more productive.
It is quite customizable and my motivation was to have a better experience using the fantastic [textual](https://textual.textualize.io) package than with my
previous project [kanban-python](https://github.com/Zaloog/kanban-python) which just utilizes `rich`. It was also the first project, where I used `uv` and I wanted to get more comfortable with databases (sqlite).
With v0.2.0 I also included a `Demo Mode` to create a temporary database and config to play around and test things out.
You can find it on PyPi: [Link](https://pypi.org/project/kanban-tui/)
Source Code on github: [Link](https://github.com/Zaloog/kanban-tui)
* **Target Audience** (e.g., Is it meant for production, just a toy project, etc.)
For everyone who likes to work in the terminal and does not want to miss a more graphical Interface. It is ready to use, but I plan to add multiple boards feature after vacation. That might lead to a db schema change, so keep that in mind, when playing around.
* **Comparison** (A brief comparison explaining how it differs from existing alternatives.)
Its similar to kanban-python, but has not yet all the features.
Also with the TUI I was able to utilize vim-like motions to move cards around, which comes closer to the feeling of actually moving
/r/Python
https://redd.it/1g4huyp
Textual Documentation
Textual - Home
Textual is a TUI framework for Python, inspired by modern web development.
Tips for Command Line Project
Hello! I'm making a short project to have a little experience creating a command line tool, as well as getting a project onto PyPI. Mainly, I'm doing this because I think it's cool, and it would be awesome if a friend could pip3 install my project and just have a CLI tool off the install, similar to how the `qrcode` Python library comes with the `qr` CLI tool when installed. If you have any tips **AT ALL** for anything you see, like project organization, overall Python usage, or too many commits (is that possible), please tell me, I'm a sponge for info!
I'm still making the GUI portion, but the actual command line part should be done!
Off a google search, I understand there is already a PyPI project [Jonathan Löfgren\](https://github.com/jonathanlofgren/running/blob/master/.gitignore) made some time ago for converting paces into different distance paces. The purpose of my project here is to get a little experience creating a CLI tool I could use along with the overall process of getting something onto PyPI that works. If what I'm doing is majorly wrong, however, please tell me, I don't know!
PyPI Page: https://pypi.org/project/paces-calc/
GitHub Source Code link: https://github.com/Vladimir-Herdman/Pace-Calculator
/r/Python
https://redd.it/1g4dzuy
Hello! I'm making a short project to have a little experience creating a command line tool, as well as getting a project onto PyPI. Mainly, I'm doing this because I think it's cool, and it would be awesome if a friend could pip3 install my project and just have a CLI tool off the install, similar to how the `qrcode` Python library comes with the `qr` CLI tool when installed. If you have any tips **AT ALL** for anything you see, like project organization, overall Python usage, or too many commits (is that possible), please tell me, I'm a sponge for info!
I'm still making the GUI portion, but the actual command line part should be done!
Off a google search, I understand there is already a PyPI project [Jonathan Löfgren\](https://github.com/jonathanlofgren/running/blob/master/.gitignore) made some time ago for converting paces into different distance paces. The purpose of my project here is to get a little experience creating a CLI tool I could use along with the overall process of getting something onto PyPI that works. If what I'm doing is majorly wrong, however, please tell me, I don't know!
PyPI Page: https://pypi.org/project/paces-calc/
GitHub Source Code link: https://github.com/Vladimir-Herdman/Pace-Calculator
/r/Python
https://redd.it/1g4dzuy
GitHub
running/.gitignore at master · jonathanlofgren/running
🏃♀️User-friendly running pace calculator 🏃. Contribute to jonathanlofgren/running development by creating an account on GitHub.
Annoying shade of tex field | tkinter
Here's a picture of it: https://i.imgur.com/9xSmZxn.png
I haven't seen anyone discuss this before so I am starting it.
/r/Python
https://redd.it/1g4cga9
Here's a picture of it: https://i.imgur.com/9xSmZxn.png
I haven't seen anyone discuss this before so I am starting it.
/r/Python
https://redd.it/1g4cga9
Imgur
Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users.
Censor words in audio using python
Hi! I'm 18 and recently started building Python projects to upgrade my portfolio. I have this little idea about censorship slurs (or any word) without editing the audio manually word by word. I'm really glad with the result, but I fell in love with the project so I will keep improving it.
# What My Project Does
Censorship-py is a Python library that allows you to censor specific words in an audio file based on a given list of words, replacing the given words with a Beep sound.
# Target Audience
Content creators, video editors, media
# Comparison
I didn't find many projects very similar to mine, but I leave this one here PyAudioCensor.
Let me know some ideas or what you think about my project!
/r/Python
https://redd.it/1g4ud6e
Hi! I'm 18 and recently started building Python projects to upgrade my portfolio. I have this little idea about censorship slurs (or any word) without editing the audio manually word by word. I'm really glad with the result, but I fell in love with the project so I will keep improving it.
# What My Project Does
Censorship-py is a Python library that allows you to censor specific words in an audio file based on a given list of words, replacing the given words with a Beep sound.
# Target Audience
Content creators, video editors, media
# Comparison
I didn't find many projects very similar to mine, but I leave this one here PyAudioCensor.
Let me know some ideas or what you think about my project!
/r/Python
https://redd.it/1g4ud6e
GitHub
GitHub - DanteUrdaneta/CENSORSHIP.PY: Censorship Audio is a Python library that allows you to censor specific words in an audio…
Censorship Audio is a Python library that allows you to censor specific words in an audio file based on a given list of words. The library outputs a censored version of the input audio, replacing t...
Suggestions for cloud databases?
I am writing a program in Python that will need to be used by a small team of people in different locations. The program will need to access a SQL or SQLite database and so the database needs to be stored and accessed remotely.
Can I please have your suggestions for this? It only needs to be for light usage with a small team of about 5 people max and likely only 2 max accessing it at the same time. I would prefer something free or if costs are involved something with trivial costs.
Thanks in advance.
/r/Python
https://redd.it/1g4up88
I am writing a program in Python that will need to be used by a small team of people in different locations. The program will need to access a SQL or SQLite database and so the database needs to be stored and accessed remotely.
Can I please have your suggestions for this? It only needs to be for light usage with a small team of about 5 people max and likely only 2 max accessing it at the same time. I would prefer something free or if costs are involved something with trivial costs.
Thanks in advance.
/r/Python
https://redd.it/1g4up88
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Parsera - website data extraction with minimal code
Python library for scraping websites that I am building for the last few months. The idea is to make data extraction as simple as:
from parsera import Parsera
url = "https://news.ycombinator.com/"
elements = {
"Title": "News noscript",
"Points": "Number of points",
}
scraper = Parsera()
result = scraper.run(url=url, elements=elements)
Check it out on GitHub and share your feedback: https://github.com/raznem/parsera
What My Project Does
It extracts data from websites without dealing with DOM structure and writing web scrapers.
Target Audience
Developers who are dealing with web-scraping in their data pipeline.
Comparison
Compared alternatives it’s easier to use, uses less tokens and works faster.
/r/Python
https://redd.it/1g4ubg4
Python library for scraping websites that I am building for the last few months. The idea is to make data extraction as simple as:
from parsera import Parsera
url = "https://news.ycombinator.com/"
elements = {
"Title": "News noscript",
"Points": "Number of points",
}
scraper = Parsera()
result = scraper.run(url=url, elements=elements)
Check it out on GitHub and share your feedback: https://github.com/raznem/parsera
What My Project Does
It extracts data from websites without dealing with DOM structure and writing web scrapers.
Target Audience
Developers who are dealing with web-scraping in their data pipeline.
Comparison
Compared alternatives it’s easier to use, uses less tokens and works faster.
/r/Python
https://redd.it/1g4ubg4
GitHub
GitHub - raznem/parsera: Lightweight library for scraping web-sites with LLMs
Lightweight library for scraping web-sites with LLMs - raznem/parsera
How secure is Django?
I have several years of experience building stuff with Flask - stitching authentication, rate limiting and such stuff myself. I started using Django recently. Django seems to want to make me think it does everything for me, but I'm paranoid. Which security considerations are worth taking into account when using Django? Does it actually handle anything besides authentication and SQL injections?
/r/django
https://redd.it/1g4wrsa
I have several years of experience building stuff with Flask - stitching authentication, rate limiting and such stuff myself. I started using Django recently. Django seems to want to make me think it does everything for me, but I'm paranoid. Which security considerations are worth taking into account when using Django? Does it actually handle anything besides authentication and SQL injections?
/r/django
https://redd.it/1g4wrsa
Reddit
From the django community on Reddit
Explore this post and more from the django community
Losing context path on /login with Flask-OIDC
I am running my app inside a Docker container with gunicorn.
In production, I run behind NGINX with a context path set.
For example, locally I would hit:
http://localhost:8085/fetch/path/to/file.txt
In production i would use:
https://my.domain.com/someapp/fetch/path/to/file.txt
One of the methods in my app is decorated like so:
@app.route(f'/fetch/<path:filepath>', methods='GET')
@oidc.requirelogin
def fetchfile(filepath):
try:
When I try this in production, the user is redirected to https://my.domain.com/login, where it should be
https://my.domain.com/someapp/login
It looks as though the path is being lost?
Is there some way to specify the oauth login URL?
My Nginx config looks like this:
proxysetheader X-Forwarded-For $httpxforwardedfor;
proxysetheader X-Forwarded-Proto $scheme;
proxyignoreclientabort on;
proxynocache 1;
proxycachebypass 1;
/r/flask
https://redd.it/1g4z9vw
I am running my app inside a Docker container with gunicorn.
In production, I run behind NGINX with a context path set.
For example, locally I would hit:
http://localhost:8085/fetch/path/to/file.txt
In production i would use:
https://my.domain.com/someapp/fetch/path/to/file.txt
One of the methods in my app is decorated like so:
@app.route(f'/fetch/<path:filepath>', methods='GET')
@oidc.requirelogin
def fetchfile(filepath):
try:
When I try this in production, the user is redirected to https://my.domain.com/login, where it should be
https://my.domain.com/someapp/login
It looks as though the path is being lost?
Is there some way to specify the oauth login URL?
My Nginx config looks like this:
proxysetheader X-Forwarded-For $httpxforwardedfor;
proxysetheader X-Forwarded-Proto $scheme;
proxyignoreclientabort on;
proxynocache 1;
proxycachebypass 1;
/r/flask
https://redd.it/1g4z9vw
I created a local directory site in Django
Still needs lots of improvement, but I created a local directory site for insect control companies.
https://insectcontrolcompanies.com
It’s designed to be reused to create other kinds of directories.
Hosted on Hetzner along with a few other projects on CapRover.
There are a few scheduled jobs, such as pulling in new company info, creating profile denoscriptions using GPT4, categorisation.
I started out using Celery for this but then realised it’s overkill, so now I just have a cron job on the base machine that runs a manage.py command inside the container. Works much better! And saves a lot of RAM (important when running multiple apps on €8 VM).
/r/djangolearning
https://redd.it/1g4vei9
Still needs lots of improvement, but I created a local directory site for insect control companies.
https://insectcontrolcompanies.com
It’s designed to be reused to create other kinds of directories.
Hosted on Hetzner along with a few other projects on CapRover.
There are a few scheduled jobs, such as pulling in new company info, creating profile denoscriptions using GPT4, categorisation.
I started out using Celery for this but then realised it’s overkill, so now I just have a cron job on the base machine that runs a manage.py command inside the container. Works much better! And saves a lot of RAM (important when running multiple apps on €8 VM).
/r/djangolearning
https://redd.it/1g4vei9
Insectcontrolcompanies
Pest Control Near You | Compare Prices & Reviews (2025)
Find vetted pest control companies near you. Compare services, reviews, response times and pricing to choose the right pro today.
Geo Guesser Game & Dynamic Notes
https://i.redd.it/7qfezluflyud1.gif
This is a project I've been working on, its a geo guesser game and a rich note taking tool along with a place for me to demonstrate other packages and software I develop.
Everything was built in Plotly / Dash and is hosted with Flask. Thought this would be an interesting project to show and tell because of how dynamic i've built it out to be.
Still actively in development so I would be interested to see what feedback anyone has about the UI or functionality of the few pages I've created.
Try the drawing tool:
https://dash.geomapindex.com/freeform
Play the geo guesser:
https://dash.geomapindex.com/geo\_game\_select
Documentation on Some individual components I've released:
https://pip-install-python.com/
Follow me on Github if you wan't to see how my programming journey unfolds or stay up to date on new component releases:
https://github.com/pip-install-python
Cheers,
Pip
/r/flask
https://redd.it/1g4e6d4
https://i.redd.it/7qfezluflyud1.gif
This is a project I've been working on, its a geo guesser game and a rich note taking tool along with a place for me to demonstrate other packages and software I develop.
Everything was built in Plotly / Dash and is hosted with Flask. Thought this would be an interesting project to show and tell because of how dynamic i've built it out to be.
Still actively in development so I would be interested to see what feedback anyone has about the UI or functionality of the few pages I've created.
Try the drawing tool:
https://dash.geomapindex.com/freeform
Play the geo guesser:
https://dash.geomapindex.com/geo\_game\_select
Documentation on Some individual components I've released:
https://pip-install-python.com/
Follow me on Github if you wan't to see how my programming journey unfolds or stay up to date on new component releases:
https://github.com/pip-install-python
Cheers,
Pip
/r/flask
https://redd.it/1g4e6d4
Criticize my project
Hi, i'm new to both python and Django, i started making this simple weather app to learn the basics of the framework. Please point out ways to improve and criticize things that i've done or got wrong. My project
/r/django
https://redd.it/1g594ta
Hi, i'm new to both python and Django, i started making this simple weather app to learn the basics of the framework. Please point out ways to improve and criticize things that i've done or got wrong. My project
/r/django
https://redd.it/1g594ta
GitHub
GitHub - jklzz02/weather-django: Django weather Application
Django weather Application. Contribute to jklzz02/weather-django development by creating an account on GitHub.
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/1g5dt6z
# 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/1g5dt6z
Reddit
From the Python community on Reddit
Explore this post and more from the Python community