soia-client 1.0.1__py3-none-any.whl → 1.0.2__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.

Potentially problematic release.


This version of soia-client might be problematic. Click here for more details.

@@ -1,7 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: soia-client
3
- Version: 1.0.1
4
- Summary: Read the latest Real Python tutorials
3
+ Version: 1.0.2
5
4
  Author-email: Tyler Fibonacci <gepheum@gmail.com>
6
5
  License: MIT License
7
6
 
@@ -25,7 +24,7 @@ License: MIT License
25
24
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
25
  SOFTWARE.
27
26
 
28
- Project-URL: Homepage, https://github.com/realpython/reader
27
+ Project-URL: Homepage, https://github.com/gepheum/soia-python-client
29
28
  Classifier: License :: OSI Approved :: MIT License
30
29
  Classifier: Programming Language :: Python
31
30
  Classifier: Programming Language :: Python :: 3
@@ -1,8 +1,8 @@
1
- soialib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1
+ soialib/__init__.py,sha256=5sEAu3ATaiMVbXE_8yb6Ikd5-ilj21tQ8zoQ2Uh2pBM,178
2
2
  soialib/keyed_items.py,sha256=q7MCn82obf-0jh7FcAhuw4eh9-wtuHIpkEFcSfc8EaY,338
3
3
  soialib/module_initializer.py,sha256=Is0GI6vF5fSp_9b9lifJ2ND9s8CaACii43INhj6ienQ,3275
4
4
  soialib/never.py,sha256=bYU63XyNX4e2wOUXQHhHWGO-an4IFr9_ur1ut6GmGN0,47
5
- soialib/serializer.py,sha256=DP5b9JeDKGtONTMTs_Hk_AsLq0FocwzOyXslG4YvX0M,2622
5
+ soialib/serializer.py,sha256=quFXOYjj7sjfjQIVZPa0NPvKtO4LmYrRtNeFlZy_Aio,2599
6
6
  soialib/spec.py,sha256=D-sgw1yAuVA3fB7GA4yBSKcscYgoKCUB8NkjRPqVoOs,3517
7
7
  soialib/timestamp.py,sha256=6VNKAJs7EwxBm3tEEk1Cy1FhAD6lSNdlB3K2Sg6QHIA,4065
8
8
  soialib/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -15,8 +15,8 @@ soialib/impl/primitives.py,sha256=X_ywRmVZI_Q5tatb1Qil6Xvdyh1J4ElfI-LOCn671Zk,59
15
15
  soialib/impl/repr.py,sha256=z-_jGNKuY__DfwQKW40xzZFf_eG6wGMJvuY_2hJrETA,1441
16
16
  soialib/impl/structs.py,sha256=pXPn6SeyZH-FwQXbvUG_uoc5DZ8oZgDQ5v_jx8Uf5aY,23576
17
17
  soialib/impl/type_adapter.py,sha256=IP3jF3wPgwKhWd7LKMmbbv1qUTv1HBAyMdpVrIg0_S0,2063
18
- soia_client-1.0.1.dist-info/LICENSE,sha256=SaAftKkX6hfSOiPdENQPS70tifH3PDHgazq8eK2Pwfw,1064
19
- soia_client-1.0.1.dist-info/METADATA,sha256=GcxCb4mb4eeLGb3QrOWdtg4W_YLmyHw7yLem2KghDm0,1683
20
- soia_client-1.0.1.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
21
- soia_client-1.0.1.dist-info/top_level.txt,sha256=2vPmAo5G0SrCxYrNdJKJJVdpalYppgjO2mmz2PtsFUI,8
22
- soia_client-1.0.1.dist-info/RECORD,,
18
+ soia_client-1.0.2.dist-info/LICENSE,sha256=SaAftKkX6hfSOiPdENQPS70tifH3PDHgazq8eK2Pwfw,1064
19
+ soia_client-1.0.2.dist-info/METADATA,sha256=u0e4KsN9kI2u7sALv773M7j7FSRxy95_TZJU-Mnt2FY,1645
20
+ soia_client-1.0.2.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
21
+ soia_client-1.0.2.dist-info/top_level.txt,sha256=2vPmAo5G0SrCxYrNdJKJJVdpalYppgjO2mmz2PtsFUI,8
22
+ soia_client-1.0.2.dist-info/RECORD,,
soialib/__init__.py CHANGED
@@ -0,0 +1,5 @@
1
+ from soialib.keyed_items import KeyedItems
2
+ from soialib.serializer import Serializer
3
+ from soialib.timestamp import Timestamp
4
+
5
+ __all__ = ["KeyedItems", "Serializer", "Timestamp"]
soialib/serializer.py CHANGED
@@ -1,10 +1,9 @@
1
- import io
2
1
  import json as jsonlib
3
2
  from collections.abc import Callable
4
3
  from dataclasses import FrozenInstanceError
5
4
  from typing import Any, Generic, TypeVar, cast, final
6
5
 
7
- from soialib.impl.function_maker import BodyBuilder, Expr, LineSpan, make_function
6
+ from soialib.impl.function_maker import Expr, LineSpan, make_function
8
7
  from soialib.impl.type_adapter import TypeAdapter
9
8
  from soialib.never import Never
10
9