Machinalis: Python for geospatial data processing
Python for geospatial data processingPython is undoubtedly one of the most popular, general purpose, programming languages today. There are many strong reasons for this but in my opinion the more...
View ArticleMike Driscoll: Python 201: namedtuple
Python’s collections module has specialized container datatypes that can be used to replace Python’s general purpose containers. The one that we’ll be focusing on here is the namedtuple which you can...
View ArticleTrey Hunner: Webinar: Regular Expressions in Python
Don’t understand how regular expressions work?Having trouble making your regular expressions readable?I’m doing a 90 minute webinar to show you how to write readable regular expression.You can sign up...
View ArticleMatthew Rocklin: Dask EC2 Startup Script
This work is supported by Continuum Analytics and the XDATA Program as part of the Blaze ProjectA screencast version of this post is available here: https://youtu.be/KGlhU9kSfVkSummaryCopy-pasting the...
View ArticlePython Anywhere: Webapps and scheduled task expiries
tl;dr: for free accounts, web apps and scheduled tasks will stop running after a while if you don't log in. We'll email you a warning before this happens. Here's why:Loads of people create free Python...
View ArticlePyCon: Only a few sponsor booths are left
We are nearly out of booths! While PyCon does continue to accept new sponsors once we run out of Expo Hall booths, and those final sponsors enjoy almost every benefit of their sponsorship level, they...
View ArticlePython Anywhere: The PythonAnywhere newsletter, March 2016
Well, it's been nine months since our last newsletter and we've got a lot to tell you... Let's get started.Cool new stuff part 1: Jupyter/IPython notebooksSince the end of last year, all paid...
View ArticleDjango Weblog: PGConf US 2016 - free tickets for Django community members
The organisers of PGConf US 2016, the biggest Postgres conference in the world, have offered five full conference tickets worth US$439.00 each to the Django community.This year's event will be held in...
View ArticleCaktus Consulting Group: Best Python Libraries
Our love for Python is no secret. But with so many modules, tools, and libraries, it can be overwhelming for beginning developers to identify the most useful. Obviously, our favorite framework is...
View ArticlePython Does What?!: d800 + dc00 = 10000
Unicode strings will not always have length equal to the number of characters inside them. (This probably depends on the unicode library Python was compiled with.)Two one character...
View ArticlePython Does What?!: unicode + ord
The ord() built-in may return very large values when handed a 1-character unicode string:>>> ord(u'\U00008000')32768This means that chr(ord(s)) will not always work.>>>...
View ArticleAbu Ashraf Masnun: Django Life – Session 4 (Bangla Screencast)
The audio is in Bangla, you can switch to HD video by toggling the youtube settings. (I do not prepare the scripts beforehand, so please apologize my clumsiness) .
View ArticleSemaphore Community: Testing Python-Requests with Betamax
This article is brought with ❤ to you by Semaphore.IntroductionRequests is one of the most downloaded and widely used Python libraries published on PyPI. Testing Requests, however, is something that...
View ArticlePodcast.__init__: Episode 49 - VPython with Ruth Chabay and Bruce Sherwood
Visit our site to listen to past episodes, support the show, join our community, and sign up for our mailing list.SummaryWouldn’t it be nice to be able to generate interactive 3D visualizations of...
View ArticleKushal Das: FOSSASIA 2016 is on
FOSSASIA, the premier conference on Free and Open Source Software in Asia is having their 2016 edition in Singapore Science Center, Singapore. Even though the today is the first day of the event, the...
View Articleبايثون العربي: مقدمة إلى HTML
HTML عبارة عن كود بسيط يتم ترجمته بواسطة المتصفحات لتقوم بعرض الصفحات للمستخدم .تعني كلمة HTMLلغة ترميز النص الفائق هي لغة ترميزتستخدم في إنشاء وتصميمصفحاتومواقع الويب،ملاحظة : لا يعني عنوان الموضوع...
View ArticlePyCharm: PyCharm 2016.1 RC is Available along with New Versioning
We are now approaching the final steps towards the PyCharm 2016.1 release. So today we’ve published the PyCharm 2016.1 Release Candidate.The PyCharm 2016.1 RC build 145.258 is available for download...
View ArticleInvesting using Python: Recurrent Learning (RL) Artificial Neural Networks...
Following is an example of recurrent learning artificial neural network frame for easier future explorations. Most examples on the internet aren't trading related, so this one. Each tests it will...
View ArticleVasudev Ram: Python generators are pluggable
By Vasudev RamGenerator image attributionWhile working on a Python project, it crossed my mind that generators could be of use in it. A little research made me realize that generators are pluggable,...
View ArticlePython 4 Kids: Python for Kids: Python 3 – Project 2
Some people want to use my book Python for Kids for Dummies to learn Python 3. Choosing Python 2.7 over Python 3 was a difficult decision and I have given reasons why in the book.* Nevertheless, if I...
View Article