Vladimir Iakolev: Partial application and piping with ... and @
In newer versions of Python we have two not much used features: ellipsis:>>>print(...)EllipsisAnd matrix multiplication...
View ArticleMarcos Dione: adding-columns-from-osm-to-postgis-with-osmium
My latest Europe import was quite eventful. First, I run out of space several times during the import itself, at indexing time. The good thing is that, if you manage to reclaim some space, and reading...
View ArticleDamián Avila: RISE 4.0.0b1 is available, please test it!
Quick post! I have beta packages available for you to test RISE, if you can test it that would be awesome!!In case you don't know about it, with RISE you get your Jupyter notebook rendered as a...
View ArticleMorphex's Blogologue: Fixing up an old blog, transparent PNG embedded in...
So I've been fixing up on my blog lately, adding some iframe and javascript code, as well as backend code, to make it play my playlist from SoundCloud automatically.This blog is running on Zope 2, and...
View ArticlePyPy Development: PyPy gets funding from Mozilla for Python 3.5 support
"Python 2.x versus Python 3.x": this is by now an old question. In the eyes of some people Python 2 is here to stay, and in the eyes of others Python has long been 3 only.PyPy's own position is that...
View ArticleFull Stack Python: The Full Stack Python Blog
Full Stack Python began way back in December 2012 when I started writing the initial deployment, server, operating system, web server and WSGI server pages. Since then, the pages have expanded out into...
View ArticleFull Stack Python: Responding to SMS Text Messages with Python & Flask
Short Message Service (SMS) text messages are easy to send from Python applications with a web application programming interface (API). Flask applications can also receive incoming text messages and...
View ArticleFull Stack Python: How to Build Your First Slack Bot with Python
Bots are a useful way to interact with chat services such as Slack. If you have never built a bot before, this post provides an easy starter tutorial for combining the Slack API with Python to create...
View ArticleFull Stack Python: Replying to SMS Text Messages with Python and Bottle
Python applications can easily send SMS by using a web API. Web apps built with the Bottle framework can also reply to incoming text messages by handling inbound HTTP POST webhooks. In this post we'll...
View ArticleFull Stack Python: Configuring Python 3, Pyramid and Gunicorn on Ubuntu 16.04
Canonical's Ubuntu 16.04 Long Term Support (LTS) Linux operating system, also known as "Xenial Xerus", was released in April 2016. It is the first Ubuntu release to include Python 3 instead of Python 2...
View ArticleFull Stack Python: Setting up Python 3, Django and Gunicorn on Ubuntu 16.04 LTS
Ubuntu released the newest Long Term Support (LTS) version of its operating system in April 2016. The update brings Ubuntu to version 16.04 and its latest code name is "Xenial Xerus". 16.04 is the...
View ArticleFull Stack Python: How to set up Python 3, Flask and Green Unicorn on Ubuntu...
Ubuntu's latest Long Term Support (LTS) operating system was released last month, in April 2016. The 16.04 update for Ubuntu is known as "Xenial Xerus" and it's the first Ubuntu release to include...
View ArticleFull Stack Python: How to Send SMS Text Messages with Python
Short Message Service (SMS) text messages are ubiquitous for communication all over the world. It is easy to send SMS text messages from a Python application using a web application programming...
View ArticleFull Stack Python: Configuring Python 3, Bottle and Gunicorn for Development...
The Ubuntu 16.04 Long Term Support (LTS) Linux operating system was released in April 2016. This latest Ubuntu release is named "Xenial Xerus" and it is the first Ubuntu release to include Python 3,...
View ArticleFull Stack Python: How to Send MMS Picture Messages with Python
Multimedia Message Service (MMS) picture and video messages are a common extension to the Short Message Service (SMS) system for sending text messages. Using a web application programming interface...
View ArticleFull Stack Python: How to Use Redis with Python 3 and redis-py on Ubuntu 16.04
Redis is an in-memory key-value pair NoSQL data store often used for web application sessions, transient data and as a broker for task queues. redis-py is a common Python code library for interacting...
View ArticleFull Stack Python: Setting up PostgreSQL with Python 3 and psycopg on Ubuntu...
PostgreSQL is a powerful open source relational database frequently used to create, read, update and delete Python web application data. Psycopg2 is a PostgreSQL database driver that serves as a Python...
View ArticleFull Stack Python: How to Install and Use MySQL on Ubuntu 16.04
MySQL is a common open source relational database for creating, reading, updating and deleting data in Python web applications. Let's learn how to install MySQL on Ubuntu 16.04 and then run a few SQL...
View ArticleAutomating OSINT: Dark Web OSINT with Python Part Two: SSH Keys and Shodan
Welcome back good Python soldiers. In Part One of this series we created a wrapper around OnionScan, a fantastic tool created by Sarah Jamie Lewis (@sarajamielewis). If you haven’t read Part One then...
View ArticleMachinalis: Controlling uncertainty on web applications and APIs
“But it works fine on my machine!”How many times have your heard that phrase? I’ve been working as a developer for over a decade and I can swear I heard it in every project I worked on. No matter how...
View Article