Overview This article is an introduction to BeautifulSoup 4 in Python. If you want to know more I recommend you to read the official documentation … [Read more...] about Beautiful Soup 4 Python
Modules
Using Feedparser in Python
Overview In this post we will take a look on how we can download and parse syndicated feeds with Python. The Python module we will use for that is … [Read more...] about Using Feedparser in Python
Using the Requests Library in Python
First things first, let’s introduce you to Requests. What is the Requests Resource? Requests is an Apache2 Licensed HTTP library, written in Python. … [Read more...] about Using the Requests Library in 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 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
Python Docstrings
What is a Docstring? Python documentation strings (or docstrings) provide a convenient way of associating documentation with Python modules, … [Read more...] about Python Docstrings
How to import modules in Python
Modules Python modules makes the programming a lot easier. It's basically a file that consist of already written code. When Python imports a module, … [Read more...] about How to import modules in Python