Evennia: Evennia in pictures
This article describes the MU* development system Evennia using pictures! This article was originally written for Optional Realities. Since it is no longer available to read on OR, I'm reposting it in...
View ArticleAlexey Evseev: Trap in counting related objects in Django
Task: for every object count number of related objects satisfying some conditions.Example:class Category(models.Model): title = models.CharField(max_length=50) class Article(models.Model): title =...
View ArticleVasudev Ram: Classifying letters and counting their frequencies
By Vasudev RamHere is a program that takes a string as input and classifies the characters in it, into vowels or consonants. It also counts the frequencies of each vowel separately and the frequencies...
View ArticleeGenix.com: Python Meeting Düsseldorf - 2017-01-18
The following text is in German, since we're announcing a regional user group meeting in Düsseldorf, Germany.AnkündigungDas nächste Python Meeting Düsseldorf findet an folgendem Termin...
View ArticlePythonClub - A Brazilian collaborative blog about Python: Abrangência de...
A utilização de listas em Python é algo trivial. A facilidade provida pela linguagem aliada a simplicidade da estrutura de dados list a torna, ao lado dos dicionários dict, uma das estrutura de dados...
View ArticleMike Driscoll: PyDev of the Week: Cameron Simpson
This week we welcome Cameron Simpson as our PyDev of the Week. Cameron is the co-author of PEP 418– Add monotonic time, performance counter, and process time functions and the author of PEP 499– python...
View ArticleDoug Hellmann: shelve — Persistent Storage of Objects — PyMOTW 3
The shelve module can be used as a simple persistent storage option for Python objects when a relational database is not required. The shelf is accessed by keys, just as with a dictionary. The values...
View ArticleWeekly Python Chat: Teaching Python & Python Tutor
This week we'll be chatting with special guest Philip Guo about pythontutor.com, a web application he made for visualizing Python code. We'll talk about how PythonTutor can be used for teaching and...
View ArticlePyTennessee: PyTN Profiles: Brian Pitts and Avrio Analytics
Speaker Profile: Brian Pitts (@sciurus)Brian studied political science in college, but when his thesis contained more python code than prose it was clear where his true loyalties lay. He’s worked in...
View ArticleMike Driscoll: Python 101 is now a Course on Educative
My first book, Python 101, has been made into an online course on the educative website. Educative is kind of like Code Academy in that you can run the code snippets from the book to see what kind of...
View ArticleA. Jesse Jiryu Davis: Python Async Coroutines: A Video Walkthrough
If your New Year’s resolution is to become an expert in Python coroutines, I have good news.Back in July, the book “500 Lines or Less: Experienced Programmers Solve Interesting Problems” was published,...
View ArticleNed Batchelder: Coverage.py 4.3.2 and 4.3.3
A handful of fixes for Coverage.py today: v4.3.2. Having active contributors certainly makes it easier to move code more quickly....and then it turns out, 4.3.2 wouldn't run on Python 2.6. So quick...
View ArticlePython Insider: Python 3.5.3 and 3.4.6 are now available
Python 3.5.3 and Python 3.4.6 are now available for download.You can download Python 3.5.3 here, and you can download Python 3.4.6 here.
View ArticleMatthew Rocklin: Distributed NumPy on a Cluster with Dask Arrays
This work is supported by Continuum Analytics the XDATA Program and the Data Driven Discovery Initiative from the Moore FoundationThis page includes embedded large profiles. It may look better on the...
View ArticleS. Lott: Irrelevant Feature Comparison
A Real Email.So, please consider creating a blog post w/ a title something like "Solving the Fred Flintstone Problem using Monads in Python and Haskell"First. There's this:...
View ArticleDataCamp: NumPy Cheat Sheet: Data Analysis in Python
Given the fact that it's one of the fundamental packages for scientific computing, NumPy is one of the packages that you must be able to use and know if you want to do data science with Python. It...
View ArticlePyTennessee: PyTN Profiles: Jared M. Smith and SimplyAgree
Speaker Profile: Jared M. Smith (@jaredthecoder)I’m a Research Scientist at Oak Ridge National Laboratory, where I engage in computer security research with the Cyber Warfare Research Team. I am also...
View ArticlePyTennessee: PyTN Profiles: Calvin Hendryx-Parker and Juice Analytics
Speaker Profile: Calvin Hendryx-Parker (@calvinhp)Six Feet Up, Inc. co-founder Calvin Hendryx-Parker has over 18 years of experience in the development and hosting of applications using Python and web...
View ArticleWingware Blog: Remote Development with Wing Pro 6
Wing Pro 6 introduces easy to configure and use remote development, where the IDE can edit, test, debug, search, and manage files as if they were stored on the same machine as the IDE.
View ArticleChris Moffitt: Data Science Challenge - Predicting Baseball Fanduel Points
IntroductionSeveral months ago, I participated in my first crowd-sourced Data Science competition in the Twin Cities run by Analyze This!. In my previous post, I described the benefits of working...
View Article