Cobe.io: Watching Kubernetes Resources from Python
Kubernetes has a reasonably nice REST-ish HTTP API which is used pervasively by the system to do pretty much all of its work. It is very open and reasonably well documented which makes it excellent for...
View ArticleNed Batchelder: Generator comprehensions
Python has a compact syntax for constructing a list with a loop and a condition, called a list comprehension:my_list = [ f(x) for x in sequence if cond(x) ]You can also build dictionaries with...
View ArticleImport Python: ImportPython Issue 72
Worthy Read1 application, 5 Python Job Offers Apply to multiple top tech companies with 1 application on Indeed Prime.SponsorGenerator comprehensionscore pythonPython has a compact syntax for...
View ArticleKushal Das: Report: Fedora 24 Cloud/Atomic test day
Last Tuesday we had a Fedora 24 test day about Fedora Cloud, and Atomic images. With help from Adam Williamson I managed to setup the test day. This was first time for me to use the test day web app,...
View ArticlePython Anywhere: Scaling a startup from side project to 20 million hits/month...
We recently wished farewell to a customer who had been with us for about 18 months, during which time he saw some incredible growth in what was originally just a side project. We spoke to him about how...
View ArticleProgramando Ciência: Complex scatter plots on Python [PART II] – Defining...
Hey scientist! How is it going? In the second post of this series we’ll improve our preliminary scatter plot, obtained from IBGE [1] data, defining a color for each region, adding labels and title....
View ArticleCaktus Consulting Group: Caktus CTO Colin Copeland Invited to the White House...
We at Caktus were incredibly proud when the White House Police Data Initiative invited CTO Colin Copeland to celebrate their first year accomplishments. While at the White House, Colin also joined...
View ArticleAnarcat: Notmuch, offlineimap and Sieve setup
I've been using Notmuch since about 2011, switching away from Mutt to deal with the monstrous amount of emails I was, and still am dealing with on the computer. I have contributed a few patches and...
View ArticleDataquest: Matplotlib tutorial: Plotting tweets mentioning Trump, Clinton...
Analyzing Tweets with Pandas and MatplotlibPython has a variety of visualization libraries, including seaborn, networkx, and vispy. Most Python visualization libraries are based wholly or partially on...
View ArticleReinout van Rees: Pygrunn: Micropython, internet of pythonic things - Lars de...
(One of my summaries of the one-day 2016 PyGrunn conference).micropython is a project that wants to bring python to the world of microprocessors.Micropython is a lean and fast implementation of python...
View ArticleReinout van Rees: Pygrunn: Kliko, compute container specification - Gijs...
(One of my summaries of the one-day 2016 PyGrunn conference).Gijs Molenaar works on processing big data for large radio telescopes ("Meerkat" in the south of Africa and "Lofar" in the Netherlands).The...
View ArticleReinout van Rees: Pygrunn: django channels - Bram Noordzij/Bob Voorneveld
(One of my summaries of the one-day 2016 PyGrunn conference).Django channels is a project to make Django to handle more than "only" plain http requests. So: websockets, http2, etc. Regular http is the...
View ArticleReinout van Rees: Pygrunn: Understanding PyPy and using it in production -...
(One of my summaries of the one-day 2016 PyGrunn conference).pypy is "the faster version of python".There are actually quite a lot of python implementation. cpython is the main one. There are also JIT...
View ArticleReinout van Rees: Pygrunn: simple cloud with TripleO quickstart - K Rain Leander
(One of my summaries of the one-day 2016 PyGrunn conference).What is openstack? A "cloud operating system". Openstack is an umbrella with a huge number of actual open source projects under it. The goal...
View ArticleReinout van Rees: Pygrunn: from code to config and back again - Jasper Spaans
(One of my summaries of the one-day 2016 PyGrunn conference).Jasper works at Fox IT, one of the programs he works on is DetACT, a fraud detection tool for online banking. The technical summary would be...
View ArticleReinout van Rees: Pygrunn keynote: Morepath under the hood - Martijn Faassen
(One of my summaries of the one-day 2016 PyGrunn conference).Martijn Faassen is well-known from lxml, zope, grok. Europython, Zope foundation. And he's written Morepath, a python web framework.Three...
View ArticlePython Software Foundation: Python and Open Source Alive and Well in Havana,...
I recently had the amazing opportunity to travel to Havana, Cuba to attend several free software events. My partner, David Mertz, was invited to talk at a meet-up of open-software developers and to...
View ArticleReinout van Rees: Pygrunn keynote: the future of programming - Steven Pemberton
(One of my summaries of the one-day 2016 PyGrunn conference).Steven Pemberton (https://en.wikipedia.org/wiki/Steven_Pemberton) is one of the developers of ABC, a predecessor of python.He's a researcher...
View ArticlePythonClub - A Brazilian collaborative blog about Python: Python com...
Fala pessoal, tudo bem?Na segunda parte deste tutorial, aprendemos a usar o Travis CI para automatizar os testes do nosso projeto, facilitando a manutenção do código quando temos vários colaboradores....
View ArticlePeter Bengtsson: Decorated Concurrency - Python multiprocessing made really...
tl;dr There's a new interesting wrapper on Python multiprocessing called deco, written by Alex Sherman and Peter Den Hartog, both at University of Wisconsin - Madison. It makes Python multiprocessing...
View Article