Real Python: Managing Dependencies With Python Poetry
Link: https://realpython.com/courses/managing-dependencies-with-poetry/
When your Python project relies on external packages, you need to make sure you’re using the right version of each package. After an update, a package might not work as it did before. A dependency man
Link: https://realpython.com/courses/managing-dependencies-with-poetry/
When your Python project relies on external packages, you need to make sure you’re using the right version of each package. After an update, a package might not work as it did before. A dependency man
Realpython
Managing Dependencies With Python Poetry – Real Python
Learn how Python Poetry can help you start new projects, maintain existing ones, and master dependency management.
PyCoder’s Weekly: Issue #657 (Nov. 26, 2024)
Link: https://pycoders.com/issues/657
#657 – NOVEMBER 26, 2024 View in Browser » NumPy Practical Examples: Useful Techniques In this tutorial, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data
Link: https://pycoders.com/issues/657
#657 – NOVEMBER 26, 2024 View in Browser » NumPy Practical Examples: Useful Techniques In this tutorial, you’ll learn how to use NumPy by exploring several interesting examples. You’ll read data
Pycoders
PyCoder’s Weekly | Issue #657
Issue #657 of the PyCoder’s Weekly newsletter, published Nov. 26, 2024.
Armin Ronacher: Constraints are Good: Python's Metadata Dilemma
Link: http://lucumr.pocoo.org/2024/11/26/python-packaging-metadata
There is currently an effort underway to build a new universal lockfile
standard for Python, most of which is taking place on the Python
discussion forum. This initiative has highlighted the difficul
Link: http://lucumr.pocoo.org/2024/11/26/python-packaging-metadata
There is currently an effort underway to build a new universal lockfile
standard for Python, most of which is taking place on the Python
discussion forum. This initiative has highlighted the difficul
Armin Ronacher's Thoughts and Writings
Constraints are Good: Python's Metadata Dilemma
Some of the issues of why Python packaging is unnecessarily hard.
EuroPython Society: List of EPS Board Candidates for 2024/2025
Link: https://www.europython-society.org/list-of-eps-board-candidates-for-2024-2025/
At this year’s EuroPython Society General Assembly (GA), planned for Sunday, December 1st, 2024, 20:00 CET, we will vote in a new board of the EuroPython Society for the term 2024/2025List of Board Ca
Link: https://www.europython-society.org/list-of-eps-board-candidates-for-2024-2025/
At this year’s EuroPython Society General Assembly (GA), planned for Sunday, December 1st, 2024, 20:00 CET, we will vote in a new board of the EuroPython Society for the term 2024/2025List of Board Ca
EuroPython Society
List of EPS Board Candidates for 2024/2025
At this year’s EuroPython Society General Assembly (GA), planned for Sunday, December 1st, 2024, 20:00 CET, we will vote in a new board of the EuroPython Society for the term 2024/2025 List of Board CandidatesThe EPS bylaws require one chair, one vice chair…
Brett Cannon: What the PSF Conduct WG does
Link: https://snarky.ca/what-the-psf-conduct-wg-does/
In the past week I had two people separately tell me what they thought the PSF Conduct WG did and both were wrong (and incidentally in the same way). As such, I wanted to clarify what exactly the WG d
Link: https://snarky.ca/what-the-psf-conduct-wg-does/
In the past week I had two people separately tell me what they thought the PSF Conduct WG did and both were wrong (and incidentally in the same way). As such, I wanted to clarify what exactly the WG d
Tall, Snarky Canadian
What the PSF Conduct WG does
In the past week I had two people separately tell me what they thought the Python Software Foundation Conduct WG did and both were wrong (and incidentally in the same way). As such, I wanted to clarify what exactly the WG does for people in case others also…
Django Weblog: Django 6.x Steering Council Candidate Registration
Link: https://www.djangoproject.com/weblog/2024/nov/27/django-6x-steering-council-candidate-registration/
Following our announcement of the 6.x Steering Council elections, today we open candidate registrations. Registrations will be open until December 4 2024 at 23:59 Anywhere on Earth.
Register as a Stee
Link: https://www.djangoproject.com/weblog/2024/nov/27/django-6x-steering-council-candidate-registration/
Following our announcement of the 6.x Steering Council elections, today we open candidate registrations. Registrations will be open until December 4 2024 at 23:59 Anywhere on Earth.
Register as a Stee
Django Project
Django 6.x Steering Council Candidate Registration
Posted by Thibaud Colas on Nov. 27, 2024
Kay Hayen: Nuitka Release 2.5
Link: https://nuitka.net/posts/nuitka-release-25.html
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release focused on Python 3.13 support, but also on improved
compatib
Link: https://nuitka.net/posts/nuitka-release-25.html
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release focused on Python 3.13 support, but also on improved
compatib
PyPodcats: Episode 7: With Anna Makarudze
Link: https://pypodcats.live/episodes/ep-7/
Learn about Anna's journey. Since discovering Python and Django in 2015, Anna has been actively contributing to the Django community and taking up leadership roles within DSF and Django Girls.Learn ab
Link: https://pypodcats.live/episodes/ep-7/
Learn about Anna's journey. Since discovering Python and Django in 2015, Anna has been actively contributing to the Django community and taking up leadership roles within DSF and Django Girls.Learn ab
pypodcats.live
Episode 7 with Anna Makarudze
Learn about Anna's journey. Since discovering Python and Django in 2015, Anna has been actively contributing to the Django community and taking up leadership roles within DSF and Django Girls.
Real Python: Continuous Integration and Deployment for Python With GitHub Actions
Link: https://realpython.com/github-actions-python/
Creating software is an achievement worth celebrating. But software is never static. Bugs need to be fixed, features need to be added, and security demands regular updates. In today’s landscape, with
Link: https://realpython.com/github-actions-python/
Creating software is an achievement worth celebrating. But software is never static. Bugs need to be fixed, features need to be added, and security demands regular updates. In today’s landscape, with
Realpython
Continuous Integration and Deployment for Python With GitHub Actions – Real Python
With most software following agile methodologies, it's essential to have robust DevOps systems in place to manage, maintain, and automate common tasks with a continually changing codebase. By using GitHub Actions, you can automate your workflows efficiently…
Programiz: Python List
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Link: https://www.programiz.com/python-programming/list
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
Programiz
Python List (With Examples)
Python lists store multiple data together in a single variable. In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
PyCharm: Simplify ML Workflows With Hugging Face and PyCharm
Link: https://blog.jetbrains.com/pycharm/2024/11/hugging-face-integration/
Ready to boost your workflows with pre-trained ML models?
PyCharm‘s integration with Hugging Face is designed to bring a new level of productivity to your machine learning and development workflows.
Link: https://blog.jetbrains.com/pycharm/2024/11/hugging-face-integration/
Ready to boost your workflows with pre-trained ML models?
PyCharm‘s integration with Hugging Face is designed to bring a new level of productivity to your machine learning and development workflows.
The JetBrains Blog
Simplify ML Workflows With Hugging Face and PyCharm | The PyCharm Blog
Boost your machine learning and development productivity with PyCharm’s Hugging Face integration.
Bruno Ponne / Coding The Past: How to calculate Z-Scores in Python
Link: https://www.codingthepast.com/2024/11/28/Python-z-score.html
If you’ve worked with statistical data, you’ve likely encountered z-scores. A z-score measures how far a data point is from the mean, expressed in terms of standard deviations. It helps identify outl
Link: https://www.codingthepast.com/2024/11/28/Python-z-score.html
If you’ve worked with statistical data, you’ve likely encountered z-scores. A z-score measures how far a data point is from the mean, expressed in terms of standard deviations. It helps identify outl
Codingthepast
How to calculate Z-Scores in Python
Master statistics by learning how to calculate and visualize Z-scores in Python. Learn data visualization techniques and enhance your statistical analysis skills!
Python GUIs: Building a Translation Application Using Tkinter — Translate Your Text With Python and Tkinter
Link: https://www.pythonguis.com/examples/translator-app-tkinter-google/
Whether learning a new natural language or just browsing foreign websites, you sometimes come across text that you want to read but is written in a language you don't fully understand. To translate on
Link: https://www.pythonguis.com/examples/translator-app-tkinter-google/
Whether learning a new natural language or just browsing foreign websites, you sometimes come across text that you want to read but is written in a language you don't fully understand. To translate on
Python GUIs
Build a desktop Translator using Python & Tkinter
In this tutorial, you'll go through a series of steps to build a translator app with Tkinter and Python. Whether learning a new natural language or just browsing foreign websites, you sometimes come across text that you want to read but is written in a language…
Kushal Das: Amnesty seminar on activism
Link: https://kushaldas.in/posts/amnesty-workshop-on-activism.html
2 Weeks ago I was down with fever, but as I became better after a few days I managed to attend Amnesty International's Stockholm chapter's event on activism. I had to travel to a different part of S
Link: https://kushaldas.in/posts/amnesty-workshop-on-activism.html
2 Weeks ago I was down with fever, but as I became better after a few days I managed to attend Amnesty International's Stockholm chapter's event on activism. I had to travel to a different part of S
Real Python: The Real Python Podcast – Episode #230: marimo: Reactive Notebooks and Deployable Web Apps in Python
Link: https://realpython.com/podcasts/rpp/230/
What are common issues with using notebooks for Python development? How do you know the current state, share reproducible results, or create interactive applications? This week on the show, we speak w
Link: https://realpython.com/podcasts/rpp/230/
What are common issues with using notebooks for Python development? How do you know the current state, share reproducible results, or create interactive applications? This week on the show, we speak w
Realpython
Episode #230: marimo: Reactive Notebooks and Deployable Web Apps in Python – The Real Python Podcast
What are common issues with using notebooks for Python development? How do you know the current state, share reproducible results, or create interactive applications? This week on the show, we speak with Akshay Agrawal about the open-source reactive marimo…
Anwesha Das: Keynote at PyLadiesCon!
Link: http://anweshadas.in/pyladiescon-keynote/
Since the very inception of my journey in Python and PyLadies, I have always thought of having a PyLadies Conference, a celebration of PyLadies. There were conversations here and there, but nothing wa
Link: http://anweshadas.in/pyladiescon-keynote/
Since the very inception of my journey in Python and PyLadies, I have always thought of having a PyLadies Conference, a celebration of PyLadies. There were conversations here and there, but nothing wa
Law Explained India
Keynote at PyLadiesCon!
Since the very inception of my journey in Python and PyLadies, I have always thought of having a PyLadies Conference, a celebration of PyLadies. There were conversations here and there, but nothing was fruitful then. In 2023, Mariatta, Cheuk, Maria Jose,…
Spyder IDE: The inside scoop on Spyder 6's new remote development platform
Link: https://www.spyder-ide.org/blog/spyder-6-remote-development
Spyder 6 includes a brand new remote development platform, building the foundations for enabling Spyder to easily leverage the power and data of remote desktops, servers, clusters and the cloud from a
Link: https://www.spyder-ide.org/blog/spyder-6-remote-development
Spyder 6 includes a brand new remote development platform, building the foundations for enabling Spyder to easily leverage the power and data of remote desktops, servers, clusters and the cloud from a
EuroPython: EuroPython Society 2024 fellows
Link: https://blog.europython.eu/europython-society-2024-fellows/
Hi everyone! A warm welcome to the newly elected EuroPython Society Fellows in the year 2024. Laís CarvalhoCyril BitterichEuroPython Society FellowsEuroPython Society Fellows have contributed signific
Link: https://blog.europython.eu/europython-society-2024-fellows/
Hi everyone! A warm welcome to the newly elected EuroPython Society Fellows in the year 2024. Laís CarvalhoCyril BitterichEuroPython Society FellowsEuroPython Society Fellows have contributed signific
EuroPython Blog
EuroPython Society 2024 fellows
Hi everyone! A warm welcome to the newly elected EuroPython Society Fellows in the year 2024.
* Laís Carvalho
* Cyril Bitterich
EuroPython Society Fellows
EuroPython Society Fellows have contributed significantly towards our mission, the EuroPython conference and…
* Laís Carvalho
* Cyril Bitterich
EuroPython Society Fellows
EuroPython Society Fellows have contributed significantly towards our mission, the EuroPython conference and…
Real Python: Logging in Python
Link: https://realpython.com/python-logging/
Logging in Python lets you record important information about your program’s execution. You use the built-in logging module to capture logs, which provide insights into application flow, errors, and u
Link: https://realpython.com/python-logging/
Logging in Python lets you record important information about your program’s execution. You use the built-in logging module to capture logs, which provide insights into application flow, errors, and u
Realpython
Logging in Python – Real Python
If you use Python's print() function to get information about the flow of your programs, then logging is the natural next step for you. This tutorial will guide you through creating your first logs and show you ways to curate them to grow with your projects.
Real Python: What Does if __name__ == "__main__" Do in Python?
Link: https://realpython.com/if-name-main-python/
The if __name__ == "__main__" idiom is a Python construct that helps control code execution in scripts. It’s a conditional statement that allows you to define code that runs only when the file is exec
Link: https://realpython.com/if-name-main-python/
The if __name__ == "__main__" idiom is a Python construct that helps control code execution in scripts. It’s a conditional statement that allows you to define code that runs only when the file is exec
Realpython
What Does if __name__ == "__main__" Do in Python? – Real Python
See how Python's if __name__ == "__main__" check runs code only when the file is executed, so your imports stay clean and your scripts gain a clear entry point.