Before we start Bitly allows users to shorten, share, and track links (URLs). It's a way to save, share and discover links on the web. Bitly … [Read more...] about Bitly Shortener with Python
How to use the Pexpect Module
This article is based on documentation from http://www.noah.org/wiki/pexpect and http://pypi.python.org/pypi/pexpect/ The reason I started to use … [Read more...] about How to use the Pexpect Module
Python Operators
Arithmetic Operators Python includes the +, -, *, /, % (modulus), and ** (exponentiation) operators Assume variable a holds 10 and variable b holds … [Read more...] about Python Operators
Using the CSV module in Python
If you want to import or export spreadsheets and databases for use in the Python interpreter, you must rely on the CSV module, or Comma Separated … [Read more...] about Using the CSV module in Python
Python Setup
Python is free and open source, available for all operating systems from python.org. If not already installed, this article will help you with your … [Read more...] about Python Setup
Using the Platform module in Python
What is it used for? The platform module in Python is used to access the underlying platform’s data, such as, hardware, operating system, and … [Read more...] about Using the Platform module in Python
Using Python to Send Email
Python includes several modules in the standard library for working with emails and email servers. smtplib Overview The smtplib module defines an SMTP … [Read more...] about Using Python to Send Email
Command Line speedtest.net via tespeed
Overview While looking around for a command line tool to check my network speed, I stumbledupon a post on lowendtalk.com. What is it? It's a command … [Read more...] about Command Line speedtest.net via tespeed
Python Collections Counter
Overview of the Collections Module The Collections module implements high-performance container datatypes (beyond the built-in types list, dict and … [Read more...] about Python Collections Counter
OS.Walk and Fnmatch in Python
Overview In an earlier post, OS.walk in Python, I described how to use os.walk and showed some examples on how to use it in scripts. In this … [Read more...] about OS.Walk and Fnmatch in Python