Anwesha Das: Running Snowflake proxy
Snowflake is a technology to allow people from all over the world to access censored applications and websites.Similar to how VPNs assist users in getting around Internet censorship, Snowflake helps...
View ArticleMike Driscoll: PyDev of the Week: Mark Mikofski
This week we welcome Mark Mikofski (@bwanamarko) as our PyDev of the Week! Mark is a core developer on the pvlib tool, which is used "for simulating the performance of photovoltaic energy systems." You...
View ArticleIslandT: Python math Module
math is a Python built-in module which means it comes together with the python package and you do not need to install it separately. In the following examples let us create various little programs to...
View ArticlePython for Beginners: How to Use Comments in Python?
Writing code in Python can be challenging. That’s why it’s important to be as clear as possible when naming variables and functions. A good name will explain what a variable is used for, or what a...
View ArticleReal Python: Build Enumerations of Constants With Python's Enum
Some programming languages, like Java and C++, include syntax that supports a data type known as enumerations, or just enums. This data type allows you to create sets of semantically related constants...
View ArticlePython Morsels: TypeError: can only concatenate str (not "int") to str
Python crashed with the error TypeError: can only concatenate str (not "int") to str. Essentially Python's saying you've used + between a string and a number and it's unhappy about it. Let's talk about...
View ArticleZato Blog: HL7 FHIR Integrations in Python
HL7 FHIR, pronounced “fire”, is a data model and message transfer protocol designed to facilitate the exchange of information among systems used in health care settings.In such environments, a FHIR...
View ArticleCodementor: Getting started with Rocksdb and Python
In this post, I am going to discuss RocksDB. RocksDB is an embeddable persistent key-value store system developed by Facebook. It was originally forked from LevelDB which was created by...
View ArticleThe Digital Cat: Delegation: composition and inheritance in object-oriented...
Introduction¶Object-oriented programming (OOP) is a methodology that was introduced in the 60s, though as for many other concepts related to programming languages it is difficult to give a proper date....
View ArticleMatt Layman: Episode 17 - Accepting Files
On this episode, we’re going to dig into file management. Unlike the static files that you create for the app yourself, you may want your app to accept files from your users. Profile pictures are a...
View ArticleIslandT: Python RegEx Module
In this chapter let us create a few examples with Python built-in RegEx module’s methods and see what this particular module can do!As always, you need to import the module into your python file before...
View ArticleDjango Weblog: Django security releases issued: 4.1.2, 4.0.8, and 3.2.16
In accordance with our security release policy, the Django team is issuing Django 4.1.2, Django 4.0.8, and Django 3.2.16. These releases addresses the security issue detailed below. We encourage all...
View ArticleReal Python: Python Basics: Strings and String Methods
Many programmers, regardless of their specialty, deal with text on a daily basis. For example, web developers work with text input from web forms. Data scientists process text to extract data and...
View ArticlePyCoder’s Weekly: Issue #545 (Oct. 4, 2022)
#545 – OCTOBER 4, 2022View in Browser »Building Chat With Django Channels and WebSockets Building stateful web applications can be tricky, unless you use a framework, of course. Django to the rescue!...
View ArticlePython Engineering at Microsoft: Contribute to Open Source with the...
The Python Cloud Developer Advocate Team and friends will be getting together October 10th at 2PM Pacific on Microsoft Developer Channel Twitch to talk Python and Hactoberfest! Hang out with Sarah...
View ArticleTalk Python to Me: #384: Python Data Visualization - Where To Start?
Do you struggle to know where to start in the wide range of Python's visualization frameworks? Not sure when to use Plotly vs. Matplotlib vs. Altair? Then this episode is for you. We have Chris...
View ArticleGuido van Rossum: Reasoning about asyncio.Semaphore
In Silicon Valley is a very exclusive fast-food restaurant, which is always open. There is one table, where one guest at a time is served an absolutely fabulous hamburger. When you arrive, you wait in...
View ArticleIslandT: Python Datetime Module
Python datetime module allows you to create an datetime object or get the date of a particular day. Let me create a few examples to demonstrate to you how to use the methods of this DateTime...
View ArticlePython for Beginners: Numpy Array Operations in Python
Numpy arrays are a great tool to handle and analyze numerical data in Python. In the last article, we discussed different ways to create a numpy array. In this article, we will discuss various numpy...
View ArticleReal Python: Minimax in Python: Learn How to Lose the Game of Nim
Games are fun! Their well-defined rules let you explore different strategies in search of a surefire way to win. The minimax algorithm is used to choose the optimal move at any point in a game. You’ll...
View Article