ItsMyCode: How to get column names in Pandas Dataframe
Pandas DataFrame is Two-dimensional, size-mutable, potentially heterogeneous tabular data. Pandas DataFrame consists of rows and columns to store the data. Each column will have its own header name...
View ArticleThe Python Coding Blog: Have your Apollo 11 moment: A Python Lunar Landing...
How difficult can it be to land on the moon? I have no idea. All I know is that it’s not that easy landing the lunar module in this Python turtle game:But, how about writing the game? I’ve taken a...
View ArticleMatthew Wright: Reading date arguments to a Python script using argparse
Argparse doesn't support date arguments by default, but it can be easily extended to parse and validate dates in your Python scripts.The post Reading date arguments to a Python script using argparse...
View ArticleSumana Harihareswara - Cogito, Ergo Sumana: How I Thought About an In-Person...
How I Thought About an In-Person Conference Choice
View ArticleZato Blog: Zato architecture primer
OverviewZato is a Python-based middleware and backend platform designed for integrating and building server-side systems.The platform belongs to a broader family of solutions that, depending on one’s...
View ArticleeGenix.com: eGenix Antispam Bot for Telegram 0.3.0 GA
IntroductioneGenix has long been running a local user group meeting in Düsseldorf called Python Meeting Düsseldorf and we are using a Telegram group for most of our communication.In the early days, the...
View ArticlePyCon: Pycon US 2022 Developer Sprints
We are super excited to announce the launch of the PyCon US 2022 Sprints!When: Sprints will take place on May 2nd and May 3rdWhere: At Pycon US at the Salt Palace Convention CenterProject Signups: Get...
View ArticleMike Driscoll: PyDev of the Week: Julien Palard
This week we welcome Julien Palard (@sizeof) as our PyDev of the Week! Julien is a core developer of the Python programming language and a Python trainer. Julien is also the creator of HackInScience, a...
View ArticleReal Python: Combining Data in Pandas With merge(), .join(), and concat()
The Series and DataFrame objects in pandas are powerful tools for exploring and analyzing data. Part of their power comes from a multifaceted approach to combining separate datasets. With pandas, you...
View ArticleSebastian Pölsterl: scikit-survival 0.17.2 released
I’m pleased to announce the release of scikit-survival 0.17.2. This release fixes several small issues with packaging scikit-survival and the documentation. For a full list of changes in...
View ArticlePodcast.__init__: Automatically Enforce Software Structures With Powerful...
Programmers love to automate tedious processes, including refactoring your code. In order to support the creation of code modifications for your Python projects Jimmy Lai created LibCST. It provides a...
View ArticleMike Driscoll: Python 101 - Creating Multiple Threads
Concurrency is a big topic in programming. The concept of concurrency is to run multiple pieces of code at once. Python has a couple of different solutions that are built-in to its standard library....
View ArticleCodeGrades: Hello, World (again)
The COVID outbreak has disrupted our world in lots of different ways.For CodeGrades, it meant our face-to-face work with young coders, in London, had to stop.We had been meeting since the Autumn of...
View ArticleSTX Next: 13 Best Django and Django REST Tutorials in 2022
Thinking of learning Django? You’re already familiar with Python, but want to go further and try something new? Or maybe you already know Django and just wish to boost your qualifications even more?
View ArticlePyCoder’s Weekly: Issue #522 (April 26, 2022)
#522 – APRIL 26, 2022View in Browser »Type Hints in Code Supporting Multiple Python Versions The typing module continues to evolve, with new features in every Python version. This can make it tricky if...
View ArticleDaniel Roy Greenfeld: Live Discussion with Sebastián Ramírez (Tiangolo)
On April 26th I had a live discussion with Sebastián Ramírez, creator of FastAPI, Typer, SQL Model, and...
View ArticleAbhijeet Pal: Django 4.1 adds async-compatible interface to QuerySet
The much-awaited pull request for an async-compatible interface to Queryset just got merged into the main branch of Django.Pull Request - https://github.com/django/django/pull/14843 The Django core...
View ArticleReal Python: Why Is It Important to Close Files in Python?
At some point in your Python coding journey, you learn that you should use a context manager to open files. Python context managers make it easy to close your files once you’re done with...
View Article"Morphex's Blogologue": Some more work on an Ethereum (classic) accounting tool
So, I've hacked some more on the tool I'm building for accounting purposes.I guess since the last time I've posted on it, there are mainly two things I've been working on, one is valuation of crypto...
View Article