Simon Wittber: Python3 Asyncio PubSub Plaything
#!/usr/bin/env pythonimport ioimport asyncioimport websocketsimport loggingimport collectionslogger =...
View Articlehypothesis.works articles: 3.5.0 and 3.5.1 Releases of Hypothesis for Python
This is a combined release announcement for two releases. 3.5.0 was released yesterday, and 3.5.1 has been released today after some early bug reports in 3.5.0Changes3.5.0 - 2016-09-22This is a feature...
View ArticleDaniel Bader: How do I make my own command line commands using Python?
How do I make my own command line commands using Python?The Python script you just wrote would make a great little command line tool – but having to type “python myscript.py” all the time to launch...
View ArticleTalk Python to Me: #77 20 Python Libraries You Aren't Using (But Should)
Many of you write to me and tell me how you appreciate the way my guests and I highlight a particular Python package at the end of each episode. Well if you enjoy that little segment, you're going to...
View ArticleOmaha Python Users Group: September Wrap Up
Wes Turner did a great presentation demonstrating “HTML parsing, JSON-LD, RDFa, and schema.org in order to add Schema.org RDFa markup to @TheGlobalGoals for Sustainable Development at...
View ArticlePython Insider: Python Core Development Sprint 2016: 3.6 and beyond!
From September 5th to the 9th a group of Python core developers gathered for a sprint hosted at Instagram and sponsored by Instagram, Microsoft, and the Python Software Foundation. The goal was to...
View ArticleContinuum Analytics News: Why Your Company Needs a Chief Data Science Officer
Company BlogFriday, September 23, 2016Michele ChambersEVP Anaconda Business Unit & CMOContinuum AnalyticsThis article was originally posted in CMSWire and has been edited for length and clarity....
View ArticleAnwesha Das: See you PyLadies at PyCon India
PyCon India 2016 has started today. The Day 0 was the devsprint. Reached the venue late ( actually never thought would be able to attend due to my food pipe infection issue). Met friends which is one...
View ArticleWeekly Python StackOverflow Report: (xxxviii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-09-24 07:49:04 GMTWhy does the floating-point value of 4*0.1 look...
View ArticleBrian Okken: 22: Converting Manual Tests to Automated Tests
How do you convert manual tests to automated tests? This episode looks at the differences between manual and automated tests and presents two strategies for converting manual to automated. Support...
View ArticleHynek Schlawack: Sharing Your Labor of Love: PyPI Quick and Dirty
A completely incomplete guide to packaging a Python module and sharing it with the world on PyPI.
View ArticlePodcast.__init__: Episode 76 - PsychoPy with Jonathan Peirce
SummaryWe’re delving into the complex workings of your mind this week on Podcast.__init__ with Jonathan Peirce. He tells us about how he started the PsychoPy project and how it has grown in utility and...
View ArticlePython 4 Kids: Python for Kids: Python 3 – Project 10
Using Python 3 in Project 10 of Python For Kids For DummiesIn this post I talk about the changes that need to be made to the code of Project 10 of my book Python for Kids for Dummies in order for it to...
View ArticleKrzysztof Żuraw: Archives from memory- libarchive
This blog post is about python wrapper around libarchive and how to use it to generate archive from memory.Table of Contents:Libarchive & python-libarchive-cAdd entry from memoryLibarchive &...
View ArticleNick Craig-Wood: Snake Puzzle Solver
My family know I like puzzles so they gave me this one recently:Fork me on GithubThe code for this along with a Jupyter notebook for it is on github.When you take it out the box it looks like this:And...
View ArticleAbu Ashraf Masnun: Introduction to Django Channels
Django is a brilliant web framework. In fact it is my most favourite one for various reasons. An year and a half ago, I switched to Python and Django for all my web development. I am a big fan of the...
View ArticleObey the Testing Goat: Plans for the second edition
The second edition was mostly prompted by the announcement by Mozilla that they were shutting down Persona in November 2016. Given that it would affect almost all the chapters from 15 thru to 21, it...
View ArticleFrançois Dion: Something for your mind: Polymath Podcast Episode 001
Two topics will be covered:Chipmusic, limitations and creativityNumfocus (Open code = better science)The numfocus interview was recorded at PyData Carolinas 2016. There will be a future episode...
View ArticleMike Driscoll: PyDev of the Week: Katie McLaughlin
This week we welcome Katie McLaughlin (@glasnt) as our PyDev of the Week! She is a core developer of the BeeWare project. You should take a moment and check out her Github profile to see what fun...
View ArticleDoug Hellmann: copy — Duplicate Objects — PyMOTW 3
The copy module includes two functions, copy() and deepcopy() , for duplicating existing objects. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for...
View Article