Overview A very good way of learning Python is trying to work with various Web Services API's. How do I access web services such as Youtube, Vimeo, … [Read more...] about How to access various Web Services in Python
Python Secure FTP module
Overview In the previous post we covered the ftplib module in Python, which you can read more about here. In this post we will cover the pysftp … [Read more...] about Python Secure FTP module
How to use FTP in Python
Overview This article will show how you can use FTP in Python with the help of the ftplib module. Ftplib The ftplib module in Python allows you to … [Read more...] about How to use FTP in Python
Argparse Tutorial
What is it? Parser for command-line options, arguments and subcommands Why use it? The argparse module makes it easy to write user-friendly … [Read more...] about Argparse Tutorial
Sending emails using Google
Overview A common task for system administrators and developers is to use scripts to send emails if an error occurs. Why use Gmail? Using … [Read more...] about Sending emails using Google
Development Environment in Python
Overview Some of the steps needed to setup a development environment includes: Operating system - e.g Linux / Mac Project structure - project … [Read more...] about Development Environment in Python
Using pywhois for retrieving WHOIS information
What is pywhois? pywhois is a Python module for retrieving WHOIS information of domains. pywhois works with Python 2.4+ and no external dependencies … [Read more...] about Using pywhois for retrieving WHOIS information
How to use sh in Python
What is sh? sh is a unique subprocess wrapper that maps your system programs to Python functions dynamically. sh helps you write shell scripts in … [Read more...] about How to use sh in Python
Tweet Search with Python
Overview Twitter's API is REST-based and will return results as either XML or JSON, as well as both RSS and ATOM feed formats. Public timelines can be … [Read more...] about Tweet Search with Python
Dictionary Manipulation in Python
Overview A dictionary is a collection of key-value pairs. A dictionary is a set of key:value pairs. All keys in a dictionary must be unique. In a … [Read more...] about Dictionary Manipulation in Python