Why Python is a perfect language for Kibitzr

Kibitzr is a command line utility, that (depending on configuration)
polls web pages and notify on changes through different channels.
Kibitzr is written in Python and the first version was built within an hour.
This speed of development is achieved by Py… Read more

Similar

The Walrus-While Python Pattern

Suppose you are reading from an unbounded data source in increments of a certain size. This is a common sort of situation; for example, reading lines from stdin. The total length of the data source is not known in advance, so the only thing to do is keep ... (more…)

Read more »

Clean architectures in Python: a step-by-step example

One year ago I was introduced by my friend Roberto Ciatti to the concept of Clean Architecture, as it is called by Robert Martin. The well-known Uncle Bob talks a lot about this concept at conferences and wrote some very interesting posts about it. What h...

Read more »

Web Crawling with Python

This post will show you how to crawl the web using Python. Web crawling is a powerful technique to collect data from the web by finding all the URLs for one or multiple domains... (more…)

Read more »