asimov.py 24.0.0.dev0__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.
- asimov/__init__.py +11 -0
- asimov/sdk/__init__.py +15 -0
- asimov/sdk/lib.py +3 -0
- asimov/sdk/util.py +3 -0
- asimov.py-24.0.0.dev0.dist-info/METADATA +82 -0
- asimov.py-24.0.0.dev0.dist-info/RECORD +9 -0
- asimov.py-24.0.0.dev0.dist-info/UNLICENSE +24 -0
- asimov.py-24.0.0.dev0.dist-info/WHEEL +5 -0
- asimov.py-24.0.0.dev0.dist-info/top_level.txt +1 -0
asimov/__init__.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# This is free and unencumbered software released into the public domain.
|
|
2
|
+
|
|
3
|
+
"""The Asimov Software Development Kit (SDK) for Python."""
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
assert sys.version_info >= (3, 9), "The Asimov SDK for Python requires Python 3.9+"
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
'sdk',
|
|
11
|
+
]
|
asimov/sdk/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# This is free and unencumbered software released into the public domain.
|
|
2
|
+
|
|
3
|
+
"""The Asimov Software Development Kit (SDK) for Python."""
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
assert sys.version_info >= (3, 9), "The Asimov SDK for Python requires Python 3.9+"
|
|
8
|
+
|
|
9
|
+
from .lib import *
|
|
10
|
+
from .util import *
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'lib',
|
|
14
|
+
'util',
|
|
15
|
+
]
|
asimov/sdk/lib.py
ADDED
asimov/sdk/util.py
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: asimov.py
|
|
3
|
+
Version: 24.0.0.dev0
|
|
4
|
+
Summary: Asimov Software Development Kit (SDK) for Python
|
|
5
|
+
Home-page: https://sdk.asimov.so
|
|
6
|
+
Author: Asimov AI
|
|
7
|
+
Author-email: support@asimov.so
|
|
8
|
+
License: Public Domain
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/AsimovPlatform/asimov.py/issues
|
|
10
|
+
Project-URL: Changelog, https://github.com/AsimovPlatform/asimov.py/blob/master/CHANGES.md
|
|
11
|
+
Project-URL: Documentation, https://github.com/AsimovPlatform/asimov.py/blob/master/README.md
|
|
12
|
+
Project-URL: Source Code, https://github.com/AsimovPlatform/asimov.py
|
|
13
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
17
|
+
Classifier: License :: Public Domain
|
|
18
|
+
Classifier: Natural Language :: English
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
22
|
+
Requires-Python: ~=3.9
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
License-File: UNLICENSE
|
|
25
|
+
Requires-Dist: know.py >=0.0.2
|
|
26
|
+
Provides-Extra: test
|
|
27
|
+
Requires-Dist: pytest ; extra == 'test'
|
|
28
|
+
|
|
29
|
+
# Asimov Software Development Kit (SDK) for Python
|
|
30
|
+
|
|
31
|
+
[](https://unlicense.org)
|
|
32
|
+
[](https://pypi.org/project/asimov.py/)
|
|
33
|
+
[](https://pypi.org/project/asimov.py/)
|
|
34
|
+
|
|
35
|
+
🚧 _We are building in public. This is presently under heavy construction._
|
|
36
|
+
|
|
37
|
+
## 🛠️ Prerequisites
|
|
38
|
+
|
|
39
|
+
- [Python](https://python.org) 3.9+
|
|
40
|
+
(included in macOS 12.6+)
|
|
41
|
+
|
|
42
|
+
## ⬇️ Installation
|
|
43
|
+
|
|
44
|
+
### Installation via PyPI
|
|
45
|
+
|
|
46
|
+
```console
|
|
47
|
+
$ pip install asimov.py
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## 👉 Examples
|
|
51
|
+
|
|
52
|
+
### Importing the SDK
|
|
53
|
+
|
|
54
|
+
```python
|
|
55
|
+
from asimov import sdk
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Initializing the SDK
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
# TODO
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
### Examining SDK metadata
|
|
65
|
+
|
|
66
|
+
```python
|
|
67
|
+
# TODO
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## 👨💻 Development
|
|
71
|
+
|
|
72
|
+
```console
|
|
73
|
+
$ git clone https://github.com/AsimovPlatform/asimov.py.git
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
- - -
|
|
77
|
+
|
|
78
|
+
[](https://twitter.com/share?url=https://github.com/AsimovPlatform/asimov.py&text=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
79
|
+
[](https://reddit.com/submit?url=https://github.com/AsimovPlatform/asimov.py&title=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
80
|
+
[](https://news.ycombinator.com/submitlink?u=https://github.com/AsimovPlatform/asimov.py&t=Asimov%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
81
|
+
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/AsimovPlatform/asimov.py)
|
|
82
|
+
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/AsimovPlatform/asimov.py)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
asimov/__init__.py,sha256=8DF_ZimUJw3ZrvxaI-uSU1g6dyTZ5QWZPzLKbTVc4ts,258
|
|
2
|
+
asimov/sdk/__init__.py,sha256=8T3SIYvofbKAHsCRWaR_Qb8Moqn4uOgZruz0eI5BPgs,310
|
|
3
|
+
asimov/sdk/lib.py,sha256=WPJqhnlW4CsQ5hz6Ei_n18tTU3vyd4ifSipVh9_HSO0,135
|
|
4
|
+
asimov/sdk/util.py,sha256=WPJqhnlW4CsQ5hz6Ei_n18tTU3vyd4ifSipVh9_HSO0,135
|
|
5
|
+
asimov.py-24.0.0.dev0.dist-info/METADATA,sha256=WgidR_5M9MzUf53gw8zNF8XLtULgMyVmhx5y6yB-ywc,3151
|
|
6
|
+
asimov.py-24.0.0.dev0.dist-info/UNLICENSE,sha256=tQZYOMusRS38hVum5uAxSBrSxoQG9w0h6tkyE3RlPmw,1212
|
|
7
|
+
asimov.py-24.0.0.dev0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
8
|
+
asimov.py-24.0.0.dev0.dist-info/top_level.txt,sha256=_R0fwGHM71D6a2YHrKUPX0Z21P8tfW6qn96Xl0MIVHY,7
|
|
9
|
+
asimov.py-24.0.0.dev0.dist-info/RECORD,,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
|
2
|
+
|
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
4
|
+
distribute this software, either in source code form or as a compiled
|
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
|
6
|
+
means.
|
|
7
|
+
|
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
|
9
|
+
of this software dedicate any and all copyright interest in the
|
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
|
11
|
+
of the public at large and to the detriment of our heirs and
|
|
12
|
+
successors. We intend this dedication to be an overt act of
|
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
|
14
|
+
software under copyright law.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
23
|
+
|
|
24
|
+
For more information, please refer to <https://unlicense.org/>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
asimov
|