File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Documentation
3030-------------
3131
3232Complete API documentation is available on `Read the Docs
33- <http ://minfraud.readthedocs.io/> `_.
33+ <https ://minfraud.readthedocs.io/> `_.
3434
3535Usage
3636-----
@@ -303,7 +303,7 @@ Python 3.6 or greater is required. Older versions are not supported.
303303Versioning
304304----------
305305
306- The minFraud Python API uses `Semantic Versioning <http ://semver.org/ >`_.
306+ The minFraud Python API uses `Semantic Versioning <https ://semver.org/ >`_.
307307
308308Support
309309-------
@@ -312,7 +312,7 @@ Please report all issues with this code using the `GitHub issue tracker
312312<https://github.com/maxmind/minfraud-api-python/issues> `_.
313313
314314If you are having an issue with a MaxMind service that is not specific to the
315- client API, please contact `MaxMind support <http ://www.maxmind.com/en/support >`_
315+ client API, please contact `MaxMind support <https ://www.maxmind.com/en/support >`_
316316for assistance.
317317
318318Copyright and License
Original file line number Diff line number Diff line change 244244
245245# Example configuration for intersphinx: refer to the Python standard library.
246246intersphinx_mapping = {
247- "python" : ("http ://python.readthedocs.org/en/latest/" , None ),
248- "geoip2" : ("http ://geoip2.readthedocs.org/en/latest/" , None ),
247+ "python" : ("https ://python.readthedocs.org/en/latest/" , None ),
248+ "geoip2" : ("https ://geoip2.readthedocs.org/en/latest/" , None ),
249249}
250250
251251autoclass_content = "both"
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class GeoIP2Location(geoip2.records.Location):
6969
7070 The date and time of the transaction in the time
7171 zone associated with the IP address. The value is formatted according to
72- `RFC 3339 <http ://tools.ietf.org/html/rfc3339>`_. For instance, the
72+ `RFC 3339 <https ://tools.ietf.org/html/rfc3339>`_. For instance, the
7373 local time in Boston might be returned as 2015-04-27T19:17:24-04:00.
7474
7575 :type: str | None
@@ -463,7 +463,7 @@ class CreditCard:
463463 .. attribute:: country
464464
465465 This property contains the `ISO 3166-1 alpha-2 country code
466- <http ://en.wikipedia.org/wiki/ISO_3166-1_alpha-2>`_ associated with the
466+ <https ://en.wikipedia.org/wiki/ISO_3166-1_alpha-2>`_ associated with the
467467 location of the majority of customers using this credit card as
468468 determined by their billing address. In cases where the location of
469469 customers is highly mixed, this defaults to the country of the bank
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def _email_or_md5(s: str) -> str:
6262
6363
6464# based off of:
65- # http ://stackoverflow.com/questions/2532053/validate-a-hostname-string
65+ # https ://stackoverflow.com/questions/2532053/validate-a-hostname-string
6666def _hostname (hostname : str ) -> str :
6767 if len (hostname ) > 255 :
6868 raise ValueError
Original file line number Diff line number Diff line change 3838 long_description = _readme ,
3939 author = "Gregory Oschwald" ,
4040 author_email = "goschwald@maxmind.com" ,
41- url = "http ://www.maxmind.com/" ,
41+ url = "https ://www.maxmind.com/" ,
4242 packages = ["minfraud" ],
4343 package_data = {"minfraud" : ["py.typed" ]},
4444 include_package_data = True ,
You can’t perform that action at this time.
0 commit comments