Add files via upload
[PyWWW-Get.git] / pywwwget-dl.py
bloba1e9b17f31fcc5348e3c833ab95d71bb50fa2e40
1 #!/usr/bin/env python
3 '''
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the Revised BSD License.
7 This program is distributed in the hope that it will be useful,
8 but WITHOUT ANY WARRANTY; without even the implied warranty of
9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 Revised BSD License for more details.
12 Copyright 2016-2023 Game Maker 2k - https://github.com/GameMaker2k
13 Copyright 2016-2023 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
15 $FileInfo: pywwwget-dl.py - Last Update: 9/30/2023 Ver. 1.7.0 RC 1 - Author: cooldude2k $
16 '''
18 from __future__ import division, absolute_import, print_function;
19 import re, os, sys, pywwwget, argparse;
20 import logging as log;
22 __project__ = pywwwget.__project__;
23 __program_name__ = pywwwget.__program_name__;
24 __project_url__ = pywwwget.__project_url__;
25 __version_info__ = pywwwget.__version_info__;
26 __version_date_info__ = pywwwget.__version_date_info__;
27 __version_date__ = pywwwget.__version_date__;
28 __version_date_plusrc__ = pywwwget.__version_date_plusrc__
29 __version__ = pywwwget.__version__;
30 __version_date_plusrc__ = pywwwget.__version_date_plusrc__;
32 geturls_cj = pywwwget.geturls_cj;
33 geturls_ua = pywwwget.geturls_ua;
34 geturls_ua_firefox_windows7 = pywwwget.geturls_ua_firefox_windows7;
35 geturls_ua_seamonkey_windows7 = pywwwget.geturls_ua_seamonkey_windows7;
36 geturls_ua_chrome_windows7 = pywwwget.geturls_ua_chrome_windows7;
37 geturls_ua_chromium_windows7 = pywwwget.geturls_ua_chromium_windows7;
38 geturls_ua_palemoon_windows7 = pywwwget.geturls_ua_palemoon_windows7;
39 geturls_ua_opera_windows7 = pywwwget.geturls_ua_opera_windows7;
40 geturls_ua_vivaldi_windows7 = pywwwget.geturls_ua_chromium_windows7;
41 geturls_ua_internet_explorer_windows7 = pywwwget.geturls_ua_internet_explorer_windows7;
42 geturls_ua_microsoft_edge_windows7 = pywwwget.geturls_ua_microsoft_edge_windows7;
43 geturls_ua_pywwwget_python = pywwwget.geturls_ua_pywwwget_python;
44 geturls_ua_pywwwget_python_alt = pywwwget.geturls_ua_pywwwget_python_alt;
45 geturls_ua_googlebot_google = pywwwget.geturls_ua_googlebot_google;
46 geturls_ua_googlebot_google_old = pywwwget.geturls_ua_googlebot_google_old;
47 geturls_headers = pywwwget.geturls_headers;
48 geturls_headers_firefox_windows7 = pywwwget.geturls_headers_firefox_windows7;
49 geturls_headers_seamonkey_windows7 = pywwwget.geturls_headers_seamonkey_windows7;
50 geturls_headers_chrome_windows7 = pywwwget.geturls_headers_chrome_windows7;
51 geturls_headers_chromium_windows7 = pywwwget.geturls_headers_chromium_windows7;
52 geturls_headers_palemoon_windows7 = pywwwget.geturls_headers_palemoon_windows7;
53 geturls_headers_opera_windows7 = pywwwget.geturls_headers_opera_windows7;
54 geturls_headers_vivaldi_windows7 = pywwwget.geturls_headers_vivaldi_windows7;
55 geturls_headers_internet_explorer_windows7 = pywwwget.geturls_headers_internet_explorer_windows7;
56 geturls_headers_microsoft_edge_windows7 = pywwwget.geturls_headers_microsoft_edge_windows7;
57 geturls_headers_pywwwget_python = pywwwget.geturls_headers_pywwwget_python;
58 geturls_headers_pywwwget_python_alt = pywwwget.geturls_headers_pywwwget_python_alt;
59 geturls_headers_googlebot_google = pywwwget.geturls_headers_googlebot_google;
60 geturls_headers_googlebot_google_old = pywwwget.geturls_headers_googlebot_google_old;
61 geturls_download_sleep = pywwwget.geturls_download_sleep;
63 parser = argparse.ArgumentParser(description="Python libary/module to download files.", conflict_handler="resolve", add_help=True);
64 parser.add_argument("url", help="enter a url");
65 parser.add_argument("-V", "--version", action="version", version=__program_name__+" "+__version__);
66 parser.add_argument("-u", "--update", action="store_true", help="update this program to latest version. Make sure that you have sufficient permissions (run with sudo if needed)");
67 parser.add_argument("-d", "--dump-user-agent", action="store_true", help="display the current browser identification");
68 parser.add_argument("-u", "--user-agent", default=geturls_ua_firefox_windows7, help="specify a custom user agent");
69 parser.add_argument("-r", "--referer", default="https://www.google.com/", help="specify a custom referer, use if the video access");
70 parser.add_argument("-O", "--output-document", default="-", help="specify a file name for output");
71 parser.add_argument("-o", "--output-directory", default=os.path.realpath(os.getcwd()), help="specify a directory to output file to");
72 parser.add_argument("-l", "--use-httplib", default="urllib", help="select library to download file can be urllib or requests or mechanize");
73 parser.add_argument("-b", "--set-buffersize", default=524288, type=int, help="set how big buffersize is in bytes. how much it will download");
74 parser.add_argument("-v", "--verbose", action="store_true", help="print various debugging information");
75 getargs = parser.parse_args();
77 if(not pywwwget.check_httplib_support(getargs.use_httplib)):
78 getargs.use_httplib = "urllib";
80 getargs_cj = geturls_cj;
81 getargs_headers = {'Referer': getargs.referer, 'User-Agent': getargs.user_agent, 'Accept-Encoding': "gzip, deflate", 'Accept-Language': "en-US,en;q=0.8,en-CA,en-GB;q=0.6", 'Accept-Charset': "ISO-8859-1,ISO-8859-15,utf-8;q=0.7,*;q=0.7", 'Accept': "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", 'Connection': "close"};
83 getargs.output_directory = os.path.realpath(getargs.output_directory);
85 if(getargs.verbose==True):
86 log.basicConfig(format="%(levelname)s: %(message)s", level=log.DEBUG);
88 if(getargs.dump_user_agent==True):
89 print(getargs.user_agent);
90 sys.exit();
92 if(getargs.output_document=="-"):
93 if(sys.version[0]=="2"):
94 precontstr = pywwwget.download_from_url_to_file(getargs.url, getargs_headers, getargs.user_agent, getargs.referer, geturls_cj, httplibuse=getargs.use_httplib, buffersize=[getargs.set_buffersize, getargs.set_buffersize], outfile=getargs.output_document, outpath=os.getcwd());
95 print(precontstr['Content']);
96 if(sys.version[0]>="3"):
97 precontstr = pywwwget.download_from_url_to_file(getargs.url, getargs_headers, getargs.user_agent, getargs.referer, geturls_cj, httplibuse=getargs.use_httplib, buffersize=[getargs.set_buffersize, getargs.set_buffersize], outfile=getargs.output_document, outpath=os.getcwd());
98 print(precontstr['Content'].decode('ascii', 'replace'));
100 if(getargs.output_document!="-"):
101 pywwwget.download_from_url_to_file(getargs.url, getargs_headers, getargs.user_agent, getargs.referer, geturls_cj, httplibuse=getargs.use_httplib, buffersize=[getargs.set_buffersize, getargs.set_buffersize], outfile=getargs.output_document, outpath=getargs.output_directory);