Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
s1zlibs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Oleksandr Barabash
s1zlibs
Commits
23ef1197
Commit
23ef1197
authored
Jan 04, 2019
by
Oleksandr Barabash
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rebuilt
parent
5725bf27
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
4 deletions
+14
-4
simple_serializer.py
build/lib/s1zlibs/jsoner/serializers/simple_serializer.py
+6
-1
s1zlibs-1.0.5-py3-none-any.whl
dist/s1zlibs-1.0.5-py3-none-any.whl
+0
-0
s1zlibs-1.0.5.tar.gz
dist/s1zlibs-1.0.5.tar.gz
+0
-0
PKG-INFO
s1zlibs.egg-info/PKG-INFO
+1
-1
simple_serializer.py
s1zlibs/jsoner/serializers/simple_serializer.py
+6
-1
setup.py
setup.py
+1
-1
No files found.
build/lib/s1zlibs/jsoner/serializers/simple_serializer.py
View file @
23ef1197
from
__future__
import
absolute_import
from
__future__
import
absolute_import
from
...utils.log
import
Log
from
...utils.log
import
Log
from
.base_serializer
import
BaseSerializer
from
.base_serializer
import
BaseSerializer
from
sys
import
version_info
TAG
=
"SimpleSerializer"
TAG
=
"SimpleSerializer"
if
version_info
[
0
]
==
3
:
unicode
=
str
class
SimpleSerializer
(
BaseSerializer
):
class
SimpleSerializer
(
BaseSerializer
):
value_is_list
=
None
value_is_list
=
None
value_type
=
None
value_type
=
None
handle_types
=
(
str
,
bytes
,
int
,
float
,
bool
)
handle_types
=
(
unicode
,
bytes
,
int
,
float
,
bool
)
def
__init__
(
self
,
value_type
):
def
__init__
(
self
,
value_type
):
self
.
value_is_list
,
self
.
value_type
=
self
.
get_value_type
(
value_type
)
self
.
value_is_list
,
self
.
value_type
=
self
.
get_value_type
(
value_type
)
...
...
dist/s1zlibs-1.0.5-py3-none-any.whl
0 → 100644
View file @
23ef1197
File added
dist/s1zlibs-1.0.5.tar.gz
0 → 100644
View file @
23ef1197
File added
s1zlibs.egg-info/PKG-INFO
View file @
23ef1197
Metadata-Version: 2.1
Metadata-Version: 2.1
Name: s1zlibs
Name: s1zlibs
Version: 1.0.
3
Version: 1.0.
5
Summary: s1zlibs
Summary: s1zlibs
Home-page: https://git.s1z.info/skal/s1zlibs
Home-page: https://git.s1z.info/skal/s1zlibs
Author: Barabash Oleksandr
Author: Barabash Oleksandr
...
...
s1zlibs/jsoner/serializers/simple_serializer.py
View file @
23ef1197
from
__future__
import
absolute_import
from
__future__
import
absolute_import
from
...utils.log
import
Log
from
...utils.log
import
Log
from
.base_serializer
import
BaseSerializer
from
.base_serializer
import
BaseSerializer
from
sys
import
version_info
TAG
=
"SimpleSerializer"
TAG
=
"SimpleSerializer"
if
version_info
[
0
]
==
3
:
unicode
=
str
class
SimpleSerializer
(
BaseSerializer
):
class
SimpleSerializer
(
BaseSerializer
):
value_is_list
=
None
value_is_list
=
None
value_type
=
None
value_type
=
None
handle_types
=
(
str
,
bytes
,
int
,
float
,
bool
)
handle_types
=
(
unicode
,
bytes
,
int
,
float
,
bool
)
def
__init__
(
self
,
value_type
):
def
__init__
(
self
,
value_type
):
self
.
value_is_list
,
self
.
value_type
=
self
.
get_value_type
(
value_type
)
self
.
value_is_list
,
self
.
value_type
=
self
.
get_value_type
(
value_type
)
...
...
setup.py
View file @
23ef1197
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
setuptools
.
setup
(
name
=
"s1zlibs"
,
name
=
"s1zlibs"
,
version
=
"1.0.
4
"
,
version
=
"1.0.
5
"
,
author
=
"Barabash Oleksandr"
,
author
=
"Barabash Oleksandr"
,
author_email
=
"skaltmn@gmail.com"
,
author_email
=
"skaltmn@gmail.com"
,
description
=
"s1zlibs"
,
description
=
"s1zlibs"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment