Real Python: Python Basics: Building Systems With Classes
In the previous course in the Python Basics series, you learned how to use classes to create new objects. Now that you understand the basics of object-oriented programming (OOP), it’s time to put those...
View ArticleTestDriven.io: Deploying a Django App to Google App Engine
This tutorial looks at how to deploy a Django application to Google App Engine.
View ArticlePython Bytes: #322 Python Packages, Let Me Count The Ways
<a href='https://www.youtube.com/watch?v=TtX32d5rFAo' style='font-weight: bold;'>Watch on YouTube</a><br> <br> <p><strong>About the show</strong></p>...
View ArticleDjango Weblog: DSF calls for applicants for a Django Fellow
After five years as part of the Django Fellowship program, Carlton Gibson has decided to step down as a Django Fellow this spring to explore other things. Carlton has made an extraordinary impact as a...
View ArticleData School: How to use Python's f-strings with pandas
Python introduced f-strings back in version 3.6 (six years ago!), but I&aposve only recently realized how useful they can be.In this post, I&aposll start by showing you some simple examples of...
View ArticlePyCoder’s Weekly: Issue #563 (Feb. 7, 2023)
#563 – FEBRUARY 7, 2023View in Browser »Build a Wordle Clone With Python and Rich In this step-by-step project, you’ll build your own Wordle clone with Python. Your game will run in the terminal, and...
View ArticleTryton News: The history behind the heptapod migration
As was announced in the February newsletter we’ve migrated our development to heptapod. This means that you no longer need a Google account in order to contribute to Tryton and none of our tools are...
View ArticleTryton News: Tryton Unconference 2023 in Berlin on May 22nd - 24th
The Tryton Foundation is happy to announce the next Tryton Unconference in Berlin on May 22nd - 24th.The first day will be mainly dedicated to presentation at Change Hub.The second and third day will...
View ArticlePyCharm: Using PyCharm to Read Data From a MySQL DataBase Into pandas
Sooner or later in your data science journey, you’ll hit a point where you need to get data from a database. However, making the leap from reading a locally-stored CSV file into pandas to connecting to...
View ArticlePython for Beginners: Load JSON into a Python Dictionary
Softwares often use JSON file format to store and transmit data. While writing software in python, we might need to convert a JSON string or file into a python object. This article discusses how to...
View ArticleTalk Python to Me: #402: Polars: A Lightning-fast DataFrame for Python
When you think about processing tabular data in Python, what library comes to mind? Pandas, I'd guess. But there are other libraries out there and Polars is one of the more exciting new ones. It's...
View ArticlePython Software Foundation: Announcing Python Software Foundation Fellow...
The PSF is pleased to announce its fourth batch of PSF Fellows for 2022! Let us welcome the new PSF Fellows for Q4! The following people continue to do amazing things for the Python community:Chandan...
View ArticlePython Insider: Python 3.11.2, Python 3.10.10 and 3.12.0 alpha 5 are available
Hi everyone,I am happy to report that after solving some last-time problems we have a bunch of fresh releases for you!Python 3.12.0 alpha 5Check the new alpha of 3.12 with some Star Trek...
View ArticlePython for Beginners: Convert YAML to JSON in Python
JSON and YAML are the two most used file formats in software development. The YAML files are mainly used for configuration files whereas JSON files are used to store and transmit data. This article...
View ArticleReal Python: How to Split a Python List or Iterable Into Chunks
Splitting a Python list into chunks is a common way of distributing the workload across multiple workers that can process them in parallel for faster results. Working with smaller pieces of data at a...
View ArticleTestDriven.io: Introduction to Django Channels
This tutorial shows how to use Django Channels to create a real-time application.
View ArticleTalk Python to Me: #402: Polars: A Lightning-fast DataFrame for Python...
When you think about processing tabular data in Python, what library comes to mind? Pandas, I'd guess. But there are other libraries out there and Polars is one of the more exciting new ones. It's...
View ArticleArmin Ronacher: Everybody is More Complex Than They Seem
This year I decided that I want to share my most important learnings about engineering, teams and quite frankly personal mental health. My hope is that those who want to learn from me find it...
View Article