Łukasz Langa: Weekly Report, June 6 - 12
The week in numbers: 7 closed issues, 1 opened. 47 closed PRs, 4 more reviewed.
View ArticleŁukasz Langa: Weekly Report, June 13 - 19
This week was almost entirely focused on iOS build support for CPython. I’m writing a blog post on my adventures with this. I also spent some time with the CLA bot. In terms of pull requests, I barely...
View ArticleZato Blog: How to integrate with Confluence APIs
OverviewIn a previous article, I talked about Jira, and if you are a Jira user, chances are that you also use Confluence as they often go hand in hand, Jira as a ticketing application and Confluence as...
View ArticleHynek Schlawack: Don’t Mock What You Don’t Own in 5 Minutes
A common issue programmers have when they try to test real-world software is how to deal with third-party dependencies. Let’s examine an old, but counter-intuitive principle.
View ArticleDjango Weblog: Django 4.1 beta 1 released
Django 4.1 beta 1 is now available. It represents the second stage in the 4.1 release cycle and is an opportunity for you to try out the changes coming in Django 4.1.Django 4.1 has an profusion of new...
View ArticleZero-with-Dot (Oleg Żero): Convenient scheduler in python
IntroductionPython has become an all-purpose language. It is especially commonly used in analytics and solving algorithmic problems within data science but is also popular in web development. This...
View ArticleTest and Code: 190: Testing PyPy - Carl Friedrich Bolz-Tereick
PyPy is a fast, compliant alternative implementation of Python. cPython is implemented in C. PyPy is implemented in Python. What does that mean? And how do you test something as huge as an alternative...
View ArticleReal Python: Python mmap: Doing File I/O With Memory Mapping
The Zen of Python has a lot of wisdom to offer. One especially useful idea is that “There should be one—and preferably only one—obvious way to do it.” Yet there are multiple ways to do most things in...
View ArticleLAAC Technology: Should You Use AsyncIO for Your Next Python Web Application?
Python’s AsyncIO web ecosystem continues to mature, but should you build your next production application with one of these shiny new frameworks such as FastAPI, Starlette, or Quart? Table of Contents...
View ArticlePython Bytes: #289 Textinator is coming for your text, wherever it is
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=UP2JK6ISB9I' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticlePyCoder’s Weekly: Issue #530 (June 21, 2022)
#530 – JUNE 21, 2022View in Browser »Objects, Functions, Generators, and Coroutines Although different concepts, objects, functions, generators, and coroutines can be used almost interchangeably...
View ArticlePython Anywhere: Anaconda Acquisition FAQs
In June 2022, Anaconda announced its acquisition of PythonAnywhere. This acquisition expands Python team collaboration in the cloud and adds capabilities designed to unite teams and create access to...
View ArticlePython for Beginners: Append Dictionary to CSV File in Python
CSV files are one of the most efficient tools to store structured, tabular data. Sometimes, we might need to append data to the CSV file from a python dictionary. In this article, we will discuss how...
View ArticleTalk Python to Me: #370: OpenBB: Python's Open-source Investment Platform
You may have heard of the Bloomberg terminal. It's expensive software that can monitor and analyze real-time financial market data and place trades on the electronic trading platform. But have you...
View ArticleReal Python: Effective Python Testing With Pytest
Testing your code brings a wide variety of benefits. It increases your confidence that the code behaves as you expect and ensures that changes to your code won’t cause regressions. Writing and...
View ArticlePython Morsels: Appreciating Python's match-case by parsing Python code
Python's match-case blocks are complex structural pattern matching tools that are often more hassle than they're worth. But they're great for parsing abstract syntax trees.Table of contentsWhy remove...
View ArticlePyCharm: PyCharm 2022.1.3 Is Out!
We just released PyCharm 2022.1.3, which provides fixes for the important regressions that appeared in 2022.1 and 2022.1.1.Please note: If you already have PyCharm 2022.1.2 installed, you will need to...
View ArticleItsMyCode: [Solved] AttributeError: ‘int’ object has no attribute...
The AttributeError: ‘int’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the integer type. The attribute get() method is present in the dictionary and must be...
View ArticleItsMyCode: [Solved] AttributeError: ‘list’ object has no...
The AttributeError: ‘list’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the list data type. The attribute get() method is present in the dictionary and must be...
View ArticleItsMyCode: [Solved] AttributeError: ‘float’ object has no...
The AttributeError: ‘float’ object has no attribute ‘get’ mainly occurs when you try to call the get() method on the float data type. The attribute get() method is present in the dictionary and must be...
View Article