soia-client 1.0.0__tar.gz → 1.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.
Potentially problematic release.
This version of soia-client might be problematic. Click here for more details.
- soia_client-1.0.1/LICENSE +21 -0
- soia_client-1.0.1/PKG-INFO +34 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/pyproject.toml +1 -1
- soia_client-1.0.1/soia_client.egg-info/PKG-INFO +34 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soia_client.egg-info/SOURCES.txt +1 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/timestamp.py +4 -4
- soia_client-1.0.0/PKG-INFO +0 -11
- soia_client-1.0.0/soia_client.egg-info/PKG-INFO +0 -11
- {soia_client-1.0.0 → soia_client-1.0.1}/README +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/setup.cfg +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soia_client.egg-info/dependency_links.txt +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soia_client.egg-info/top_level.txt +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/__init__.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/__init__.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/arrays.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/encoding.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/enums.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/function_maker.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/optionals.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/primitives.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/repr.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/structs.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/impl/type_adapter.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/keyed_items.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/module_initializer.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/never.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/serializer.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/soialib/spec.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/tests/test_module_initializer.py +0 -0
- {soia_client-1.0.0 → soia_client-1.0.1}/tests/test_timestamp.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 gepheum
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: soia-client
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Read the latest Real Python tutorials
|
|
5
|
+
Author-email: Tyler Fibonacci <gepheum@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2024 gepheum
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/realpython/reader
|
|
29
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
30
|
+
Classifier: Programming Language :: Python
|
|
31
|
+
Classifier: Programming Language :: Python :: 3
|
|
32
|
+
Requires-Python: >=3.10
|
|
33
|
+
Description-Content-Type: text/markdown
|
|
34
|
+
License-File: LICENSE
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "soia-client"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.1"
|
|
8
8
|
description = "Read the latest Real Python tutorials"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [{ name = "Tyler Fibonacci", email = "gepheum@gmail.com" }]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: soia-client
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Read the latest Real Python tutorials
|
|
5
|
+
Author-email: Tyler Fibonacci <gepheum@gmail.com>
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2024 gepheum
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/realpython/reader
|
|
29
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
30
|
+
Classifier: Programming Language :: Python
|
|
31
|
+
Classifier: Programming Language :: Python :: 3
|
|
32
|
+
Requires-Python: >=3.10
|
|
33
|
+
Description-Content-Type: text/markdown
|
|
34
|
+
License-File: LICENSE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import dataclasses
|
|
2
2
|
import datetime
|
|
3
|
-
from typing import Any, Final, Union, final, overload
|
|
3
|
+
from typing import Any, Final, Union, cast, final, overload
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
@final
|
|
@@ -32,9 +32,9 @@ class Timestamp:
|
|
|
32
32
|
def now() -> "Timestamp":
|
|
33
33
|
return Timestamp.from_datetime(datetime.datetime.now(tz=datetime.timezone.utc))
|
|
34
34
|
|
|
35
|
-
EPOCH: Final["Timestamp"] = ...
|
|
36
|
-
MIN: Final["Timestamp"] = ...
|
|
37
|
-
MAX: Final["Timestamp"] = ...
|
|
35
|
+
EPOCH: Final["Timestamp"] = cast("Timestamp", ...)
|
|
36
|
+
MIN: Final["Timestamp"] = cast("Timestamp", ...)
|
|
37
|
+
MAX: Final["Timestamp"] = cast("Timestamp", ...)
|
|
38
38
|
|
|
39
39
|
@property
|
|
40
40
|
def unix_seconds(self) -> float:
|
soia_client-1.0.0/PKG-INFO
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: soia-client
|
|
3
|
-
Version: 1.0.0
|
|
4
|
-
Summary: Read the latest Real Python tutorials
|
|
5
|
-
Author-email: Tyler Fibonacci <gepheum@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/realpython/reader
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Programming Language :: Python
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Requires-Python: >=3.10
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: soia-client
|
|
3
|
-
Version: 1.0.0
|
|
4
|
-
Summary: Read the latest Real Python tutorials
|
|
5
|
-
Author-email: Tyler Fibonacci <gepheum@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/realpython/reader
|
|
7
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
-
Classifier: Programming Language :: Python
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Requires-Python: >=3.10
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
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
|