asimov.py 24.0.0.dev0__py3-none-any.whl → 26.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 +3 -5
- asimov/_version.py +34 -0
- asimov/py.typed +0 -0
- asimov_py-26.0.0.dev0.dist-info/METADATA +100 -0
- asimov_py-26.0.0.dev0.dist-info/RECORD +7 -0
- {asimov.py-24.0.0.dev0.dist-info → asimov_py-26.0.0.dev0.dist-info}/WHEEL +1 -2
- asimov/sdk/__init__.py +0 -15
- asimov/sdk/lib.py +0 -3
- asimov/sdk/util.py +0 -3
- asimov.py-24.0.0.dev0.dist-info/METADATA +0 -82
- asimov.py-24.0.0.dev0.dist-info/RECORD +0 -9
- asimov.py-24.0.0.dev0.dist-info/top_level.txt +0 -1
- {asimov.py-24.0.0.dev0.dist-info → asimov_py-26.0.0.dev0.dist-info/licenses}/UNLICENSE +0 -0
asimov/__init__.py
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
# This is free and unencumbered software released into the public domain.
|
|
2
2
|
|
|
3
|
-
"""
|
|
3
|
+
"""ASIMOV Software Development Kit (SDK) for Python"""
|
|
4
4
|
|
|
5
5
|
import sys
|
|
6
6
|
|
|
7
|
-
assert sys.version_info >= (3, 9), "
|
|
7
|
+
assert sys.version_info >= (3, 9), "ASIMOV.py requires Python 3.9+"
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
'sdk',
|
|
11
|
-
]
|
|
9
|
+
from ._version import __version__, __version_tuple__
|
asimov/_version.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = [
|
|
5
|
+
"__version__",
|
|
6
|
+
"__version_tuple__",
|
|
7
|
+
"version",
|
|
8
|
+
"version_tuple",
|
|
9
|
+
"__commit_id__",
|
|
10
|
+
"commit_id",
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
TYPE_CHECKING = False
|
|
14
|
+
if TYPE_CHECKING:
|
|
15
|
+
from typing import Tuple
|
|
16
|
+
from typing import Union
|
|
17
|
+
|
|
18
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
+
COMMIT_ID = Union[str, None]
|
|
20
|
+
else:
|
|
21
|
+
VERSION_TUPLE = object
|
|
22
|
+
COMMIT_ID = object
|
|
23
|
+
|
|
24
|
+
version: str
|
|
25
|
+
__version__: str
|
|
26
|
+
__version_tuple__: VERSION_TUPLE
|
|
27
|
+
version_tuple: VERSION_TUPLE
|
|
28
|
+
commit_id: COMMIT_ID
|
|
29
|
+
__commit_id__: COMMIT_ID
|
|
30
|
+
|
|
31
|
+
__version__ = version = '26.0.0.dev0'
|
|
32
|
+
__version_tuple__ = version_tuple = (26, 0, 0, 'dev0')
|
|
33
|
+
|
|
34
|
+
__commit_id__ = commit_id = None
|
asimov/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asimov.py
|
|
3
|
+
Version: 26.0.0.dev0
|
|
4
|
+
Summary: ASIMOV Software Development Kit (SDK) for Python
|
|
5
|
+
Project-URL: Homepage, https://asimov.sh
|
|
6
|
+
Project-URL: Repository, https://github.com/asimov-platform/asimov.py
|
|
7
|
+
Project-URL: Changelog, https://github.com/asimov-platform/asimov.py/blob/master/CHANGES.md
|
|
8
|
+
Project-URL: Releases, https://github.com/asimov-platform/asimov.py/releases
|
|
9
|
+
Project-URL: Issues, https://github.com/asimov-platform/asimov.py/issues
|
|
10
|
+
Project-URL: Documentation, https://github.com/asimov-platform/asimov.py/blob/master/README.md
|
|
11
|
+
Author-email: ASIMOV Systems <support@asimov.systems>
|
|
12
|
+
License-Expression: Unlicense
|
|
13
|
+
License-File: UNLICENSE
|
|
14
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Intended Audience :: Information Technology
|
|
18
|
+
Classifier: License :: Public Domain
|
|
19
|
+
Classifier: Natural Language :: English
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Requires-Python: >=3.9
|
|
24
|
+
Requires-Dist: pydantic>=2
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
# ASIMOV Software Development Kit (SDK) for Python
|
|
28
|
+
|
|
29
|
+
[](https://unlicense.org)
|
|
30
|
+
[](https://endoflife.date/python)
|
|
31
|
+
[](https://pypi.org/project/asimov.py/)
|
|
32
|
+
|
|
33
|
+
**[ASIMOV] is a polyglot development platform for
|
|
34
|
+
[trustworthy neurosymbolic machine intelligence].**
|
|
35
|
+
|
|
36
|
+
<br/>
|
|
37
|
+
|
|
38
|
+
<sub>
|
|
39
|
+
|
|
40
|
+
[[Features](#-features)] |
|
|
41
|
+
[[Prerequisites](#%EF%B8%8F-prerequisites)] |
|
|
42
|
+
[[Installation](#%EF%B8%8F-installation)] |
|
|
43
|
+
[[Examples](#-examples)] |
|
|
44
|
+
[[Reference](#-reference)] |
|
|
45
|
+
[[Development](#%E2%80%8D-development)]
|
|
46
|
+
|
|
47
|
+
</sub>
|
|
48
|
+
|
|
49
|
+
## ✨ Features
|
|
50
|
+
|
|
51
|
+
- Defines [flow-based] [program patterns] for refining data into knowledge.
|
|
52
|
+
- Implements a [module system] enabling an ecosystem of [modules].
|
|
53
|
+
- Enables dataflow systems through reusable components called blocks.
|
|
54
|
+
- Supports opting out of any feature using comprehensive feature flags.
|
|
55
|
+
- Adheres to the Rust API Guidelines in its [naming conventions].
|
|
56
|
+
- Cuts red tape: 100% free and unencumbered public domain software.
|
|
57
|
+
|
|
58
|
+
## 🛠️ Prerequisites
|
|
59
|
+
|
|
60
|
+
- [Python](https://python.org) 3.9+ (included in macOS 12.6+)
|
|
61
|
+
|
|
62
|
+
## ⬇️ Installation
|
|
63
|
+
|
|
64
|
+
### Installation via PyPI
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
pip install asimov.py
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## 👉 Examples
|
|
71
|
+
|
|
72
|
+
### Importing the SDK
|
|
73
|
+
|
|
74
|
+
```python
|
|
75
|
+
from asimov import *
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## 📚 Reference
|
|
79
|
+
|
|
80
|
+
## 👨💻 Development
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
git clone https://github.com/asimov-platform/asimov.py.git
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
[](https://x.com/intent/post?url=https://github.com/asimov-platform/asimov.py&text=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
89
|
+
[](https://reddit.com/submit?url=https://github.com/asimov-platform/asimov.py&title=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
90
|
+
[](https://news.ycombinator.com/submitlink?u=https://github.com/asimov-platform/asimov.py&t=ASIMOV%20Software%20Development%20Kit%20%28SDK%29%20for%20Python)
|
|
91
|
+
[](https://www.facebook.com/sharer/sharer.php?u=https://github.com/asimov-platform/asimov.py)
|
|
92
|
+
[](https://www.linkedin.com/sharing/share-offsite/?url=https://github.com/asimov-platform/asimov.py)
|
|
93
|
+
|
|
94
|
+
[ASIMOV]: https://asimov.sh
|
|
95
|
+
[ASIMOV.py]: https://github.com/asimov-platform/asimov.py
|
|
96
|
+
[flow-based]: https://github.com/artob/awesome-fbp
|
|
97
|
+
[modules]: https://github.com/asimov-modules
|
|
98
|
+
[module system]: https://asimov-specs.github.io
|
|
99
|
+
[program patterns]: https://asimov-specs.github.io/program-patterns/
|
|
100
|
+
[trustworthy neurosymbolic machine intelligence]: https://asimov.blog/introducing-asimov/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
asimov/__init__.py,sha256=14j5n8YVhEIwX5_-jxt4Nv7Nk3BeWei0VhZkWg8c2Vo,265
|
|
2
|
+
asimov/_version.py,sha256=eXoTlq8v3EGoK-X5yakS72qcNLrN6KBhHdrAnrJA5Ng,719
|
|
3
|
+
asimov/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
asimov_py-26.0.0.dev0.dist-info/METADATA,sha256=NYpqFv3HbNsTvjZ0OBD-tqYeRDYk58-ZifHvyKe3tSQ,4137
|
|
5
|
+
asimov_py-26.0.0.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
6
|
+
asimov_py-26.0.0.dev0.dist-info/licenses/UNLICENSE,sha256=tQZYOMusRS38hVum5uAxSBrSxoQG9w0h6tkyE3RlPmw,1212
|
|
7
|
+
asimov_py-26.0.0.dev0.dist-info/RECORD,,
|
asimov/sdk/__init__.py
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
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
DELETED
asimov/sdk/util.py
DELETED
|
@@ -1,82 +0,0 @@
|
|
|
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)
|
|
@@ -1,9 +0,0 @@
|
|
|
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,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
asimov
|
|
File without changes
|