Stéphane Wirtel: PythonFOSDEM 2017 - Call for Proposals
IntroductionThe Python Community has a devroom during the FOSDEM in Brussels in Belgium. The event will take place during the first week-end of February 2017.Submit your proposals, don’t...
View ArticleDataquest: NumPy Tutorial: Data analysis with Python
NumPy is a commonly used Python data analysis package. By using NumPy, you can speed up your workflow, and interface with other packages in the Python ecosystem, like scikit-learn, that use NumPy under...
View ArticleVasudev Ram: Permutation facts
By Vasudev RamNicomachus theorem 3D image attributionToday, I was using the permutations function in Python's itertools module to generate permutations for a few different values of integers, as part...
View ArticleNikola: Nikola Available as a Snap
NoteThis is all slightly experimentalOne of the larger challenges for free software developers is getting our software in the hands of the public, promptly, with the least amount of effort. Let's say...
View ArticleLintel Technologies: Writing shorthand statements in python
Python is having  shorthand statements and shorthand operators. These things will help you write more logic with less number of statements.We will see those available shorthand statements.lambda...
View ArticleLintel Technologies: Python metaclasses explained
Python is having obscure wonderful mechanism of classes and it’s implementation.  In python every thing is an object. If you define a class, that class it self is an object in memory and it is an...
View ArticleImport Python: ImportPython Issue 95
Worthy ReadFixing Python Performance with RustperformanceExcellent post from Armin Ronacher on tackling a CPython performance bottleneck with a custom Rust extension module. How to create read only...
View ArticleFrançois Dion: Stemgraphic, a new visualization tool
PyData Carolinas 2016At PyData Carolinas 2016 I presented the talk Stemgraphic: A Stem-and-Leaf Plot for the Age of Big Data.IntroThe stem-and-leaf plot is one of the most powerful tools not found in a...
View ArticleExperienced Django: KidsTasks: Minor Redesign
I’ve been slowed down in my progress this month due to a family vacation and a change of jobs, so I’ve only made a little progress on the KidsTasks app.This post gets the app up to the ‘almost...
View ArticleCodementor: Simple Python Encryption: How to Encrypt a Message
What is Cryptography?Let’s examine the following examples of Plaintext and Reverse CipherEvery skill acquired in cyber security is hard won. It includes a wide array of prerequisites (even) to get...
View ArticlePython Software Foundation: Opening the BBC micro:bit
As many of you will know, the PSF has been a partner in the British Broadcasting Corporation's (BBC) micro:bit project. A million devices capable of running MicroPython have been distributed to every...
View ArticleMarcos Dione: the-truth-about-bool-in-Python
I was trying to modify ayrton so we could really have sh[1]-style file tests. In sh, they're defined as unary operators in the -X form[2], where X is a letter. For instance, -f foo returns true (0 in...
View ArticleWeekly Python StackOverflow Report: (xlii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2016-10-21 20:26:19 GMTWhat's the difference between a reversed tuple...
View ArticleDataquest: NumPy Tutorial: Data analysis with Python
NumPy is a commonly used Python data analysis package. By using NumPy, you can speed up your workflow, and interface with other packages in the Python ecosystem, like scikit-learn, that use NumPy under...
View ArticleTalk Python to Me: #81 Python and Machine Learning in Astronomy
The advances in Astronomy over the past century are both evidence of and confirmation of the highest heights of human ingenuity. We have learned by studying the frequency of light that the universe is...
View ArticleBrett Cannon: Network protocols, sans I/O
Back in February I started taking a serious look at asynchronous I/O thanks to async/await. One of the things that led to me to looking into this area was when I couldn't find an HTTP/1.1 library that...
View ArticleBrett Cannon: Introducing Which Film
What I'm announcingToday I'm happy to announce the public unveiling of Which Film! I'll discuss how the site came about and what drives it, but I thought I would first explain what it does: it's a...
View ArticleBrett Cannon: What to look for in a new TV
I'm kind of an A/V nerd. Now I'm not hardcore enough to have a vinyl collection or have an amp for my TV, but all my headphones cost over $100 and I have a Sonos Playbar so I don't have to put up with...
View ArticleStories in My Pocket: New python web app not working?
How many times have you had the thrill of releasing a new service or app to the world, only to have it crashing down when you test the URL and find a server error page instead of your work? Here are a...
View ArticleVasudev Ram: perm_facts version with list comps and functional programming
By Vasudev RamCartoon attributionA little after writing the program (perm_facts.py) in my recent post:Permutation facts(which showed that the number of permutations of n things was the same as n...
View Article