├── .gitignore ├── README.md ├── beautifulsoup ├── amazon.py ├── amazon_reviews.py ├── answers.py ├── craigstlist.py ├── google.py ├── readme.md ├── reddit.py ├── simple_alibaba.py └── simple_craigslist.py ├── manipulating_text └── get_words.py ├── nouns.txt ├── selenium ├── alibaba.py ├── output.csv ├── simple.py └── skymall.py ├── uploading_to_sftp.py ├── verbs.txt ├── video ├── FFMPEG.md ├── alphabetize.py ├── automatic_supercut.py ├── concatenate.py ├── getting-material.md ├── moviepy-tutorial.md ├── moviepyclips.py ├── randomize.py ├── repeat_frames.py └── videogrep.md ├── videomash ├── app.py ├── greetings.py ├── greetings.pyc ├── messenger.py ├── nouns.txt ├── runbot.sh ├── static │ ├── catscatholic.mp4 │ ├── catscats.mp4 │ ├── catscops.mp4 │ ├── catslawyers.mp4 │ ├── darpahippos.mp4 │ └── style.css ├── templates │ ├── home.html │ └── video.html ├── videomash.py └── videomash.pyc ├── week_01 ├── HTML.md ├── command_line.md └── python_basics.md └── week_04 ├── playingwithpillow.py ├── randomize.py ├── shutterstock.py └── vid.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/README.md -------------------------------------------------------------------------------- /beautifulsoup/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/amazon.py -------------------------------------------------------------------------------- /beautifulsoup/amazon_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/amazon_reviews.py -------------------------------------------------------------------------------- /beautifulsoup/answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/answers.py -------------------------------------------------------------------------------- /beautifulsoup/craigstlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/craigstlist.py -------------------------------------------------------------------------------- /beautifulsoup/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/google.py -------------------------------------------------------------------------------- /beautifulsoup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/readme.md -------------------------------------------------------------------------------- /beautifulsoup/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/reddit.py -------------------------------------------------------------------------------- /beautifulsoup/simple_alibaba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/simple_alibaba.py -------------------------------------------------------------------------------- /beautifulsoup/simple_craigslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/beautifulsoup/simple_craigslist.py -------------------------------------------------------------------------------- /manipulating_text/get_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/manipulating_text/get_words.py -------------------------------------------------------------------------------- /nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/nouns.txt -------------------------------------------------------------------------------- /selenium/alibaba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/selenium/alibaba.py -------------------------------------------------------------------------------- /selenium/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/selenium/output.csv -------------------------------------------------------------------------------- /selenium/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/selenium/simple.py -------------------------------------------------------------------------------- /selenium/skymall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/selenium/skymall.py -------------------------------------------------------------------------------- /uploading_to_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/uploading_to_sftp.py -------------------------------------------------------------------------------- /verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/verbs.txt -------------------------------------------------------------------------------- /video/FFMPEG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/FFMPEG.md -------------------------------------------------------------------------------- /video/alphabetize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/alphabetize.py -------------------------------------------------------------------------------- /video/automatic_supercut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/automatic_supercut.py -------------------------------------------------------------------------------- /video/concatenate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/concatenate.py -------------------------------------------------------------------------------- /video/getting-material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/getting-material.md -------------------------------------------------------------------------------- /video/moviepy-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/moviepy-tutorial.md -------------------------------------------------------------------------------- /video/moviepyclips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/moviepyclips.py -------------------------------------------------------------------------------- /video/randomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/randomize.py -------------------------------------------------------------------------------- /video/repeat_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/repeat_frames.py -------------------------------------------------------------------------------- /video/videogrep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/video/videogrep.md -------------------------------------------------------------------------------- /videomash/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/app.py -------------------------------------------------------------------------------- /videomash/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/greetings.py -------------------------------------------------------------------------------- /videomash/greetings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/greetings.pyc -------------------------------------------------------------------------------- /videomash/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/messenger.py -------------------------------------------------------------------------------- /videomash/nouns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/nouns.txt -------------------------------------------------------------------------------- /videomash/runbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/runbot.sh -------------------------------------------------------------------------------- /videomash/static/catscatholic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/catscatholic.mp4 -------------------------------------------------------------------------------- /videomash/static/catscats.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/catscats.mp4 -------------------------------------------------------------------------------- /videomash/static/catscops.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/catscops.mp4 -------------------------------------------------------------------------------- /videomash/static/catslawyers.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/catslawyers.mp4 -------------------------------------------------------------------------------- /videomash/static/darpahippos.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/darpahippos.mp4 -------------------------------------------------------------------------------- /videomash/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/static/style.css -------------------------------------------------------------------------------- /videomash/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/templates/home.html -------------------------------------------------------------------------------- /videomash/templates/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/templates/video.html -------------------------------------------------------------------------------- /videomash/videomash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/videomash.py -------------------------------------------------------------------------------- /videomash/videomash.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/videomash/videomash.pyc -------------------------------------------------------------------------------- /week_01/HTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_01/HTML.md -------------------------------------------------------------------------------- /week_01/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_01/command_line.md -------------------------------------------------------------------------------- /week_01/python_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_01/python_basics.md -------------------------------------------------------------------------------- /week_04/playingwithpillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_04/playingwithpillow.py -------------------------------------------------------------------------------- /week_04/randomize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_04/randomize.py -------------------------------------------------------------------------------- /week_04/shutterstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_04/shutterstock.py -------------------------------------------------------------------------------- /week_04/vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiboredom/detourning-the-web/HEAD/week_04/vid.py --------------------------------------------------------------------------------