As I wrote in Python Style Guide Part 1, Google has put together a really nice style guide summary. This style guide is a list of dos and don'ts for … [Read more...] about Python Style Rules
Python Language Rules
PEP8 has emerged as the style guide that most projects. it promotes a very readable and eye-pleasing coding style. It's a well-established convention … [Read more...] about Python Language Rules
Python String Concatenation and Formatting
One common task you’ll need to accomplish with any language involves merging or combining strings. This process is referred to as string … [Read more...] about Python String Concatenation and Formatting
How to use ConfigParser in Python
What is Config Parser? The configparser module in Python is used for working with configuration files. It is much similar to Windows INI files. You … [Read more...] about How to use ConfigParser in Python
Python and MySQL with MySQLdb
Last week I was looking for a Python module that I could use to interact with a MySQL database server. MySQLdb is doing just that. "MySQLdb is a thin … [Read more...] about Python and MySQL with MySQLdb
Python Mechanize Cheat Sheet
Mechanize A very useful python module for navigating through web forms is Mechanize. In a previous post I wrote about "Browsing in Python with … [Read more...] about Python Mechanize Cheat Sheet
Using the YouTube API in Python
Overview In this post we will be looking on how to use the YouTube API in Python. This program will show how we can use the API to retrieve feeds from … [Read more...] about Using the YouTube API in Python
Get the Geo Location of an IP Address
Time for a script again, this one will geolocate an IP address based on input from the user. For this script, we will be using a bunch of Python … [Read more...] about Get the Geo Location of an IP Address
How to use the Vimeo API in Python
Overview In this post we will be looking on how to use the Vimeo API in Python. About the Vimeo API Vimeo offers an API which lets us integrate … [Read more...] about How to use the Vimeo API in Python
Browsing in Python with Mechanize
Browsing with Mechanize The mechanize module in Python is similar to perl WWW:Mechanize. It gives you a browser like object to interact with web … [Read more...] about Browsing in Python with Mechanize