
वेबसाइटों की सूची के स्क्रीनशॉट लेने के लिए एक सरल स्क्रिप्ट
वेबसाइटों की सूची के स्क्रीनशॉट लेने के लिए एक सरल स्क्रिप्ट, जो url-to-image PhantomJS स्क्रिप्ट पर आधारित है।
--ignore-certificate-errors विकल्प काम नहीं करता है और अब कभी काम नहीं करेगा: समाधान एक उपयुक्त वेबड्राइवर का उपयोग करना है, लेकिन आज तक webscreenshot इस बल्कि जटिल विधि का समर्थन करने का लक्ष्य नहीं रखता है जिसके लिए कुछ तृतीय-पक्ष टूल्स की आवश्यकता होती है।ImageMagick की आवश्यकता है)अपने लक्ष्यों को एक टेक्स्ट फ़ाइल में रखें और इसे -i विकल्प के साथ पास करें, या यदि आपके पास केवल एक URL है तो एक स्थितिगत तर्क के रूप में पास करें।
स्क्रीनशॉट डिफ़ॉल्ट रूप से आपकी वर्तमान ./screenshots/ निर्देशिका में उपलब्ध होंगे।
स्वीकृत इनपुट प्रारूप निम्नलिखित हैं:
http(s)://domain_or_ip:port(/resource)
domain_or_ip:port(/resource)
domain_or_ip(/resource)
webscreenshot.py version 2.96
usage: webscreenshot [-h] [-i INPUT_FILE] [-o OUTPUT_DIRECTORY] [-w WORKERS] [-v] [--no-error-file] [-z SINGLE_OUTPUT_FILE] [-p PORT]
[-s] [-m] [-r {phantomjs,chrome,chromium,edge,firefox}] [--renderer-binary RENDERER_BINARY] [--no-xserver]
[--window-size WINDOW_SIZE] [-f {pdf,png,jpg,jpeg,bmp,ppm}] [-q [0-100]] [--ajax-max-timeouts AJAX_MAX_TIMEOUTS]
[--crop CROP] [--custom-js CUSTOM_JS] [-l] [--label-size LABEL_SIZE] [--label-bg-color LABEL_BG_COLOR]
[--imagemagick-binary IMAGEMAGICK_BINARY] [-c COOKIE] [-a HEADER] [-u HTTP_USERNAME] [-b HTTP_PASSWORD]
[-P PROXY] [-A PROXY_AUTH] [-T PROXY_TYPE] [-t TIMEOUT]
[URL]
options:
-h, --help show this help message and exit
Main parameters:
URL Single URL target given as a positional argument
-i, --input-file INPUT_FILE
<INPUT_FILE> text file containing the target list. Ex: list.txt
-o, --output-directory OUTPUT_DIRECTORY
<OUTPUT_DIRECTORY> (optional): screenshots output directory (default './screenshots/')
-w, --workers WORKERS
<WORKERS> (optional): number of parallel execution workers (default 4)
-v, --verbosity <VERBOSITY> (optional): verbosity level, repeat it to increase the level { -v INFO, -vv DEBUG } (default
verbosity ERROR)
--no-error-file <NO_ERROR_FILE> (optional): do not write a file with the list of URL of failed screenshots (default false)
-z, --single-output-file SINGLE_OUTPUT_FILE
<SINGLE_OUTPUT_FILE> (optional): name of a file which will be the single output of all inputs. Ex. test.png
Input processing parameters:
-p, --port PORT <PORT> (optional): use the specified port for each target in the input list. Ex: -p 80
-s, --ssl <SSL> (optional): enforce SSL/TLS for every connection
-m, --multiprotocol <MULTIPROTOCOL> (optional): perform screenshots over HTTP and HTTPS for each target
Screenshot renderer parameters:
-r, --renderer {phantomjs,chrome,chromium,edge,firefox}
<RENDERER> (optional): renderer to use among 'phantomjs' (legacy but best results), 'chrome', 'chromium',
'edge', 'firefox' (version > 57) (default 'phantomjs')
--renderer-binary RENDERER_BINARY
<RENDERER_BINARY> (optional): path to the renderer executable if it cannot be found in $PATH
--no-xserver <NO_X_SERVER> (optional): if you are running without an X server, will use xvfb-run to execute the renderer
(by default, trying to detect if DISPLAY environment variable exists
Screenshot image parameters:
--window-size WINDOW_SIZE
<WINDOW_SIZE> (optional): width and height of the screen capture (default '1200,800')
-f, --format {pdf,png,jpg,jpeg,bmp,ppm}
<FORMAT> (optional, phantomjs only): specify an output image file format, "pdf", "png", "jpg", "jpeg", "bmp"
or "ppm" (default 'png')
-q, --quality [0-100]
<QUALITY> (optional, phantomjs only): specify the output image quality, an integer between 0 and 100 (default
75)
--ajax-max-timeouts AJAX_MAX_TIMEOUTS
<AJAX_MAX_TIMEOUTS> (optional, phantomjs only): per AJAX request, and max URL timeout in milliseconds
(default '1400,1800')
--crop CROP <CROP> (optional, phantomjs only): rectangle <t,l,w,h> to crop the screen capture to (default to WINDOW_SIZE:
'0,0,w,h'), only numbers, w(idth) and h(eight). Ex. "10,20,w,h"
--custom-js CUSTOM_JS
<CUSTOM_JS> (optional, phantomjs only): path of a file containing JavaScript code to be executed before
taking the screenshot. Ex: js.txt
Screenshot label parameters:
-l, --label <LABEL> (optional): for each screenshot, create another one displaying inside the target URL (requires
imagemagick)
--label-size LABEL_SIZE
<LABEL_SIZE> (optional): font size for the label (default 60)
--label-bg-color LABEL_BG_COLOR
<LABEL_BACKGROUND_COLOR> (optional): label imagemagick background color (default NavajoWhite)
--imagemagick-binary IMAGEMAGICK_BINARY
<LABEL_BINARY> (optional): path to the imagemagick binary (magick or convert) if it cannot be found in $PATH
HTTP parameters:
-c, --cookie COOKIE <COOKIE_STRING> (optional): cookie string to add. Ex: -c "JSESSIONID=1234; YOLO=SWAG"
-a, --header HEADER <HEADER> (optional): custom or additional header. Repeat this option for every header. Ex: -a "Host:
localhost" -a "Foo: bar"
-u, --http-username HTTP_USERNAME
<HTTP_USERNAME> (optional): specify a username for HTTP Basic Authentication.
-b, --http-password HTTP_PASSWORD
<HTTP_PASSWORD> (optional): specify a password for HTTP Basic Authentication.
Connection parameters:
-P, --proxy PROXY <PROXY> (optional): specify a proxy. Ex: -P http://proxy.company.com:8080
-A, --proxy-auth PROXY_AUTH
<PROXY_AUTH> (optional): provides authentication information for the proxy. Ex: -A user:password
-T, --proxy-type PROXY_TYPE
<PROXY_TYPE> (optional): specifies the proxy type, "http" (default), "none" (disable completely), or
"socks5". Ex: -T socks
-t, --timeout TIMEOUT
<TIMEOUT> (optional): renderer execution timeout in seconds (default 30 sec)
list.txt
--------
http://google.fr
https://216.58.213.131
216.58.213.131
https://duckduckgo.com/robots.txt
सूची के साथ डिफ़ॉल्ट निष्पादन
-----------------------------
$ python webscreenshot.py -i list.txt
webscreenshot.py version 2.3
[+] 4 URLs to be screenshot
[+] 4 actual URLs screenshot
[+] 0 error(s)
एकल URL के साथ डिफ़ॉल्ट निष्पादन
-----------------------------------
$ python webscreenshot.py -v google.fr
webscreenshot.py version 2.3
[INFO][General] 'google.fr' has been formatted as 'http://google.fr:80' with supplied overriding options
[+] 1 URLs to be screenshot
[INFO][http://google.fr:80] Screenshot OK
[+] 1 actual URLs screenshot
[+] 0 error(s)
बढ़ी हुई वर्बोसिटी स्तर निष्पादन
-----------------------------------
$ python webscreenshot.py -i list.txt -v
webscreenshot.py version 2.3
[INFO][General] 'http://google.fr' has been formatted as 'http://google.fr:80' with supplied overriding options
[INFO][General] 'https://216.58.213.131' has been formatted as 'https://216.58.213.131:443' with supplied overriding options
[INFO][General] '216.58.213.131' has been formatted as 'http://216.58.213.131:80' with supplied overriding options
[INFO][General] 'https://duckduckgo.com/robots.txt' has been formatted as 'https://duckduckgo.com:443/robots.txt' with supplied overriding options
[+] 4 URLs to be screenshot
[INFO][https://duckduckgo.com:443/robots.txt] Screenshot OK
[INFO][http://216.58.213.131:80] Screenshot OK
[INFO][https://216.58.213.131:443] Screenshot OK
[INFO][http://google.fr:80] Screenshot OK
[+] 4 actual URLs screenshot
[+] 0 error(s)
परिणाम
-------
$ ls -l screenshots/
total 187
-rwxrwxrwx 1 root root 53805 May 19 16:04 http_216.58.213.131_80.png
-rwxrwxrwx 1 root root 53805 May 19 16:05 http_google.fr_80.png
-rwxrwxrwx 1 root root 53805 May 19 16:04 https_216.58.213.131_443.png
-rwxrwxrwx 1 root root 27864 May 19 16:04 https_duckduckgo.com_443_robots.txt.png
नीचे सूचीबद्ध नहीं किए गए विकल्प वर्तमान प्रत्येक रेंडरर द्वारा समर्थित हैं
pip install webscreenshot और फिर सीधे $ webscreenshot का उपयोग करेंpip install -r requirements.txt चलाएं और फिर python webscreenshot.pyxvfb यदि आप हेडलेस OS में webscreenshot चलाना चाहते हैं: सब कुछ आसान बनाने के लिए --no-xserver webscreenshot विकल्प का उपयोग करेंImageMagick बाइनरी (magick या convert) यदि आप --label विकल्प के साथ स्क्रीनशॉट में URL एम्बेड करना चाहते हैं: का पालन करेंwebscreenshot मुफ्त सॉफ्टवेयर है: आप इसे पुनर्वितरित और/या संशोधित कर सकते हैं GNU जनरल पब्लिक लाइसेंस की शर्तों के तहत जैसा कि फ्री सॉफ्टवेयर फाउंडेशन द्वारा प्रकाशित किया गया है, या तो लाइसेंस का संस्करण 3, या (आपके विकल्प पर) कोई बाद का संस्करण।
webscreenshot को इस उम्मीद में वितरित किया जाता है कि यह उपयोगी होगा, लेकिन बिना किसी वारंटी के; यहां तक कि व्यापारिकता या किसी विशेष उद्देश्य के लिए उपयुक्तता की निहित वारंटी के बिना।
GNU जनरल पब्लिक लाइसेंस के अधिक विवरण के लिए देखें।
आपको webscreenshot के साथ GNU जनरल पब्लिक लाइसेंस की एक प्रति प्राप्त हुई होगी। यदि नहीं, तो http://www.gnu.org/licenses/ देखें।
| विकल्प श्रेणी | विकल्प | PhantomJS रेंडरर | Chromium / Chrome / Edge Chromium रेंडरर | Firefox रेंडरर |
|---|
| स्क्रीनशॉट पैरामीटर | ||||
format (-f) | हाँ | नहीं | नहीं | |
quality (-q) | हाँ | नहीं | नहीं | |
ajax and request timeouts (--ajax-max-timeouts) | हाँ | नहीं | नहीं | |
crop (--crop) | हाँ | नहीं | नहीं | |
custom JavaScript (--custom-js) | हाँ | नहीं | नहीं | |
| HTTP पैरामीटर | ||||
cookie (-c) | हाँ | नहीं | नहीं | |
header (-a) | हाँ | नहीं | नहीं | |
http_username (-u) | हाँ | नहीं | नहीं | |
http_password (-b) | हाँ | नहीं | नहीं | |
| कनेक्शन पैरामीटर | ||||
proxy (-P) | हाँ | हाँ | नहीं | |
proxy_auth (-A) | हाँ | नहीं | नहीं | |
proxy_type (-T) | हाँ | हाँ | नहीं | |
| गैर-सार्वजनिक रूप से हस्ताक्षरित प्रमाणपत्र वाली HTTPS वेबसाइट का स्क्रीनशॉट लेने की क्षमता | हाँ | नहीं | नहीं |