Made With Mu: Mu and PyGameZero Gamepad Demo
Anthony Briggs (who blogs at NeoLudic) got in touch via Twitter with a proof-of-concept for controlling PyGameZero games with a gamepad (such as the one you’ll use with your XBox or Playstation).The...
View ArticleCodementor: Dynamic Task Routing in Celery
This post was originally published on Celery. The Missing Tutorials (https://www.python-celery.com/) on June 5th, 2018. All source code examples used in this blog post can be found on GitHub: ...
View ArticleCodementor: Writing a Simple Web Scraper using Scrapy
Web scrapers are a great way to collect data for projects. In this example I will use the @Scrapy Framework (https://scrapy.org/) to create a web scraper that gets the links of products when...
View ArticleBhishan Bhandari: Web Scraping using Golang
Web Scraping can be beneficial to individuals and companies. The intentions of this post is to host a set of examples on Web Scraping using Golang and goquery. I will be using github’s trending page...
View ArticleDavy Wybiral: Learn to Solder Kits
These Learn to Solder kits from Rocket Dept. are a great way to teach your youngsters about soldering and basic electronics. One of them controls three LEDs with push buttons, one is a large RGB LED...
View Articlepy.CheckIO: Using Regular Expressions in Python
One of the programmers’ favorite jokes about regular expressions is: "There is a problem when working with strings? Excellent, in this situation I can use regular expressions." And now the developer...
View ArticleStack Abuse: Creating a Simple Recommender System in Python using Pandas
IntroductionHave you ever wondered how Netflix suggests movies to you based on the movies you have already watched? Or how does an e-commerce websites display options such as "Frequently Bought...
View ArticlePython Does What?!: kids these days think data structures grow on trees
Args and kwargs are great features of Python. There is a measurable (though highly variable) cost of them however:>>> timeit.timeit(lambda: (lambda a, b: None)(1,...
View ArticlePython Piedmont Triad User Group: PYPTUG Monthly Meeting (September):...
DetailsCome join PYPTUG at out next monthly meeting (September 25th 2018) to learn more about the Python programming language, modules and tools. Python is the language to learn if you've never...
View ArticleContinuum Analytics Blog: Key Trends and Takeaways from Strata New York 2018
By Elizabeth Winkler Another Strata conference has come and gone. We had an incredible time meeting with a huge number of Anaconda users who came by our booth to chat! We also noticed some really...
View ArticleKay Hayen: Nuitka Release 0.5.33
This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler. Please see the page "What is Nuitka?" for an overview.This release contains a bunch of...
View ArticleStefan Behnel: Cython, pybind11, cffi – which tool should you choose?
In and after the conference talks that I give about Cython, I often get the question how it compares to other tools like pybind11 and cffi. There are others, but these are definitely the three that are...
View ArticlePython Celery - Weekly Celery Tutorials and How-tos: Concurrency and Parallelism
Concurrency is often misunderstood and mistaken for parallelism. However, concurrency and parallelism are not the same thing. But why should you care? All you want is to make your Python application...
View ArticleTalk Python to Me: #177 Flask goes 1.0
Flask is now 8 years old and until recently had gone along pretty steady state. It had been hanging around at version 0.11 and 0.12 for some time. After a year-long effort, the web framework has now...
View ArticleWeekly Python StackOverflow Report: (cxliii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-09-15 20:02:19 GMTRemainder function (%) runtime on numpy arrays is...
View ArticleCodementor: Option Pricing With Monte Carlo & Celery
This post was originally published on Distributed Python (https://www.distributedpython.com/) on June 26th, 2018. All source code examples used in this blog post can be found on GitHub: ...
View ArticlePyBites: PyBites Twitter Digest - Issue 29, 2018
A handy template to generate basic Python project structures.Submitted by @Erik.Nice one! A great #template for generating a basic #Python project structure! @pybiteshttps://t.co/zaxboOMGwN— Julian...
View ArticleDusty Phillips: An Intermediate Guide To RSA
The venerable RSA public key encryption algorithm is very elegant. It requires a basic understanding of modular arithmetic, which may sound scary if you haven’t studied it. It reduces to taking the...
View ArticleBhishan Bhandari: Python, Boto and AWS EC2
Most if not all software companies have adopted to cloud infrastructure and services. AWS in particular is very popular amongst all. The intentions of this post is to host a few examples on using boto...
View Article