Wesley Chun: Simple Google API access from Python (part 1 of 2)
NOTE: You can also watch a video walkthrough of the common code covered in this blogpost here.UPDATE (Aug 2016): The code has been modernized to recognize that the Client Library is available for...
View ArticleWesley Chun: Authorized Google API access from Python (part 2 of 2)
NOTE: You can also watch a video walkthrough of the common code covered in this blogpost here. UPDATE (Aug 2016): The code has been modernized to use oauth2client.tools.run_flow() instead of the...
View ArticlePéter Szabó: Binary search in line-sorted text files
This blog post announces pts-line-bisect, a C program and an equivalent Python script and library for doing binary seach in line-sorted text files, and it also explains some of the design details of...
View ArticleTalk Python to Me: #73 Machine learning at the new Microsoft
In this episode we catch up with David Crook, a developer evangelist at Microsoft. He is a co-organizer for the Fort Lauderdale Machine Learning User Group and is involved in many more user groups and...
View ArticleWeekly Python StackOverflow Report: (xxxiv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-08-27 07:54:02 GMTCan a line of Python code know its indentation...
View ArticleTwisted Matrix Labs: Twisted 16.4.0 Released
On behalf of Twisted Matrix Laboratories, I am honoured to announce the release of Twisted 16.4.0.The highlights of this release are:twist, a new command line tool for running Twisted plugins, similar...
View ArticlePodcast.__init__: Episode 72 - Dave Beazley
SummaryDave Beazley has been using and teaching Python since the early days of the language. He has also been instrumental in spreading the gospel of asynchronous programming and the many ways that it...
View ArticleCatalin George Festila: The python module pycryptodome - part 001.
The tutorial for today come with this subject: python module pycryptodome.According to the official website:PyCryptodome is a self-contained Python package of low-level cryptographic primitives.It...
View ArticleCatalin George Festila: The python dizzy with clean instalation, is true !?
This will refer the python 2.7 working - but it can be extrapolated to other versions.Many users have trouble installing python modules. The problem comes from old modules outdated or those who did not...
View ArticlePython 4 Kids: Using Python 3 in Project 8 of Python For Kids For Dummies
In this post I talk about the changes that need to be made to the code of Project 8 in order for it to work with Python 3. Happily, the code in Project 8 will work without changes. However, in some...
View ArticleJeff Knupp: Should Engineering Managers Code?
Earlier this year I made a career change: I decided to stop being an Individual Contributor (or "IC", i.e. someone who codes) and became the Engineering Manager of the team I was a member of. I call it...
View ArticleWeekly Python Chat: Gluing strings together in Python
Learn when and why you'd glue strings together using concatenation, interpolation, or other methods.
View Articletryexceptpass: It’s a style choice.
As far as your point on drivers, yes that’s the idea. I will move things around to make them more pluggable soon, and I expect to be…Continue reading on »
View ArticleChris Moffitt: Introduction to Data Visualization with Altair
IntroductionDespite being over 1 year old, one of the most popular articles I have written is Overview of Python Visualization Tools. After these many months, it is one of my most frequently searched...
View ArticleMike Driscoll: PyDev of the Week: Damien George
This week we welcome Damien George as our PyDev of the Week! Damien is the man behind the MicroPython project which allows you to run a version of Python on microcontrollers. You can learn more about...
View ArticleReinout van Rees: Simple qgis plugin repo
At my company, we sometimes build QGIS plugins. You can install those by hand by unzipping a zipfile in the correct directory, but there's a nicer way.You can add custom plugin "registries" to QGIS and...
View ArticleNikola: Nikola v7.8.0 is out!
On behalf of the Nikola team, I am pleased to announce the immediate availability of Nikola v7.8.0. It fixes some bugs and adds new features.What is Nikola?Nikola is a static site and blog generator,...
View ArticleDoug Hellmann: doctest — Testing Through Documentation — PyMOTW 3
doctest tests source code by running examples embedded in the documentation and verifying that they produce the expected results. It works by parsing the help text to find examples, running them, then...
View ArticleMike Driscoll: wxPython Cookbook Sample Chapters
My newest book will be my own home brewed version of a wxPython Cookbook. If you’re interested in learning more about it, then please check out the Kickstarter campaign. The brief synopsis is that it...
View ArticleMarcos Dione: barely-working-centerline-JOSM-plugin
I just uploaded my first semi-automated change. This change was generated with my hack for generating centerlines for riverbank polygons. This time I expanded it to include a JOSM plugin which will...
View Article