PyCon: PyCon US 2025 Registration Launch!
Link: https://pycon.blogspot.com/2024/12/pycon-us-2025-registration-launch.html
The news you’ve been waiting for is finally here - registration for PyCon US 2025 is officially open!PyCon US will take place May 14 - May 22, 2025, in Pittsburgh, Pennsylvania at the David L. Lawrenc
Link: https://pycon.blogspot.com/2024/12/pycon-us-2025-registration-launch.html
The news you’ve been waiting for is finally here - registration for PyCon US 2025 is officially open!PyCon US will take place May 14 - May 22, 2025, in Pittsburgh, Pennsylvania at the David L. Lawrenc
Blogspot
PyCon US 2025 Registration Launch!
The news you’ve been waiting for is finally here - registration for PyCon US 2025 is officially open! PyCon US will take place May 14 - May ...
Real Python: When to Use a List Comprehension in Python
Link: https://realpython.com/list-comprehension-python/
List comprehensions in Python provide a concise way to create lists by embedding a loop and optional conditional logic in a single line. You use a list comprehension to transform and filter elements f
Link: https://realpython.com/list-comprehension-python/
List comprehensions in Python provide a concise way to create lists by embedding a loop and optional conditional logic in a single line. You use a list comprehension to transform and filter elements f
Realpython
When to Use a List Comprehension in Python – Real Python
Python list comprehensions help you to create lists while performing sophisticated filtering, mapping, and conditional logic on their members. In this tutorial, you'll learn when to use a list comprehension in Python and how to create them effectively.
Real Python: Python GUI Programming With Tkinter
Link: https://realpython.com/python-gui-tkinter/
Tkinter is Python’s standard GUI framework, making it convenient for developing graphical user interfaces. As a cross-platform library, Tkinter ensures your applications appear native across Windows,
Link: https://realpython.com/python-gui-tkinter/
Tkinter is Python’s standard GUI framework, making it convenient for developing graphical user interfaces. As a cross-platform library, Tkinter ensures your applications appear native across Windows,
Realpython
Python GUI Programming: Your Tkinter Tutorial – Real Python
Complete an interactive tutorial for Python's GUI library Tkinter. Add buttons, text boxes, widgets, event handlers, and more while building two GUI apps.
Real Python: How to Round Numbers in Python
Link: https://realpython.com/python-rounding/
Rounding numbers in Python is an essential task, especially when dealing with data precision. Python’s built-in round() function uses the rounding half to even strategy, which rounds numbers like 2.5
Link: https://realpython.com/python-rounding/
Rounding numbers in Python is an essential task, especially when dealing with data precision. Python’s built-in round() function uses the rounding half to even strategy, which rounds numbers like 2.5
Realpython
How to Round Numbers in Python – Real Python
In this tutorial, you'll learn what kinds of mistakes you might make when rounding numbers and how you can best manage or avoid them. It's a great place to start for the early-intermediate Python developer interested in using Python for finance, data science…
Real Python: Socket Programming in Python (Guide)
Link: https://realpython.com/python-sockets/
Socket programming is essential for network communication, enabling data exchange across different devices. In Python, sockets allow for inter-process communication (IPC) over networks. This tutorial
Link: https://realpython.com/python-sockets/
Socket programming is essential for network communication, enabling data exchange across different devices. In Python, sockets allow for inter-process communication (IPC) over networks. This tutorial
Realpython
Socket Programming in Python (Guide) – Real Python
In this in-depth tutorial, you'll learn how to build a socket server and client with Python. By the end of this tutorial, you'll understand how to use the main functions and methods in Python's socket module to write your own networked client-server applications.
Real Python: Linear Regression in Python
Link: https://realpython.com/linear-regression-in-python/
Linear regression is a foundational statistical tool for modeling the relationship between a dependent variable and one or more independent variables. It’s widely used in data science and machine lear
Link: https://realpython.com/linear-regression-in-python/
Linear regression is a foundational statistical tool for modeling the relationship between a dependent variable and one or more independent variables. It’s widely used in data science and machine lear
Realpython
Linear Regression in Python – Real Python
In this step-by-step tutorial, you'll get started with linear regression in Python. Linear regression is one of the fundamental statistical and machine learning techniques, and Python is a popular choice for machine learning.
Real Python: Python Timer Functions: Three Ways to Monitor Your Code
Link: https://realpython.com/python-timer/
A timer is a powerful tool for monitoring the performance of your Python code. By using the time.perf_counter() function, you can measure execution time with exceptional precision, making it ideal for
Link: https://realpython.com/python-timer/
A timer is a powerful tool for monitoring the performance of your Python code. By using the time.perf_counter() function, you can measure execution time with exceptional precision, making it ideal for
Realpython
Python Timer Functions: Three Ways to Monitor Your Code – Real Python
In this step-by-step tutorial, you'll learn how to use Python timer functions to monitor how quickly your programs are running. You'll use classes, context managers, and decorators to measure your program's running time. You'll also learn the benefits of…
Real Python: Effective Python Testing With pytest
Link: https://realpython.com/pytest-python-testing/
pytest is a popular testing framework for Python that simplifies the process of writing and executing tests. To start using pytest, install it with pip in a virtual environment. pytest offers several
Link: https://realpython.com/pytest-python-testing/
pytest is a popular testing framework for Python that simplifies the process of writing and executing tests. To start using pytest, install it with pip in a virtual environment. pytest offers several
Realpython
Effective Python Testing With pytest – Real Python
In this tutorial, you'll learn how to take your testing to the next level with pytest. You'll cover intermediate and advanced pytest features such as fixtures, marks, parameters, and plugins. With pytest, you can make your test suites fast, effective, and…
Real Python: Asynchronous Tasks With Django and Celery
Link: https://realpython.com/asynchronous-tasks-with-django-and-celery/
Integrating Celery with your Django application allows you to offload time-consuming tasks, ensuring smooth user experiences. Celery is a distributed task queue that processes tasks asynchronously, pr
Link: https://realpython.com/asynchronous-tasks-with-django-and-celery/
Integrating Celery with your Django application allows you to offload time-consuming tasks, ensuring smooth user experiences. Celery is a distributed task queue that processes tasks asynchronously, pr
Realpython
Asynchronous Tasks With Django and Celery – Real Python
In this tutorial, you'll learn how to integrate Celery and Django using Redis as a message broker. You'll refactor the synchronous email sending functionality of an existing Django app into an asynchronous task that you'll run with Celery instead.
Real Python: Using and Creating Global Variables in Your Python Functions
Link: https://realpython.com/python-use-global-variable-in-function/
In Python, global variables are accessible across your entire program, including within functions. Understanding how Python handles global variables is key to writing efficient code. This tutorial wil
Link: https://realpython.com/python-use-global-variable-in-function/
In Python, global variables are accessible across your entire program, including within functions. Understanding how Python handles global variables is key to writing efficient code. This tutorial wil
Realpython
Using and Creating Global Variables in Your Python Functions – Real Python
In this tutorial, you'll learn how to use global variables in Python functions using the global keyword or the built-in globals() function. You'll also learn a few strategies to avoid relying on global variables because they can lead to code that's difficult…
Real Python: How to Run Your Python Scripts and Code
Link: https://realpython.com/run-python-scripts/
Running a Python script is a fundamental task for any Python developer. You can execute a Python .py file through various methods depending on your environment and platform. On Windows, Linux, and mac
Link: https://realpython.com/run-python-scripts/
Running a Python script is a fundamental task for any Python developer. You can execute a Python .py file through various methods depending on your environment and platform. On Windows, Linux, and mac
Realpython
How to Run Your Python Scripts and Code – Real Python
A Python script or program is a file containing executable Python code. Being able to run Python scripts and code is probably the most important skill that you need as a Python developer. By running your code, you'll know if it works as planned.
Tryton News: Release of Relatorio 0.11.0
Link: https://discuss.tryton.org/t/release-of-relatorio-0-11-0/8104
We are proud to announce the release of Relatorio version 0.11.0.
Relatorio is a templating library mainly for OpenDocument using also OpenDocument as source format.
This is a feature release which:
Link: https://discuss.tryton.org/t/release-of-relatorio-0-11-0/8104
We are proud to announce the release of Relatorio version 0.11.0.
Relatorio is a templating library mainly for OpenDocument using also OpenDocument as source format.
This is a feature release which:
Tryton Discussion
Release of Relatorio 0.11.0
We are proud to announce the release of Relatorio version 0.11.0. Relatorio is a templating library mainly for OpenDocument using also OpenDocument as source format. This is a feature release which: Allow setting zip file generation options on opendocument…
Zato Blog: New API Integration Tutorial in Python
Link: https://zato.io/en/blog/api-integration-tutorial.html
New API Integration Tutorial in Python
2024-12-09, by Dariusz Suchojad
Do you know what
airports,
telecom operators,
defense forces
and
health care organizations
have in common?
They all rely h
Link: https://zato.io/en/blog/api-integration-tutorial.html
New API Integration Tutorial in Python
2024-12-09, by Dariusz Suchojad
Do you know what
airports,
telecom operators,
defense forces
and
health care organizations
have in common?
They all rely h
death and gravity: reader 3.16 released – Archived feed
Link: https://death.andgravity.com/reader-3-16
Hi there!
I'm happy to announce version 3.16 of reader, a Python feed reader library.
What's new? #
Here are the highlights since reader 3.15.
Archived feed #
It is now possible to archive selected en
Link: https://death.andgravity.com/reader-3-16
Hi there!
I'm happy to announce version 3.16 of reader, a Python feed reader library.
What's new? #
Here are the highlights since reader 3.15.
Archived feed #
It is now possible to archive selected en
Mike Driscoll: JupyterLab 101 Book is Now Available
Link: https://www.blog.pythonlibrary.org/2024/12/09/jupyterlab-101-book-is-now-available/
JupyterLab, the latest iteration of the Jupyter Notebook, is a versatile tool that empowers you to share your code in an easily understandable format.
Front View Two Hard Cover Book Psd Mockup
Hundred
Link: https://www.blog.pythonlibrary.org/2024/12/09/jupyterlab-101-book-is-now-available/
JupyterLab, the latest iteration of the Jupyter Notebook, is a versatile tool that empowers you to share your code in an easily understandable format.
Front View Two Hard Cover Book Psd Mockup
Hundred
Mouse Vs Python
JupyterLab 101 Book is Now Available - Mouse Vs Python
JupyterLab, the latest iteration of the Jupyter Notebook, is a versatile tool that empowers you to share your code in an easily understandable format.
Real Python: Python News Roundup: December 2024
Link: https://realpython.com/python-news-december-2024/
The Python community has kept up its momentum this month, delivering a host of exciting updates. From the promising improvements to template strings in PEP 750 to the release of Python 3.14.0a2, innov
Link: https://realpython.com/python-news-december-2024/
The Python community has kept up its momentum this month, delivering a host of exciting updates. From the promising improvements to template strings in PEP 750 to the release of Python 3.14.0a2, innov
Realpython
Python News Roundup: December 2024 – Real Python
This month brings exciting updates, including improvements to template strings in PEP 750 and the release of Python 3.14.0a2. There are new features to explore in many third-party libraries, such as Pydantic. Also, PyCon's call for proposals deadline is near…
Python⇒Speed: Reducing CO₂ emissions with faster software
Link: https://pythonspeed.com/articles/co2-emissions-software/
What can you as a software developer do to fight climate change?
My first and primary answer is getting involved with local politics.
However, if you write software that operates at sufficient scale,
Link: https://pythonspeed.com/articles/co2-emissions-software/
What can you as a software developer do to fight climate change?
My first and primary answer is getting involved with local politics.
However, if you write software that operates at sufficient scale,
Python⇒Speed
Reducing CO₂ emissions with faster software
Speeding up your software can reduce carbon emissions from running your software, two different ways.
Seth Michael Larson: New experimental Debian package for Cosign (Sigstore)
Link: https://sethmlarson.dev/cosign-and-debian?utm_campaign=rss
New experimental Debian package for Cosign (Sigstore)
Link: https://sethmlarson.dev/cosign-and-debian?utm_campaign=rss
New experimental Debian package for Cosign (Sigstore)
sethmlarson.dev
New experimental Debian package for Cosign (Sigstore)
Cosign has a new experimental package available for Debian
thanks to the work of Simon Josefsson. Simon and I had an email
exchange about Sigstore and Cosign on Debian after the discussion about PE...
thanks to the work of Simon Josefsson. Simon and I had an email
exchange about Sigstore and Cosign on Debian after the discussion about PE...
Python Engineering at Microsoft: 2024 Python in VS Code Wrapped
Link: https://devblogs.microsoft.com/python/2024-python-vscode-wrapped/
As the year comes to a close, we would like to take time to reflect and celebrate the incredible progress the Python extension for VS Code has made in the past year. Inspired by Spotify Wrapped, we’ve
Link: https://devblogs.microsoft.com/python/2024-python-vscode-wrapped/
As the year comes to a close, we would like to take time to reflect and celebrate the incredible progress the Python extension for VS Code has made in the past year. Inspired by Spotify Wrapped, we’ve
Microsoft News
2024 Python in VS Code Wrapped
As the year comes to a close, we would like to take time to reflect and celebrate the incredible progress the Python extension for VS Code has made this year. From merging in top requested features to countless lines of code written and deleted, keep reading…
Trey Hunner: Lazy self-installing Python scripts with uv
Link: https://treyhunner.com/2024/12/lazy-self-installing-python-scripts-with-uv/
I frequently find myself writing my own short command-line scripts in Python that help me with day-to-day tasks.
It’s so easy to throw together a single-file Python command-line script and throw it in
Link: https://treyhunner.com/2024/12/lazy-self-installing-python-scripts-with-uv/
I frequently find myself writing my own short command-line scripts in Python that help me with day-to-day tasks.
It’s so easy to throw together a single-file Python command-line script and throw it in
Treyhunner
Lazy self-installing Python scripts with uv
I frequently find myself writing my own short command-line scripts in Python that help me with day-to-day tasks. It’s so easy to throw together …