Mike Driscoll: Displaying Pandas DataFrames in the Terminal
Have you ever wanted to show a pandas DataFrame in your terminal? Of course, you have! All you need is the textual-pandas package!Yes, you can also view a pandas DataFrame in a REPL, such as IPython or...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
View ArticleTrey Hunner: Why does "python -m json" not work? Why is it "json.tool"?
Have you ever used Python’s json.tool command-line interface?You can run python -m json.tool against a JSON file and Python will print a nicely formatted version of the file.1234567python -m json.tool...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
View ArticleReal Python: The Real Python Podcast – Episode #215: Fetching Graph Data in...
How do you integrate GraphQL into your Python web development? How about quickly building graph-based APIs inside Django's battery-included framework? Christopher Trudeau is back on the show this week,...
View ArticleTalk Python to Me: #473: Being a developer with ADHD
Do you feel like ADHD is holding you back? Maybe you don't personally have ADHD but you work with folks who do and you'd like to support them better. Either way, how ADHD interplays with programming...
View ArticlePython Morsels: How to make a tuple
Tuples are technically just immutable lists, but by convention we tend to use tuples and lists for quite different purposes.Table of contentsMaking tuples in PythonTuples are like lists, but...
View ArticleRuslan Spivak: Up Your Game: Fundamental Skills for Software Engineers
“Fundamentals are the foundation of excellence. Without a strong base, you cannot reach your full potential.” – John WoodenHey there!Let’s talk fundamentals today. Why are they important? John Wooden’s...
View ArticlePyPy: A Knownbits Abstract Domain for the Toy Optimizer, Correctly
After Max' introduction to abstract interpretation for the toy optimizer in the last post, I want to present a more complicated abstract domain in this post. This abstract domain reasons about the...
View ArticleKushal Das: Multi-factor authentication in django
Multi-factor authentication is a must have feature in any modern web application. Specially providing support for both TOTP (think applications on phone) and FIDO2 (say Yubikeys) usage. I created a...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
View ArticleKushal Das: Multi-factor authentication in django
Multi-factor authentication is a must have feature in any modern web application. Specially providing support for both TOTP (think applications on phone) and FIDO2 (say Yubikeys) usage. I created a...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
View ArticleZato Blog: API development workflow with Zato
API development workflow with Zato 2024-08-05, by Dariusz Suchojad Zato is an integration platform and backend application server which means that, during most of their projects, developers using Zato...
View ArticleReal Python: Functional Programming in Python: When and How to Use It
Functional programming is a programming paradigm in which the primary method of computation is the evaluation of functions. But how does Python support functional programming?In this tutorial, you’ll...
View ArticleTrey Hunner: Quickly find the right datetime format code for your date
I often find myself with a string representing a date and time and the need to create a format string that will parse this string into a datetime object.I decided to make a tool that solves this...
View ArticleProgramiz: Python List
In this tutorial, we will learn about Python lists (creating lists, changing list items, removing items, and other list operations) with the help of examples.
View ArticleMike Driscoll: Create Amazing Progress Bars in Python with alive-progress
Have you ever needed a progress bar in your Python command-line application? One great way of creating a progress bar is to use the alive-progress package created by Rogério Sampaio de Almeida! Alive...
View ArticleReal Python: Quiz: Functional Programming in Python: When and How to Use It
In this quiz, you’ll test your understanding of Functional Programming in Python.By working through this quiz, you’ll revisit the functional programming paradigm, the concept of functions as...
View ArticleDaniel Roy Greenfeld: TIL: Parsing messy datetimes strings
How to convert inconsistent datetime strings into datetime objects.Recently I've been working on yet another rewrite of my blog, this time to FastHTML. Thanks to the power and ease of that framework,...
View Article