Wesley Chun: Using the new Google Sheets API
IntroductionIn this post, we're going to demonstrate how to use the latest generation Google Sheets API. Launched at Google I/O 2016 (full talk here), the Sheets API v4 can do much more than previous...
View ArticleMike Driscoll: Python: How to Create an Exception Logging Decorator
The other day, I decided I wanted to create a decorator to catch exceptions and log them. I found a rather complex example on Github that I used for some ideas on how to approach this task and came up...
View ArticleWesley Chun: Migrating to Google Drive API v3
NOTE: The code covered in this and the previous post are also available in a video walkthrough. IntroductionIn a blog post last week, we introduced readers to performing uploads and downloads files...
View ArticleSemaphore Community: Setting Up a BDD Stack on a Django Application
This article is brought with ❤ to you by Semaphore.IntroductionThis tutorial will guide you through installing behave_django and FactoryBoy to set up a BDD stack for a Django application. For this...
View ArticleMike Driscoll: Python 201: What are descriptors?
Descriptors were introduced to Python way back in version 2.2. They provide the developer with the ability to add managed attributes to objects. The methods needed to create a descriptor are __get__,...
View Articlequtebrowser development blog: qutebrowser v0.7.0 released
I'm happy to annouce the release of qutebrowser v0.7.0!qutebrowser is a keyboard driven browser with a vim-like, minimalistic interface. It's written using PyQt and cross-platform.As usual the source...
View ArticleWesley Chun: Migrating from tools.run() to tools.run_flow()
This mini-tutorial slash migration guide slash PSA (public service announcement) is aimed at Python developers using the Google APIs Client Library (to access Google APIs from their applications)...
View Articleبايثون العربي: نظام بايثون للمساعدة
إذا تم إعطائك مكتبة أو حزمة بايثون جديدة ولا تعرف كبف تعمل هذه الأخيرة كيف تتعامل مع هذه المشكلة ؟ربما ستكون إجابتك : سأبحث عنها في قوقل لأرى أي توثيق خاص بها .ولكن ماذا ستكون إجابتك إذا قلت لك أنه لا...
View Articleبايثون العربي: الفرق بين Input و Raw_input في بايثون
الشيء الذي يقوم معظم المبرمجون بملاحظته بعد الإنتقال من بياثون 2 إلى بايثون 3 ماعدا حقيقة أن Print أصبحت وظيفة هي أن Raw_input إختفت و هذا كود بايثون 2 bottles = raw_input("Daily beer consumption: ")...
View ArticleNikola: Nikola v7.7.9 is out!
On behalf of the Nikola team, I am pleased to announce the immediate availability of Nikola v7.7.9. It fixes some bugs and adds new features.For this release, we also passed a milestone — Nikola has...
View ArticlePyCon: PyCon JP 2016 Call for Proposals
PyCon JP is a conference where Python users, or people interested in Python, gather to learn from each other and meet other members of the community.We will hold PyCon Japan on September 20-24 this...
View ArticlePythonClub - A Brazilian collaborative blog about Python: Curso Python...
Entendendo o conceito de Iterator e Generator.Primeira Aula: https://www.youtube.com/watch?v=xGoEpCaachsSlides: http://carlosmaniero.github.io/curso-asyncio/aula01/GitHub:...
View ArticleDan Stromberg
from-tableI've put from-table here.It's a small python3 script that knows how to extract one or more HTML tables as CSV data. You can give it a URL or a file. It can extract to stdout or to a series...
View ArticlePython Software Foundation: Unconference Day at CubaConf
Note: This is the third post on my trip in April to Havana, Cuba to attend the International Open Software Convention, CubaConf. The second day of CubaConf, structured as an unconference, was equally...
View ArticleWeekly Python StackOverflow Report: (xxiii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-06-11 18:34:52 GMTHow can I make sense of the `else` statement in...
View ArticlePodcast.__init__: Episode 61 - Sentry with David Cramer
Visit our site to listen to past episodes, support the show, join our community, and sign up for our mailing list.SummaryAs developers we all have to deal with bugs sometimes, but we don’t have to make...
View ArticleVasudev Ram: Driving Python function execution from a text file
By Vasudev RamBeagle Voyage image attributionDynamic and adaptive systems are interesting, since they are more flexible with respect to their environment. Python itself is a dynamic language. Here is a...
View Articlecodeboje: How to Build a nice looking Product Box for Amazon Affiliate Sites
Lately, I've been venturing into building niche sites. Besides the business, I am also always curious what technic other use to create their sites.I noticed a lot of them use Wordpress, and when they...
View ArticlePython Insider: Python 3.5.2rc1 and Python 3.4.5rc1 are now available
Python 3.5.2rc1 and Python 3.4.5rc1 are now available for download.You can download Python 3.5.2rc1 here, and you can download Python 3.4.5rc1 here.
View Articlehypothesis.works articles: Testing Configuration Parameters
A lot of applications end up growing a complex configuration system, with a large number of different knobs and dials you can turn to change behaviour. Some of these are just for performance tuning,...
View Article