The Digital Cat: Mau: a lightweight markup language
What is Mau?Mau is a lightweight markup language heavily inspired by AsciiDoc that makes is very easy to write blog posts or books.The main goal of Mau is to provide a customisable markup language,...
View ArticlePyBites: How to Produce More Content
As we mentioned the other day becoming a content provider is an essential skill to push your career forward.We often hear people get overwhelmed by the amount of info out there, they get stuck in...
View ArticleBen Cook: NumPy all: Understanding np.all()
The np.all() function tests whether all elements in a NumPy array evaluate to true.
View ArticlePython Morsels: Everything is an object
Related article:Transcript:In Python, everything is an object.Classes are objectsWe have a class called Product:class Product: unknown_price = "Ask for details" def __init__(self, name, price=None):...
View ArticleZero to Mastery: Python Monthly 💻🐍 February 2021
15th issue of Python Monthly! Read by 20,000+ Python developers every month. This monthly Python newsletter is focused on keeping you up to date with the industry and keeping your skills sharp, without...
View ArticlePython Pool: Unzip a File in Python: 5 Scenarios You Should Know
If you are in the IT world for a while, you must know about the unzipping or extraction of a file. More than 70% of the files present on the internet are in the form of a zip file. There are various...
View ArticleReal Python: The Real Python Podcast – Episode #49: The Challenges of...
What's the difference between writing code for yourself and developing for others? What new considerations do you need to take into account as a professional Python developer? This week on the show, we...
View ArticlePyBites: 10 Cool Pytest Tips You Might Not Know About
Here are 10 things we learned writing pytest code that might come in handy:1. Testing package structurePeople new to pytest are often thrown off by this:$ tree .├── src│ ├── __init__.py│ └──...
View ArticlePython Software Foundation: Python Software Foundation Fellow Members for Q4...
It's that time of year! Let us welcome the new PSF Fellows for Q4! The following people continue to do amazing things for the Python community:Batuhan Osman TaskayElaine WongTwitter, LinkedIn, GitHub,...
View ArticlePyCharm: PyCharm and WSL
Over the past few months, I’ve been monitoring a ticket closely. Over the course of two years, the ticket has accrued over 130 votes. It’s the one about WSL support in PyCharm, and by extension, the...
View ArticlePeter Bengtsson: How MDN's site-search works
tl;dr; Periodically, the whole of MDN is built, by our Node code, in a GitHub Action. A Python script bulk-publishes this to Elasticsearch. Our Django server queries the same Elasticsearch via...
View ArticleFabio Zadrozny: PyDev 8.2.0 released (external linters, Flake8, path...
PyDev 8.2.0 is now available for download.This release has many improvements for dealing with external linters.The main ones are the inclusion of support for the Flake8 linter as well as using a...
View ArticleAndre Roberge: Friendly-traceback: testing with Real Python
Real Python is an excellent learning resource for beginning and intermediate Python programmers that want to learn more about various Python related topics. Most of the resources of RealPython are...
View ArticleCorey Gallon: 3 Simple Steps to Build a Python Package for Conda Forge
In just 3 easy steps, we’ll package the spotipy Python library for Conda Forge!Hey data hackers! We’re all raving fans of Conda Forge— the community-led repository of recipes, build infrastructure and...
View ArticleWeekly Python StackOverflow Report: (cclxv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-02-27 18:35:08 GMTWhy aren't my list elements being swapped? -...
View ArticleThe Open Sourcerer: A new data format has landed in the upcoming GTG 0.5
Here’s a general call for testing from your favorite pythonic native Linux desktop personal productivity app, GTG.In recent months, Diego tackled the epic task of redesigning the XML file format from a...
View ArticleCodementor: Server deployment with Python: From A to Z.
In this tutorial you will learn how to configure a server and deploy a web app from scratch by using only Python.
View ArticleTest and Code: 146: Automation Tools for Web App and API Development and...
Building any software, including web apps and APIs requires testing. There's automated testing, and there's manual testing. In between that is exploratory testing aided by automation tools. Michael...
View ArticleMatthew Wright: Profiling Python code with line_profiler
Once we have debugged, working, readable (and hopefully testable) code, it may become important to examine it more closely and try to improve the code's performance. Before we can make any progress in...
View Article