PyLinks 0.0.0.dev60__py3-none-any.whl → 0.0.0.dev61__py3-none-any.whl

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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: PyLinks
3
- Version: 0.0.0.dev60
3
+ Version: 0.0.0.dev61
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: requests<3,>=2.31.0
6
- Requires-Dist: ExceptionMan==0.0.0.dev47
7
- Requires-Dist: MDit==0.0.0.dev47
6
+ Requires-Dist: ExceptionMan==0.0.0.dev48
7
+ Requires-Dist: MDit==0.0.0.dev48
@@ -10,7 +10,7 @@ pylinks/api/github.py,sha256=aykNCvHJlWYKWnYeZL97j1xP6oQqpf3qeJuyROVBdqc,83383
10
10
  pylinks/api/orcid.py,sha256=e0DAuziq7HdGJ4BJOI28mo1emB4_7gPsLxR7VsYPYMA,1377
11
11
  pylinks/api/zenodo.py,sha256=NcWOrFM0-3hMlIzS2mN1-5addJ-A7QDAFPcZWGedquQ,8375
12
12
  pylinks/exception/__init__.py,sha256=tU-LvaYi4NsLEZeeUN-JjemhefJ6R_DG37fIMoaZ5a4,89
13
- pylinks/exception/api.py,sha256=cbbYOiAeREIQnt-_EWpeRzaKwEb1kGuuVrpWtZc6Bj4,6000
13
+ pylinks/exception/api.py,sha256=bjqq0V22SW_2mK-dOzMpKZNHl3pzHp1MfI6jdUXsDoY,6035
14
14
  pylinks/exception/base.py,sha256=dAHiss2J_Sq-4-SkFJHlYVFMw6n5BKGw2oxGFUCgmik,1504
15
15
  pylinks/exception/media_type.py,sha256=QHpXO4GWG_63kZfTkOrTCuOPnKaZ191swvgy6biO_o4,1027
16
16
  pylinks/exception/uri.py,sha256=wVpxsCWiavSyGoUE9ujPtNYaFcP5cuJZZfyGimK6jYs,576
@@ -23,7 +23,7 @@ pylinks/site/pypi.py,sha256=-NSglDo-k55bALi-aN0iF2I6z1WXsjYOIVDyjNUxuuU,1944
23
23
  pylinks/site/readthedocs.py,sha256=_s27ETa3oRoeDdQvFrrtuSh2my6cjWEIEVhwHz0yZ90,1797
24
24
  pylinks/uri/__init__.py,sha256=W38fMHGgV7mg8uPWC8IMWGgmlCQO9VHIqNpInG2NS2I,29
25
25
  pylinks/uri/data.py,sha256=uD1CipMo4oFpxH8liOY24PsxMyuR5kEH2a0XDkO1dgI,6380
26
- PyLinks-0.0.0.dev60.dist-info/METADATA,sha256=rwzr47jaZa4HcUHdFQ70LoyUFSmDRy8Djod9XG3mEbo,190
27
- PyLinks-0.0.0.dev60.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
28
- PyLinks-0.0.0.dev60.dist-info/top_level.txt,sha256=LlaTHnPw89VppYU3vCciF81IOSzvc16RkdNkOCqhAcs,8
29
- PyLinks-0.0.0.dev60.dist-info/RECORD,,
26
+ PyLinks-0.0.0.dev61.dist-info/METADATA,sha256=SvEdqJnvFZuKzAi6uYpUBfbcdwQ6RSxvqKO-BIuXkNc,190
27
+ PyLinks-0.0.0.dev61.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
28
+ PyLinks-0.0.0.dev61.dist-info/top_level.txt,sha256=LlaTHnPw89VppYU3vCciF81IOSzvc16RkdNkOCqhAcs,8
29
+ PyLinks-0.0.0.dev61.dist-info/RECORD,,
pylinks/exception/api.py CHANGED
@@ -24,6 +24,7 @@ class WebAPIRequestError(WebAPIError):
24
24
  def __init__(self, request_error: RequestException):
25
25
  self.request = request_error.request
26
26
  self.response = request_error.response
27
+ self.error = request_error
27
28
  details = []
28
29
  if self.request:
29
30
  details.append(_process_request(self.request))