-
-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support for HTTP/HTTPS/SOCKS5 proxies (#94)
- Loading branch information
Showing
11 changed files
with
35 additions
and
64 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
APP_NAME := google_maps_scraper | ||
VERSION := 1.5.2 | ||
VERSION := 1.5.3 | ||
|
||
default: help | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,16 +102,14 @@ <h1>Google Maps Scraper</h1> | |
<fieldset> | ||
<div class="form-group"> | ||
<label for="proxies">Proxies:(one per line)</label> | ||
<p class="text-muted"><small>Examples:<br> | ||
<p>HTTPS proxy with username/password: https://username:[email protected]:443<p> | ||
<p>HTTP proxy with username/password: http://username:[email protected]:443<p> | ||
<p>SOCKS5 proxy without auth: socks5://127.0.0.1:8000</p> | ||
</p> | ||
|
||
<textarea id="proxies" name="proxies" rows="5">{{.ProxiesString}}</textarea> | ||
</div> | ||
<div class="form-group checkbox"> | ||
<label for="proxyusername">Username</label> | ||
<input type="text" id="proxyusername" name="proxyusername" value="{{.ProxyUsername}}"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="proxypassword">Password:</label> | ||
<input type="password" id="proxypassword" name="proxypassword" value="{{.ProxyPassword}}"> | ||
</div> | ||
</fieldset> | ||
</details> | ||
|
||
|
This file contains 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