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
| version: "3.3" | |
| services: | |
| ################################################ | |
| #### Traefik Proxy Setup ##### | |
| ############################################### | |
| traefik: | |
| image: traefik:v2.0 | |
| restart: always |
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
| """Download with automatic resume. | |
| 2018-06-28 v1.0 by Cees Timmerman | |
| 2018-07-09 v1.1 Added If-Unmodified-Since header for consistency.""" | |
| import os, shutil, sys, time | |
| import requests # python -m pip install requests | |
| def download_file(url, local_filename=None): | |
| if not local_filename: | |
| local_filename = url.split('/')[-1] | |