chibi-github 0.2.0__tar.gz → 0.3.0__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.
- {chibi_github-0.2.0 → chibi_github-0.3.0}/HISTORY.rst +5 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/PKG-INFO +6 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/__init__.py +1 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/response.py +0 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/serializers.py +2 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/PKG-INFO +6 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/setup.cfg +1 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/setup.py +1 -1
- {chibi_github-0.2.0 → chibi_github-0.3.0}/AUTHORS.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/CONTRIBUTING.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/LICENSE +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/MANIFEST.in +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/README.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/chibi_github.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/cli.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/config.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/exception.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github/urls.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/SOURCES.txt +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/dependency_links.txt +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/entry_points.txt +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/not-zip-safe +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/requires.txt +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/chibi_github.egg-info/top_level.txt +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/Makefile +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/authors.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/conf.py +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/contributing.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/history.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/index.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/installation.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/make.bat +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/readme.rst +0 -0
- {chibi_github-0.2.0 → chibi_github-0.3.0}/docs/usage.rst +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chibi_github
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: libreria para usar github
|
|
5
5
|
Home-page: https://github.com/dem4ply/chibi_github
|
|
6
6
|
Author: dem4ply
|
|
@@ -62,6 +62,11 @@ Features
|
|
|
62
62
|
History
|
|
63
63
|
=======
|
|
64
64
|
|
|
65
|
+
0.3.0 ( 2026-03-21 )
|
|
66
|
+
--------------------
|
|
67
|
+
|
|
68
|
+
* actualizacion para marshmallow >= 4
|
|
69
|
+
|
|
65
70
|
0.2.0 ( 2025-09-20 )
|
|
66
71
|
--------------------
|
|
67
72
|
|
|
@@ -11,7 +11,6 @@ class Get( Response ):
|
|
|
11
11
|
def raise_when_no_ok( self ):
|
|
12
12
|
if not self.is_raise_when_no_ok or self.ok:
|
|
13
13
|
return
|
|
14
|
-
http_error_msg = ""
|
|
15
14
|
if self.status_code == status_code.HTTP_401_UNAUTHORIZED:
|
|
16
15
|
raise Error_bad_token( response=self, )
|
|
17
16
|
super().raise_when_no_ok()
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
from marshmallow import Schema, INCLUDE, fields
|
|
2
|
+
from marshmallow.experimental.context import Context
|
|
2
3
|
|
|
3
4
|
|
|
4
5
|
class Github_url( fields.Url ):
|
|
@@ -11,7 +12,7 @@ class Github_url( fields.Url ):
|
|
|
11
12
|
super()._serialize( value, attr, obj, **kw )
|
|
12
13
|
|
|
13
14
|
def _deserialize( self, value, attr, data, **kw ):
|
|
14
|
-
parent =
|
|
15
|
+
parent = Context.get()[ 'url' ]
|
|
15
16
|
value = super()._deserialize( value, attr, data, **kw )
|
|
16
17
|
return parent.build_from_url( value )
|
|
17
18
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chibi_github
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: libreria para usar github
|
|
5
5
|
Home-page: https://github.com/dem4ply/chibi_github
|
|
6
6
|
Author: dem4ply
|
|
@@ -62,6 +62,11 @@ Features
|
|
|
62
62
|
History
|
|
63
63
|
=======
|
|
64
64
|
|
|
65
|
+
0.3.0 ( 2026-03-21 )
|
|
66
|
+
--------------------
|
|
67
|
+
|
|
68
|
+
* actualizacion para marshmallow >= 4
|
|
69
|
+
|
|
65
70
|
0.2.0 ( 2025-09-20 )
|
|
66
71
|
--------------------
|
|
67
72
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|