Skip to content

Instantly share code, notes, and snippets.

View tinu1976ch's full-sized avatar

Tinu tinu1976ch

  • near Zurich, Switzerland
View GitHub Profile
@tinu1976ch
tinu1976ch / netflix-genre-crawl.py
Created November 27, 2018 08:50 — forked from blech/netflix-genre-crawl.py
Fetch genre names from Netflix
#!/usr/bin/python
# TODO make range command line arguments
import sys, codecs
sys.stdout = codecs.getwriter('utf-8')(sys.stdout) # if your terminal can't do utf-8, well...
import time
import urllib2
import BeautifulSoup