This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import glob | |
import sys | |
import json | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
from colorama import Fore | |
from colorama import Style |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
### BEGIN INIT INFO | |
# Provides: dns-sync | |
# Required-Start: | |
# Required-Stop: | |
# Default-Start: S | |
# Default-Stop: | |
# Short-Description: Synchronizes /etc/resolv.conf in WLS with Windows DNS - Matthias Brooks | |
### END INIT INFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Scrape full sized images from vangoghmuseum.nl | |
---- requrires.txt ------------------------------------------------------------ | |
beautifulsoup4==4.6.0 | |
bs4==0.0.1 | |
certifi==2018.4.16 | |
chardet==3.0.4 | |
idna==2.7 | |
Pillow==5.2.0 | |
python-slugify==1.2.5 |