Real Python: The Real Python Podcast – Episode #108: Run Python in a Browser...
Have you heard about the projects working toward getting Python to run in the browser? Maybe you would like to try it out for yourself, by building an interactive Python REPL with Pyodide and...
View ArticlePython for Beginners: How to Compare Two Files in Python Line by Line
This tutorial examines the various methods of how to compare two files in Python. We’ll cover reading two files and comparing them line by line, as well as using available modules to complete this...
View ArticleAnarcat: Wallabako 1.4.0 released
I don't particularly like it when people announce their personal projects on their blog, but I'm making an exception for this one, because it's a little special for me.You see, I have just released...
View ArticleTalk Python to Me: #364: Symbolic Math with Python using SymPy
We're all familiar with the data science tools like numpy, pandas, and others. These are numerical tools working with floating point numbers, often to represent real-world systems. But what if you...
View ArticleMike Driscoll: Python 101 - Learn All About Functions (Video)
In this video tutorial you will learn the following:Creating a functionCalling a functionPassing argumentsType hinting your argumentsPassing keyword argumentsRequired and default arguments*args and...
View ArticlePython Insider: Python 3.11.0b1 is now available
We did it, team! After quite a bumpy release process and a bunch of last-time fixes, we have reached beta 1 and feature freeze. What a ride eh? You can get the shiny new release artefacts from...
View Article"Morphex's Blogologue": Ravencoin and ethereum (classic) accounting tools
So I've been hacking away at the accounting tool for ethereum (classic) today, adding support for converting the USD rate for ETH/ETC to another currency, based on data provided in the CSV format.It's...
View ArticleNed Batchelder: Twitter tidbits
Lately I’ve been posting Python tidbits on Twitter. It’s been fun finding things that people might not yet know, fitting them into a tweet, and giving them some energy.People ask how I make them. I...
View ArticleThe Python Coding Blog: Do You Really Know What Sines and Cosines Are?...
Sines and cosines are everywhere. But not everyone really understands what they are. In this article, you’ll write a Python program using the turtle module to visualise how they’re related to a circle....
View ArticleMike Driscoll: PyDev of the Week: Mason Egger
This week we welcome Mason Egger (@masonegger) as our PyDev of the Week! Mason is an organizer of PyTexas and a developer advocate at Gretel. Mason also maintains a Python website where you can see...
View ArticlePython for Beginners: Check if a Python String Contains a Number
Strings are used to handle text data in the python programming language. Sometimes, we need to check if a string contains a number in situations where we have to validate user input or data. In this...
View ArticleReal Python: Python News: What's New From April 2022
April 2022 saw the return of the PyCon US conference in person in Salt Lake City. During the conference, Python developers met for the annual Language Summit, and Anaconda announced PyScript, a way to...
View ArticleZato Blog: Salesforce API integrations and connected apps
OverviewThis instalment in a series of articles about API integrations with Salesforce covers connected apps - how to create them and how to obtain their credentials needed to exchange REST messages...
View ArticlePodcast.__init__: Making Investment Data Easy To Access And Analyze With The...
Investing effectively is largely a game of information access and analysis. This can involve a substantial amount of research and time spent on finding, validating, and acquiring different information...
View ArticlePython Software Foundation: No Starch Press has released an all-Python Humble...
No Starch Press, an indie tech-book publisher and Community sponsor of the PSF, just announced a partnership with Humble Bundle that lets you pay what you want for all-Python DRM-free ebook titles for...
View ArticleReal Python: Deploying a Flask Application Using Heroku
In this video course, you’ll create a Python Flask example application and deploy it using Heroku, making it publicly available on the web. Heroku removes much of the infrastructure burden related to...
View ArticlePyCoder’s Weekly: Issue #524 (May 10, 2022)
#524 – MAY 10, 2022View in Browser »PyCon US 2022 Highlights“It was wonderful to be back at PyCon US in person again. PyCon is way too big for any one person’s summary to tell the whole story, but I’m...
View ArticleTest and Code: 185: Python + Django + Rich + Testing == Awesome
Django has a handful of console commands to help manage and develop sites. django-rich adds color and nice formatting. Super cool. In a recent release, django-rich also adds nice colorized tracebacks...
View ArticlePython for Beginners: Remove Elements From a Set in Python
We use sets in python to store unique immutable objects. In this article, we will discuss how we can remove elements from a set in python. For this, we will discuss four approaches using different...
View ArticleReal Python: pandas GroupBy: Your Guide to Grouping Data in Python
Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this tutorial will help...
View Article