autonomous-app 0.2.6__py3-none-any.whl → 0.2.8__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.
- autonomous/__init__.py +1 -1
- autonomous/db/table.py +1 -2
- {autonomous_app-0.2.6.dist-info → autonomous_app-0.2.8.dist-info}/METADATA +1 -1
- {autonomous_app-0.2.6.dist-info → autonomous_app-0.2.8.dist-info}/RECORD +7 -7
- {autonomous_app-0.2.6.dist-info → autonomous_app-0.2.8.dist-info}/LICENSE +0 -0
- {autonomous_app-0.2.6.dist-info → autonomous_app-0.2.8.dist-info}/WHEEL +0 -0
- {autonomous_app-0.2.6.dist-info → autonomous_app-0.2.8.dist-info}/top_level.txt +0 -0
autonomous/__init__.py
CHANGED
autonomous/db/table.py
CHANGED
|
@@ -6,6 +6,7 @@ _extended_summary_
|
|
|
6
6
|
:return: _description_
|
|
7
7
|
:rtype: _type_
|
|
8
8
|
"""
|
|
9
|
+
|
|
9
10
|
import json
|
|
10
11
|
import random
|
|
11
12
|
|
|
@@ -102,7 +103,6 @@ class Table:
|
|
|
102
103
|
|
|
103
104
|
def find(self, **search_terms):
|
|
104
105
|
search_terms = self._convert_to_dot_notation(search_terms)
|
|
105
|
-
log(search_terms)
|
|
106
106
|
result = self._db.find_one(search_terms)
|
|
107
107
|
if result:
|
|
108
108
|
result["_id"] = str(result["_id"])
|
|
@@ -113,7 +113,6 @@ class Table:
|
|
|
113
113
|
search_terms = self._convert_to_dot_notation(
|
|
114
114
|
search_terms, fuzzy_search=fuzzy_search
|
|
115
115
|
)
|
|
116
|
-
log(search_terms)
|
|
117
116
|
result = self._db.find(search_terms) or []
|
|
118
117
|
|
|
119
118
|
objs = []
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: autonomous-app
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.8
|
|
4
4
|
Summary: Containerized application framework built on Flask with additional libraries and tools for rapid development of web applications.
|
|
5
5
|
Author-email: Steven A Moore <samoore@binghamton.edu>
|
|
6
6
|
License: MIT License
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
autonomous/__init__.py,sha256=
|
|
1
|
+
autonomous/__init__.py,sha256=_ftSEpM5pcJoe3nk5Vcni5MfyRrW6zPbU-O_iNirqQ4,86
|
|
2
2
|
autonomous/cli.py,sha256=z4AaGeWNW_uBLFAHng0J_lfS9v3fXemK1PeT85u4Eo4,42
|
|
3
3
|
autonomous/logger.py,sha256=hDX3gvbcWiGPvA8pfarih3xHS4aHG_NuNkF8PQfq_pM,1844
|
|
4
4
|
autonomous/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -10,7 +10,7 @@ autonomous/auth/google.py,sha256=cHmqbyNEPTKipc3WkYcD1XPOyqcWEFW0Ks4qJYmGvPw,104
|
|
|
10
10
|
autonomous/auth/user.py,sha256=uR0cpPhXizcFM9-9JQbMNKtklOrAmCrRYZHXovZwtAw,2174
|
|
11
11
|
autonomous/db/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
12
12
|
autonomous/db/autodb.py,sha256=GifrahGJ2dAi8jQOiMIh0pgktcbuKt_1kAXIjKlKVZY,2376
|
|
13
|
-
autonomous/db/table.py,sha256=
|
|
13
|
+
autonomous/db/table.py,sha256=geBQ2WZB2Y7t7pVw4jS07hmqg7hOv1YXZelPJehzHnw,4582
|
|
14
14
|
autonomous/errors/__init__.py,sha256=OruWG9IkAF4LN-OAo5c2K9Dnds4oZFJJQHKaXbQaWnA,59
|
|
15
15
|
autonomous/errors/danglingreferenceerror.py,sha256=iHcE6mOgyXvTvc-EhMEzP_Zlo8FpBn0lMjF76V-zkDE,321
|
|
16
16
|
autonomous/model/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
@@ -29,8 +29,8 @@ autonomous/storage/version_control/GHVersionControl.py,sha256=VIhVRxe6gJgozFWyhy
|
|
|
29
29
|
autonomous/storage/version_control/__init__.py,sha256=tP0bAWYl1RwBRi62HsIidmgyqHuSlCUqwGuKUKKRugc,117
|
|
30
30
|
autonomous/tasks/__init__.py,sha256=pn7iZ14MhcHUdzcLkfkd4-45wgPP0tXahAz_cFgb_Tg,32
|
|
31
31
|
autonomous/tasks/autotask.py,sha256=_WQ8w1LyV2FVJ0Ct0FoF9q1W8ClXfS57-omnBb0LNWE,4910
|
|
32
|
-
autonomous_app-0.2.
|
|
33
|
-
autonomous_app-0.2.
|
|
34
|
-
autonomous_app-0.2.
|
|
35
|
-
autonomous_app-0.2.
|
|
36
|
-
autonomous_app-0.2.
|
|
32
|
+
autonomous_app-0.2.8.dist-info/LICENSE,sha256=-PHHSuDRkodHo3PEdMkDtoIdmLAOomMq6lsLaOetU8g,1076
|
|
33
|
+
autonomous_app-0.2.8.dist-info/METADATA,sha256=45XceCGEGtJKZRK5xtyeDkFzYsDChp0SItdaZrxlMts,4228
|
|
34
|
+
autonomous_app-0.2.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
35
|
+
autonomous_app-0.2.8.dist-info/top_level.txt,sha256=ZyxWWDdbvZekF3UFunxl4BQsVDb_FOW3eTn0vun_jb4,11
|
|
36
|
+
autonomous_app-0.2.8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|