mangopay4-python-sdk 4.0.0__tar.gz → 4.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/PKG-INFO +1 -1
  2. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/utils.py +0 -12
  3. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/pyproject.toml +1 -1
  4. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/LICENSE +0 -0
  5. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/README.md +0 -0
  6. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/__init__.py +0 -0
  7. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/api.py +0 -0
  8. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/auth.py +0 -0
  9. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/base.py +0 -0
  10. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/compat.py +0 -0
  11. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/constants.py +0 -0
  12. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/exceptions.py +0 -0
  13. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/fields.py +0 -0
  14. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/page.py +0 -0
  15. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/query.py +0 -0
  16. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/ratelimit.py +0 -0
  17. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/resources.py +0 -0
  18. {mangopay4_python_sdk-4.0.0 → mangopay4_python_sdk-4.0.1}/mangopay/signals.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mangopay4-python-sdk
3
- Version: 4.0.0
3
+ Version: 4.0.1
4
4
  Summary: A client library written in python to work with mangopay v2 api
5
5
  License-Expression: MIT
6
6
  License-File: LICENSE
@@ -1,4 +1,3 @@
1
- # see: http://hustoknow.blogspot.com/2011/01/m2crypto-and-facebook-python-sdk.html
2
1
  from __future__ import unicode_literals
3
2
 
4
3
  import copy
@@ -15,17 +14,6 @@ import six
15
14
  from .compat import python_2_unicode_compatible
16
15
  from .exceptions import CurrencyMismatch
17
16
 
18
- if six.PY3:
19
- from urllib import request
20
-
21
- orig = request.URLopener.open_https
22
- request.URLopener.open_https = orig # uncomment this line back and forth
23
- elif six.PY2:
24
- import urllib
25
-
26
- orig = urllib.URLopener.open_https
27
- urllib.URLopener.open_https = orig
28
-
29
17
 
30
18
  class AliasProperty(object):
31
19
  def __init__(self, name):
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [project]
6
6
  name = "mangopay4-python-sdk"
7
- version = "4.0.0"
7
+ version = "4.0.1"
8
8
  description = "A client library written in python to work with mangopay v2 api"
9
9
  readme = "README.md"
10
10
  license = "MIT"