PyCoder’s Weekly: Issue #383 (Aug. 27, 2019)
#383 – AUGUST 27, 2019View in Browser »Your Guide to the CPython Source Code In this detailed Python tutorial, you’ll explore the CPython source code. By following this step-by-step walkthrough, you’ll...
View ArticleKushal Das: Running Ubiquity controller on a Raspberry Pi
I got a few new Raspberry Pi(s) with 4GB RAM. I used them as a full scale desktop for some time, and was happy with the performance.I used to run the Ubiquity controller for the home network in a...
View ArticleWingware Blog: Dark Mode and Color Configuration in Wing Python IDE
Wing 7 added four new dark color palettes and the ability to quickly toggle between light and dark mode using the menu icon in the top right of the IDE window. When DarkMode is selected, Wing switches...
View ArticleMike Driscoll: PyDev of the Week: Katherine Kampf
This week we welcome Katherine Kampf (@kvkampf) as our PyDev of the Week! Katherine is a Program Manager at Microsoft, specifically for Azure Notebooks, which is Microsoft’s version of Jupyter...
View ArticleIslandT: Capitalize the letters that occupy even indexes and odd indexes...
Given a string, capitalize the letters within the string that occupy even indexes and odd indexes separately, and return as a list! Index 0 will be considered even.For example, capitalize(“abcdef”) =...
View ArticleDjango Weblog: Django bugfix releases issued: 2.2.5, 2.1.12, and 1.11.24
Today we've issued 2.2.5, 2.1.12, and 1.11.24 bugfix releases.The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used for...
View ArticlePyBites: Code Challenge 63 - Automatically Generate Blog Featured Images
There is an immense amount to be learned simply by tinkering with things. - Henry FordHey Pythonistas,In this new blog code challenge you are going to use selenium to automatically generate some cool...
View ArticleJulien Danjou: Dependencies Handling in Python
Dependencies are a nightmare for many people. Some even argue they are technical debt. Managing the list of the libraries of your software is a horrible experience. Updating them — automatically? —...
View ArticleEuroPython: EuroPython 2019: Please send in your feedback
EuroPython 2019 is over now and so it’s time to ask around for what we can improve next year. If you attended EuroPython 2019, please take a few moments and fill in our feedback form, if you haven’t...
View ArticleReuven Lerner: Reminder: Only one day left for early-bird pricing on Weekly...
The biggest problem with software today isn’t writing code. It’s maintaining — debugging, improving, and expanding — existing code. It’s hard to maintain someone else’s code. Heck, it’s even hard to...
View ArticleReal Python: Natural Language Processing With spaCy in Python
spaCy is a free and open-source library for Natural Language Processing (NLP) in Python with a lot of in-built capabilities. It’s becoming increasingly popular for processing and analyzing data in NLP....
View ArticlePodcast.__init__: Combining Python And SQL To Build A PyData Warehouse
The ecosystem of tools and libraries in Python for data manipulation and analytics is truly impressive, and continues to grow. There are, however, gaps in their utility that can be filled by the...
View ArticlePyBites: How to Cleanup S3 Objects and Unittest it
In this guest post Giuseppe shares what he learned having to cleanup a large number of objects in an S3 bucket. He introduces us to some boto3 as well as moto and freezegun he used to test his code....
View ArticleCodementor: 9 Django Concepts Part 3 - Read Time: 3 Mins
The final part of a 3 part series on 9 concepts of Django to help any aspiring Django developer to accelerate their learnings
View ArticleKushal Das: When governments attack: malware campaigns against activists and...
This year at Nullcon Eva gave her talk on When governments attack: malware campaigns against activists and journalists. After introducing EFF, she explained about Dark Caracal, a possibly...
View ArticleKushal Das: stylesheet for nmap output
nmap is the most loved network discovery, and security auditing tool out there. It is already 22 years old and has a ton of features. It can generate output in various formats, including one which is...
View ArticleStack Abuse: Python for NLP: Working with Facebook FastText Library
This is the 20th article in my series of articles on Python for NLP. In the last few articles, we have been exploring deep learning techniques to perform a variety of machine learning tasks, and you...
View ArticlePyCharm: Webinar: “10 Tools and Techniques Python Web Developers Should...
Building web applications is one of Python’s true superpowers. Yet, the wide-open ecosystem means there are SO MANY CHOICES for any given project. How do you know whether you’re using the right tool...
View ArticleListenData: Pandas Tutorial : Step by Step Guide (50 Examples)
Pandas being one of the most popular package in Python is widely used for data manipulation. It is a very powerful and versatile package which makes data cleaning and wrangling much easier and...
View ArticleListenData: Object Oriented Programming in Python : Learn by Examples
This tutorial outlines object oriented programming (OOP) in Python with examples. It is a step by step guide which was designed for people who have no programming experience. Object Oriented...
View Article