William Minchin: Summary Plugin 1.2.0 for Pelican Released
Summary is a plugin for Pelican, a static site generator written in Python.Summary allows easy, variable length summaries directly embedded within the body of your articles.This ReleaseThis release,...
View ArticleCodementor: Why my first hello world program was based on machine learning
An idea. That’s all it took to spark the passion and obsession I have for programming.
View ArticlePython Bytes: #292 Thursday, it's always a Thursday
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=fErspGiTLCM' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticleReal Python: SQLite and SQLAlchemy in Python: Moving Your Data Beyond Flat Files
All programs process data in one form or another, and many need to be able to save and retrieve that data from one invocation to the next. Python, SQLite, and SQLAlchemy give your programs database...
View ArticleRead the Docs: Read the Docs newsletter - July 2022
Summer has come, which means our overall development has slowed a bit as the team takes some well-deserved vacation time. That said, we’re still excited about our recent hire and the ongoing work we’ve...
View ArticleTalk Python to Me: #373: Reinventing Azure's Python CLI
Deploying and managing your application after you create it can be a big challenge. Cloud platforms such as Azure have literally hundreds of services. Which ones should you choose? How do you link them...
View ArticleCodementor: How OAuth 2 works ?
Blog post explaining OAuth 2 protocol in simple and easy to understand way.
View ArticlePyCoder’s Weekly: Issue #533 (July 12, 2022)
#533 – JULY 12, 2022View in Browser »Python 3.11 Preview: TOML and tomllib Python 3.11 will be released in the fall of 2022. In this tutorial, you’ll install the latest beta release of Python 3.11 in...
View ArticlePython for Beginners: Convert CSV to PDF file in python
CSV files contain comma-separated values that usually contain tabular. Sometimes, we might need to covert a csv file into a PDF file. In this article, we will discuss how we can convert a csv file to...
View ArticleReal Python: NumPy's max() and maximum(): Find Extreme Values in Arrays
The NumPy library supports expressive, efficient numerical programming in Python. Finding extreme values is a very common requirement in data analysis. The NumPy max() and maximum() functions are two...
View ArticlePyCharm: PyCharm 2022.2 EAP 6 Is Available
With the major release of PyCharm 2022.2 quickly approaching, we are putting the finishing touches on the new features and enhancements. At this stage, we are particularly keen to get your feedback so...
View Articlescikit-learn: The Value of Open Source Sprints, the scikit-learn Experience
Author: Reshama ShaikhWith contributions from: Gaël Varoquaux, Andreas Mueller, Olivier Grisel, Julien Jerphanion, Guillaume LeMaitreTop Line SummarySprints are working sessions to contribute to an...
View ArticleReal Python: The Real Python Podcast – Episode #117: Measuring Python Code...
How maintainable is your Python code? Is it possible to hold the code for your functions in your head? When is it appropriate to use measurements in a code review? This week on the show, Reka Horvath...
View ArticlePython for Beginners: Convert CSV to HTML Table in Python
CSV files contain comma-separated values that usually contain tabular. Sometimes, we might need to render a csv file into an HTML page. In this article, we will discuss how we can convert a csv file to...
View ArticleKushal Das: dgplug mailing list has a new home
We were using the mailman2 instance provided by Dreamhost for many years as the mailing list for dgplug. But, over the years many participants had trouble with receiving emails. In the last few years,...
View Article"Morphex's Blogologue": An SSL TCP client/server implementation in Python
Related to work I found myself needing a solution to pass messages, so I started working on something simple, just to get the basics down.I started out with the idea of doing it over HTTPS, but after a...
View ArticlePodcast.__init__: Gain A Deeper Understanding Of What Your Code Is Doing And...
As your code scales beyond a trivial level of complexity and sophistication it becomes difficult or impossible to know everything that it is doing. The flow of logic and data through your software and...
View ArticleNicola Iarocci: "A project you maintain has been designated as critical"
Last week, I got a mail from PyPI, the Python package index. They informed me that one of my open source projects had been designated as ‘critical,’ and I was therefore required to enable two-factor...
View ArticleMike Driscoll: PyDev of the Week: Reindert-Jan Ekker
This week we welcome Reindert-Jan Ekker (@rjekker) as our PyDev of the Week! Reindart is a freelance teacher who teaches Python, Java, Django, Bash and more. You can learn more about what he teaches at...
View ArticlePython for Beginners: List of Dictionaries to CSV in Python
We use dictionaries in python to store key-value pairs. Similarly, we use a CSV file to store records that contain values for specific fields. In this article, we will discuss how we can convert a list...
View Article