-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from ipgetter to AWS's IP address service
For three reasons: 1) The upstream 'ipgetter' library is no longer available (¯\_(ツ)_/¯) 2) This results in more universal code, and uses a single, but reliable servcice (AWS's 'checkip' service) instead of a oft-outdated and manually-managed list of "what's my IP?" services (which all have different responses that must be parsed). This also removes the dependency on an obviously no-longer-maintained library. 3) Resolves #1
- Loading branch information
Showing
2 changed files
with
23 additions
and
11 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
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,3 +1,3 @@ | ||
boto3>=1.4.4 | ||
docopt>=0.6.2 | ||
ipgetter>=0.6 | ||
requests>=2.20.1 |