Twitter Updates
Tweets by ServiceLab_org- analysis
- Ant
- antidote
- applications
- arduino
- audio
- bluetooth
- browser
- CentOS
- communication
- continua
- dbus
- dependencyhell
- devops
- eclipse
- Flash
- frameworklimbo
- google maps
- Google Maps
- Google Visualization
- Grep
- gwt
- health
- IEEE11073
- Java
- javascript
- JeeNode
- JMS
- JNLP
- JSON
- JSP
- JSTL
- Libcloud
- lombok
- maven
- messaging
- MVC
- node-xmpp
- node.js
- nodejs
- Open Flash Chart
- OpenJMS
- OTT
- over-the-top
- programming
- protocol
- Python
- rcse
- rpc
- RX868
- S555TH
- Sage
- sasl
- service discovery
- sip
- SOAP
- Sockets
- Storm
- stream
- Suds
- telco
- telco-ott
- Threads
- Tomcat
- tu me
- tume
- Visualization
- webaudio
- webinos
- webrtc
- wireshark
- WordPress
- XenServer
- xmpp
- ZooKeeper
Tag Archives: Python
Using Google Visualization API with own data source
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 … Continue reading
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 … Continue reading
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 … Continue reading
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 … Continue reading
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 … Continue reading