Real Python: The Real Python Podcast – Episode #217: Packaging Data Analyses...
What are the best practices for organizing data analysis projects in Python? What are the advantages of a more package-centric approach to data science? Christopher Trudeau is back on the show this...
View ArticleGlyph Lefkowitz: On The Defense Of Heroes
If a high-status member of a community that you participate in is accused of misbehavior, you may want to defend them. You may even write a long essay in their defense.In that essay, it may seem only...
View ArticleMatt Layman: PDF Text Extraction With Python
Is your data locked up in portable document format (PDFs)? In this talk we’re going to explore methods to extract text and other data from PDFs using readily-available, open-source Python tools (such...
View ArticleMatt Layman: More Go Standard Library - Building SaaS #198
In this episode, we continued the break from JourneyInbox to look through more of the Go standard library. In this session, we explored JSON serialization, Go template support, and embedding of static...
View ArticleEuroPython: EuroPython 2024: Post Conference Feedback
Its been a month now since EuroPython 2024 took place and as the dust settles, we’ve gathered feedback from 157 attendees to understand what made this year’s event special, what challenges were faced,...
View ArticlePyCharm: Introducing the PyCharm Databricks Integration
We’re introducing the Databricks integration with PyCharm Professional to make it easier for you to process, store, and analyze your data! The integration allows you to build your data and AI apps on...
View ArticleMike Driscoll: How to Plot in the Terminal with Python and Textualize
Have you ever wanted to create a plot or graph in your terminal? Okay, maybe you haven’t, but now that you know you can, you want to! Python has the plotext package for plotting in your terminal....
View ArticleTestDriven.io: Limiting Content Types in a Django Model
This article looks at how to limit the content types in a Django model.
View ArticleTalk Python to Me: #474: Python Performance for Data Science
Python performance has come a long way in recent times. And it's often the data scientists, with their computational algorithms and large quantities of data, who care the most about this form of...
View ArticleReal Python: Python Classes: The Power of Object-Oriented Programming
Python supports the object-oriented programming paradigm through classes. They provide an elegant way to define reusable pieces of code that encapsulate data and behavior in a single entity. With...
View ArticleReal Python: Exploring Astrophysics in Python With pandas and Matplotlib
This course uses three problems often covered in introductory astro-physics courses to play in Python. Along the way you’ll learn some astronomy, and how to use a variety of datascience libraries like...
View ArticlePyCoder’s Weekly: Issue #643 (Aug. 20, 2024)
#643 – AUGUST 20, 2024View in Browser »Using a Custom Scrapy Extension to Log to a DB The Scrapy crawl stat logs are useful for tracking and monitoring the performance of a spider. If you want to keep...
View ArticlePython Bytes: #397 So many PyCon videos
<strong>Topics covered in this episode:</strong><br> <ul> <li><strong><a...
View ArticlePython Morsels: Checking for an empty list in Python
Python programmers typically check for empty lists by relying on truthiness.Table of contentsChecking the length of a listEvaluating the truthiness of a listComparing for equality with an empty...
View ArticleTrey Hunner: 10-Week Hands-On Python Course
Ever wished you could take an Intro to Python training with me, but you don’t work for a company with a generous training budget? I’m running a Python-learning program just for this situation.Python...
View ArticleArmin Ronacher: Rye and uv: August is Harvest Season for Python Packaging
It has been a few months since I wrote about Rye here last. You might remember that in February I passed over stewardship of my Rye packaging too to Astral. The folks over there have been super busy in...
View ArticlePyCharm: How to Build Chatbots With LangChain
This is a guest post from Dido Grigorov, a deep learning engineer and Python programmer with 17 years of experience in the field.Chatbots have evolved far beyond simple question-and-answer tools. With...
View ArticleReal Python: Quiz: Primer on Jinja Templating
In this quiz, you’ll test your understanding of Jinja templating. Jinja is a powerful tool for building rich templates in Python web applications, and it can also be used to create text files with...
View ArticleStack Abuse: Building Custom Email Templates with HTML and CSS in Python
An HTML email utilizes HTML code for presentation. Its design is heavy and looks like a modern web page, rich with visual elements like images, videos, etc., to emphasize different parts of an email's...
View ArticleReal Python: Primer on Jinja Templating
Templates are an essential ingredient in full-stack web development. With Jinja, you can build rich templates that power the front end of your Python web applications.But you don’t need to use a web...
View Article