Codementor: #01 | Getting Started with Pandas
A clear introduction to Pandas, a Python library to manipulate tabular data, where you can discover its many possibilities and get a concise overview.
View ArticleThe Digital Cat: Multiple inheritance and mixin classes in Python
I recently revisited three old posts on Django class-based views that I wrote for this blog, updating them to Django 3.0 (you can find them here) and noticed once again that the code base uses mixin...
View ArticleThe Digital Cat: Method overriding in Python
What is overriding? Overriding is the ability of a class to change the implementation of a method provided by one of its ancestors.Overriding is a very important part of OOP since it is the feature...
View ArticleThe Digital Cat: Accessing attributes in Python
Python is a language that tries to push the object-oriented paradigm to its maximum. This means that its object model is very powerful compared to that of other languages, but also that the behaviour...
View ArticleMatt Layman: Heroku Stack Upgrade - Building SaaS with Python and Django #147
In this episode, I did some upgrades. We upgraded the app to the latest Heroku stack, upgraded htmx to the latest version, then worked on a small feature to add an empty state to a page when there is...
View ArticleNed Batchelder: Decorator shortcuts
When using many decorators in code, there’s a shortcut you can use if you find yourself repeating them. They can be assigned to a variable just like any other Python expression.Don’t worry if you don’t...
View ArticlePython Morsels: Installing Python packages
When your code depends other Python libraries to run, you'll want to reach for pip and venv to install those third-party Python packages.Table of contentsOur program depends on a third-party...
View ArticleIslandT: Python Example — How to use the with open file method in Python
In this Python example, I am going to create a Python program that will get the user poet inputs and then save them inside a file, and after that displayed those poets back on the screen.I am going to...
View ArticleCodementor: MicroPython MQTT Tutorial Based on Raspberry Pi
This article introduces how to write an MQTT client on Raspberry Pi using MicroPython, and implements the connection, subscription and messaging, etc of MQTT.
View ArticleAhmed Bouchefra: How to delete blank page in MS Word
You’ve decided that you’d like to get rid of a blank page in Word. In most cases, if you press the delete or backspace key on your keyboard a sufficient number of times, everything should work...
View ArticlePodcast.__init__: How And Why To Build Effective Teams As An Engineering Leader
Your ability to build and maintain a software project is tempered by the strength of the team that you are working with. If you are in a position of leadership, then you are responsible for the growth...
View ArticleCodementor: How to truncate/delete a database table from the AWS Glue job?
Truncating/Deleting a Mysql/MariaDB/Postgres table from AWS Glue using python
View ArticlePyCharm: Webinar: “Django-in-PyCharm Tips: Reloaded”
Two and a half years ago, we held a “Django tips in PyCharm” webinar. This refresher swaps out some tips, but also shows lots of fresh goodness in the IDE: the new UI, remote and sharing options,...
View ArticleZato Blog: HL7 FHIR Security with Basic Auth, OAuth and SSL/TLS
HL7 FHIR SecurityPreliminary reading: HL7 FHIR Integrations in PythonFHIR servers offer their APIs using REST, which in turn means that they are HTTP servers under the hood. As a result, a few common...
View ArticleIslandT: Python Example — Count the number of even numbers from 1 to 100
An even number is a number that can be divided by two, for example, 2, 4, 6, 8, and 10. In this example let us create a simple Python program that can count the number of the even numbers from 1 to...
View ArticleMike Driscoll: PyDev of the Week: Sybren Stüvel
This week we welcome Sybren Stüvel (@sastuvel) as our PyDev of the Week! Sybren is a core maintainer of the Python-RSA package and also works on Blender.You can see what else Sybren is up to over on...
View ArticlePython for Beginners: Split a Numpy Array in Python
Numpy arrays are one of the most efficient data structures for handling numerical data. You can perform different mathematical operations on numpy arrays using built-in functions. In this article, we...
View ArticleTestDriven.io: Deploying a Django App to Dokku on a DigitalOcean Droplet
This tutorial looks at how to deploy a Django application to Dokku on a DigitalOcean droplet.
View ArticleReal Python: Python News: What's New From September 2022?
In September 2022, the Python 3.11.0rc2 release candidate version became available for you to test and stay on top of Python’s latest features. This release is the last preview version before the final...
View ArticlePython Morsels: Unindenting multi-line strings in Python
Need a multi-line string but don't want to include a big block of manually dedented text in your Python code? Use textwrap.dedent!Table of contentsManually dedenting multi-line stringsUsing...
View Article