The Google Visualization API allows you to create charts and maps based on data you provide. This data can be in a Google Spreadsheet or be something you provide yourself. The visualizations themselves are mostly written in Javascript, although there
Using FANN with Python
In the previous article we showed how to install the FANN artificial neural network library on Ubuntu. In this article we will use the library. There are typically two parts in using artificial neural networks: A training part, where the
Installing FANN with Python bindings on Ubuntu
The Fast Artificial Neural Network Library (FANN) is a neural network library, which implements multilayer artificial neural networks in C with support for both fully connected and sparsely connected networks. It has a Python binding that allows you to use
Examples of public SOAP web services
In the previous article we showed how to use the suds library in Python to access SOAP web services. Here are some extra examples of public SOAP web services. Some of the outputs are edited for readability. We start with
Python SOAP client with suds
The library suds allows Python to make SOAP calls (that is, Python is the web service client). We start by installing the suds library on an Ubuntu machine. The Python setuptools are needed to install suds. sudo apt-get install python-setuptools
Using Python to add new posts in WordPress
Wordpress is a web publishing platform, which allows you to add and edit content to your website. This can be done by visiting the administration interface, wp-admin. However, there is also an XML RPC programming interface that allows you to
Threads in Python
A thread, sometimes called an execution context or a lightweight process, is a single sequential flow of control within a program. You use threads to isolate tasks. Each thread is a sequential flow of control within the same program. Each