outerbounds 0.3.183rc0__py3-none-any.whl → 0.3.184__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.
- outerbounds/__init__.py +1 -3
- outerbounds/command_groups/apps_cli.py +6 -2
- {outerbounds-0.3.183rc0.dist-info → outerbounds-0.3.184.dist-info}/METADATA +3 -3
- {outerbounds-0.3.183rc0.dist-info → outerbounds-0.3.184.dist-info}/RECORD +6 -28
- outerbounds-0.3.184.dist-info/entry_points.txt +3 -0
- outerbounds/_vendor/spinner/__init__.py +0 -4
- outerbounds/_vendor/spinner/spinners.py +0 -478
- outerbounds/_vendor/spinner.LICENSE +0 -21
- outerbounds/apps/__init__.py +0 -0
- outerbounds/apps/_state_machine.py +0 -467
- outerbounds/apps/app_cli.py +0 -1514
- outerbounds/apps/app_config.py +0 -293
- outerbounds/apps/artifacts.py +0 -0
- outerbounds/apps/capsule.py +0 -839
- outerbounds/apps/cli_to_config.py +0 -99
- outerbounds/apps/click_importer.py +0 -24
- outerbounds/apps/code_package/__init__.py +0 -3
- outerbounds/apps/code_package/code_packager.py +0 -610
- outerbounds/apps/code_package/examples.py +0 -125
- outerbounds/apps/config_schema.yaml +0 -264
- outerbounds/apps/dependencies.py +0 -115
- outerbounds/apps/deployer.py +0 -0
- outerbounds/apps/experimental/__init__.py +0 -110
- outerbounds/apps/perimeters.py +0 -45
- outerbounds/apps/secrets.py +0 -164
- outerbounds/apps/utils.py +0 -233
- outerbounds/apps/validations.py +0 -22
- outerbounds-0.3.183rc0.dist-info/entry_points.txt +0 -3
- {outerbounds-0.3.183rc0.dist-info → outerbounds-0.3.184.dist-info}/WHEEL +0 -0
outerbounds/__init__.py
CHANGED
@@ -8,7 +8,6 @@ import shutil
|
|
8
8
|
import subprocess
|
9
9
|
|
10
10
|
from ..utils import metaflowconfig
|
11
|
-
from ..apps.app_cli import app
|
12
11
|
|
13
12
|
APP_READY_POLL_TIMEOUT_SECONDS = 300
|
14
13
|
# Even after our backend validates that the app routes are ready, it takes a few seconds for
|
@@ -21,6 +20,11 @@ def cli(**kwargs):
|
|
21
20
|
pass
|
22
21
|
|
23
22
|
|
23
|
+
@click.group(help="Manage apps")
|
24
|
+
def app(**kwargs):
|
25
|
+
pass
|
26
|
+
|
27
|
+
|
24
28
|
@app.command(help="Start an app using a port and a name")
|
25
29
|
@click.option(
|
26
30
|
"-d",
|
@@ -410,7 +414,7 @@ def kill_process(config_dir=None, profile=None, port=-1, name=""):
|
|
410
414
|
default=os.environ.get("METAFLOW_PROFILE", ""),
|
411
415
|
help="The named metaflow profile in which your workstation exists",
|
412
416
|
)
|
413
|
-
def
|
417
|
+
def list(config_dir=None, profile=None):
|
414
418
|
if "WORKSTATION_ID" not in os.environ:
|
415
419
|
click.secho(
|
416
420
|
"All outerbounds app commands can only be run from a workstation.",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: outerbounds
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.184
|
4
4
|
Summary: More Data Science, Less Administration
|
5
5
|
License: Proprietary
|
6
6
|
Keywords: data science,machine learning,MLOps
|
@@ -29,8 +29,8 @@ Requires-Dist: google-cloud-secret-manager (>=2.20.0,<3.0.0) ; extra == "gcp"
|
|
29
29
|
Requires-Dist: google-cloud-storage (>=2.14.0,<3.0.0) ; extra == "gcp"
|
30
30
|
Requires-Dist: metaflow-checkpoint (==0.2.1)
|
31
31
|
Requires-Dist: ob-metaflow (==2.15.18.1)
|
32
|
-
Requires-Dist: ob-metaflow-extensions (==1.1.
|
33
|
-
Requires-Dist: ob-metaflow-stubs (==6.0.3.
|
32
|
+
Requires-Dist: ob-metaflow-extensions (==1.1.172)
|
33
|
+
Requires-Dist: ob-metaflow-stubs (==6.0.3.184)
|
34
34
|
Requires-Dist: opentelemetry-distro (>=0.41b0) ; extra == "otel"
|
35
35
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.20.0) ; extra == "otel"
|
36
36
|
Requires-Dist: opentelemetry-instrumentation-requests (>=0.41b0) ; extra == "otel"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
outerbounds/__init__.py,sha256=
|
1
|
+
outerbounds/__init__.py,sha256=GPdaubvAYF8pOFWJ3b-sPMKCpyfpteWVMZWkmaYhxRw,32
|
2
2
|
outerbounds/_vendor/PyYAML.LICENSE,sha256=jTko-dxEkP1jVwfLiOsmvXZBAqcoKVQwfT5RZ6V36KQ,1101
|
3
3
|
outerbounds/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
outerbounds/_vendor/_yaml/__init__.py,sha256=nD985-g4Mrx97PhtSzI2L53o8sCHUJ4ZoBWcUd7o0PQ,1449
|
@@ -20,9 +20,6 @@ outerbounds/_vendor/click/testing.py,sha256=ptpMYgRY7dVfE3UDgkgwayu9ePw98sQI3D7z
|
|
20
20
|
outerbounds/_vendor/click/types.py,sha256=u8LK2CRcVw3jWDutzP_wgFV478TXhsjL8gYSFPjGKkE,35865
|
21
21
|
outerbounds/_vendor/click/utils.py,sha256=33D6E7poH_nrKB-xr-UyDEXnxOcCiQqxuRLtrqeVv6o,18682
|
22
22
|
outerbounds/_vendor/click.LICENSE,sha256=morRBqOU6FO_4h9C9OctWSgZoigF2ZG18ydQKSkrZY0,1475
|
23
|
-
outerbounds/_vendor/spinner/__init__.py,sha256=gTm0NdQGTRxmghye1CYkhRtodji0MezsqAWs9OrLLRc,102
|
24
|
-
outerbounds/_vendor/spinner/spinners.py,sha256=0Hl1dskTzfibHPM5dfHV3no1maFduOCJ48r8mr3tgr0,15786
|
25
|
-
outerbounds/_vendor/spinner.LICENSE,sha256=R2t7cIDZ6-VroHO5M_FWET8adqmdI-PGv0AnhyvCo4A,1069
|
26
23
|
outerbounds/_vendor/vendor_any.txt,sha256=9vi_h2zSBIx0sFM9i69xNEwe-HyeX0_sdtMjImmvgXo,27
|
27
24
|
outerbounds/_vendor/yaml/__init__.py,sha256=lPcXUknB0EUNfCL8MJOgq26y70nOQR_Eajqzycmtnhg,12569
|
28
25
|
outerbounds/_vendor/yaml/_yaml.cpython-311-darwin.so,sha256=YiF55JiadfOvw_mUH-lONNnsiMHj6C6o1SBfTCvvW54,362008
|
@@ -42,28 +39,9 @@ outerbounds/_vendor/yaml/resolver.py,sha256=dPhU1d7G1JCMktPFvNhyqwj2oNvx1yf_Jfa3
|
|
42
39
|
outerbounds/_vendor/yaml/scanner.py,sha256=ZcI8IngR56PaQ0m27WU2vxCqmDCuRjz-hr7pirbMPuw,52982
|
43
40
|
outerbounds/_vendor/yaml/serializer.py,sha256=8wFZRy9SsQSktF_f9OOroroqsh4qVUe53ry07P9UgCc,4368
|
44
41
|
outerbounds/_vendor/yaml/tokens.py,sha256=JBSu38wihGr4l73JwbfMA7Ks1-X84g8-NskTz7KwPmA,2578
|
45
|
-
outerbounds/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
46
|
-
outerbounds/apps/_state_machine.py,sha256=PaegyxSxNZxyLTxU9_kekd3MPM9sW76RZPkibeMTMfY,18314
|
47
|
-
outerbounds/apps/app_cli.py,sha256=n_NABDjdgY4ApgNvdQMmpJfPGzCwJxr_G0w6-5LZ85I,51940
|
48
|
-
outerbounds/apps/app_config.py,sha256=UHVK8JLIuW-OcGg5WxDm4QHeImPGtohD4KpJryZntC4,11307
|
49
|
-
outerbounds/apps/artifacts.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
-
outerbounds/apps/capsule.py,sha256=NC9ajD06y6U-COi-8Qw6k_N1ltbQAio2O_Xs2RTrAVA,32857
|
51
|
-
outerbounds/apps/cli_to_config.py,sha256=Thc5jXRxoU6Pr8kAVVOX-5Es5ha6y6Vh_GBzL__oI7Q,3299
|
52
|
-
outerbounds/apps/click_importer.py,sha256=nnkPOR6TKrtIpc3a5Fna1zVJoQqDZvUXlNA9CdiNKFc,995
|
53
|
-
outerbounds/apps/code_package/__init__.py,sha256=8McF7pgx8ghvjRnazp2Qktlxi9yYwNiwESSQrk-2oW8,68
|
54
|
-
outerbounds/apps/code_package/code_packager.py,sha256=RWvM5BKjgLhu7icsO_n5SSYC57dwyST0dWpoWF88ovU,22881
|
55
|
-
outerbounds/apps/code_package/examples.py,sha256=aF8qKIJxCVv_ugcShQjqUsXKKKMsm1oMkQIl8w3QKuw,4016
|
56
|
-
outerbounds/apps/config_schema.yaml,sha256=j_mysTAPkIMSocItTg3aduMDfBs2teIhAErvpF0Elus,8826
|
57
|
-
outerbounds/apps/dependencies.py,sha256=03pZY-JRN-dYN-iyZ73zoEIEKmrOvbY4qld7RlRXYuw,3976
|
58
|
-
outerbounds/apps/deployer.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
59
|
-
outerbounds/apps/experimental/__init__.py,sha256=RUZBAyqFnX3pRQxTjNmS1-qpgQcc9xQGQD2yJh4MA_M,3349
|
60
|
-
outerbounds/apps/perimeters.py,sha256=1J1_-5legFPskv3HTRwQMpzTytE3TO8KRT2IvVOrWcQ,1584
|
61
|
-
outerbounds/apps/secrets.py,sha256=aWzcAayQEJghQgFP_qp9w6jyvan_hoL4_ceqZ0ZjLd4,6126
|
62
|
-
outerbounds/apps/utils.py,sha256=C-4GLU5GHwwWHbW962Qac-wecvtdiBXezq0c8i9aJvs,7908
|
63
|
-
outerbounds/apps/validations.py,sha256=kR2eXckx0XJ4kUOOLkMRepbTh0INtL1Z8aV4-fZpfc8,678
|
64
42
|
outerbounds/cli_main.py,sha256=e9UMnPysmc7gbrimq2I4KfltggyU7pw59Cn9aEguVcU,74
|
65
43
|
outerbounds/command_groups/__init__.py,sha256=QPWtj5wDRTINDxVUL7XPqG3HoxHNvYOg08EnuSZB2Hc,21
|
66
|
-
outerbounds/command_groups/apps_cli.py,sha256=
|
44
|
+
outerbounds/command_groups/apps_cli.py,sha256=v9OlQ1b4BGB-cBZiHB6W5gDocDoMmrQ7zdK11QiJ-B8,20847
|
67
45
|
outerbounds/command_groups/cli.py,sha256=FTeeDrvyBb-qcs2xklTiCyVTN5I0tBPyBReqDIE4oWU,530
|
68
46
|
outerbounds/command_groups/fast_bakery_cli.py,sha256=5kja7v6C651XAY6dsP_IkBPJQgfU4hA4S9yTOiVPhW0,6213
|
69
47
|
outerbounds/command_groups/kubernetes_cli.py,sha256=2bxPKUp5g_gdwVo4lT-IeWvHxz6Jmj1KxG70nXNgX_M,14758
|
@@ -78,7 +56,7 @@ outerbounds/utils/metaflowconfig.py,sha256=l2vJbgPkLISU-XPGZFaC8ZKmYFyJemlD6bwB-
|
|
78
56
|
outerbounds/utils/schema.py,sha256=lMUr9kNgn9wy-sO_t_Tlxmbt63yLeN4b0xQXbDUDj4A,2331
|
79
57
|
outerbounds/utils/utils.py,sha256=4Z8cszNob_8kDYCLNTrP-wWads_S_MdL3Uj3ju4mEsk,501
|
80
58
|
outerbounds/vendor.py,sha256=gRLRJNXtZBeUpPEog0LOeIsl6GosaFFbCxUvR4bW6IQ,5093
|
81
|
-
outerbounds-0.3.
|
82
|
-
outerbounds-0.3.
|
83
|
-
outerbounds-0.3.
|
84
|
-
outerbounds-0.3.
|
59
|
+
outerbounds-0.3.184.dist-info/METADATA,sha256=8qj7TgDNDmGzPkphkxGevdwZqX3lMQuKqTVHVOrCYsg,1837
|
60
|
+
outerbounds-0.3.184.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
61
|
+
outerbounds-0.3.184.dist-info/entry_points.txt,sha256=7ye0281PKlvqxu15rjw60zKg2pMsXI49_A8BmGqIqBw,47
|
62
|
+
outerbounds-0.3.184.dist-info/RECORD,,
|
@@ -1,478 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
"""
|
3
|
-
Python wrapper for beautiful terminal spinner library.
|
4
|
-
|
5
|
-
Spinners are from:
|
6
|
-
* cli-spinners:
|
7
|
-
MIT License
|
8
|
-
|
9
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
10
|
-
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
13
|
-
in the Software without restriction, including without limitation the rights to
|
14
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
15
|
-
the Software, and to permit persons to whom the Software is furnished to do so,
|
16
|
-
subject to the following conditions:
|
17
|
-
|
18
|
-
The above copyright notice and this permission notice shall be included
|
19
|
-
in all copies or substantial portions of the Software.
|
20
|
-
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
22
|
-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
23
|
-
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
24
|
-
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
25
|
-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
26
|
-
IN THE SOFTWARE.
|
27
|
-
"""
|
28
|
-
from __future__ import unicode_literals
|
29
|
-
|
30
|
-
from enum import Enum
|
31
|
-
|
32
|
-
Spinners = Enum(
|
33
|
-
"Spinners",
|
34
|
-
{
|
35
|
-
"dots": {
|
36
|
-
"interval": 80,
|
37
|
-
"frames": ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"],
|
38
|
-
},
|
39
|
-
"dots2": {"interval": 80, "frames": ["⣾", "⣽", "⣻", "⢿", "⡿", "⣟", "⣯", "⣷"]},
|
40
|
-
"dots3": {
|
41
|
-
"interval": 80,
|
42
|
-
"frames": ["⠋", "⠙", "⠚", "⠞", "⠖", "⠦", "⠴", "⠲", "⠳", "⠓"],
|
43
|
-
},
|
44
|
-
"dots4": {
|
45
|
-
"interval": 80,
|
46
|
-
"frames": [
|
47
|
-
"⠄",
|
48
|
-
"⠆",
|
49
|
-
"⠇",
|
50
|
-
"⠋",
|
51
|
-
"⠙",
|
52
|
-
"⠸",
|
53
|
-
"⠰",
|
54
|
-
"⠠",
|
55
|
-
"⠰",
|
56
|
-
"⠸",
|
57
|
-
"⠙",
|
58
|
-
"⠋",
|
59
|
-
"⠇",
|
60
|
-
"⠆",
|
61
|
-
],
|
62
|
-
},
|
63
|
-
"dots5": {
|
64
|
-
"interval": 80,
|
65
|
-
"frames": [
|
66
|
-
"⠋",
|
67
|
-
"⠙",
|
68
|
-
"⠚",
|
69
|
-
"⠒",
|
70
|
-
"⠂",
|
71
|
-
"⠂",
|
72
|
-
"⠒",
|
73
|
-
"⠲",
|
74
|
-
"⠴",
|
75
|
-
"⠦",
|
76
|
-
"⠖",
|
77
|
-
"⠒",
|
78
|
-
"⠐",
|
79
|
-
"⠐",
|
80
|
-
"⠒",
|
81
|
-
"⠓",
|
82
|
-
"⠋",
|
83
|
-
],
|
84
|
-
},
|
85
|
-
"dots6": {
|
86
|
-
"interval": 80,
|
87
|
-
"frames": [
|
88
|
-
"⠁",
|
89
|
-
"⠉",
|
90
|
-
"⠙",
|
91
|
-
"⠚",
|
92
|
-
"⠒",
|
93
|
-
"⠂",
|
94
|
-
"⠂",
|
95
|
-
"⠒",
|
96
|
-
"⠲",
|
97
|
-
"⠴",
|
98
|
-
"⠤",
|
99
|
-
"⠄",
|
100
|
-
"⠄",
|
101
|
-
"⠤",
|
102
|
-
"⠴",
|
103
|
-
"⠲",
|
104
|
-
"⠒",
|
105
|
-
"⠂",
|
106
|
-
"⠂",
|
107
|
-
"⠒",
|
108
|
-
"⠚",
|
109
|
-
"⠙",
|
110
|
-
"⠉",
|
111
|
-
"⠁",
|
112
|
-
],
|
113
|
-
},
|
114
|
-
"dots7": {
|
115
|
-
"interval": 80,
|
116
|
-
"frames": [
|
117
|
-
"⠈",
|
118
|
-
"⠉",
|
119
|
-
"⠋",
|
120
|
-
"⠓",
|
121
|
-
"⠒",
|
122
|
-
"⠐",
|
123
|
-
"⠐",
|
124
|
-
"⠒",
|
125
|
-
"⠖",
|
126
|
-
"⠦",
|
127
|
-
"⠤",
|
128
|
-
"⠠",
|
129
|
-
"⠠",
|
130
|
-
"⠤",
|
131
|
-
"⠦",
|
132
|
-
"⠖",
|
133
|
-
"⠒",
|
134
|
-
"⠐",
|
135
|
-
"⠐",
|
136
|
-
"⠒",
|
137
|
-
"⠓",
|
138
|
-
"⠋",
|
139
|
-
"⠉",
|
140
|
-
"⠈",
|
141
|
-
],
|
142
|
-
},
|
143
|
-
"dots8": {
|
144
|
-
"interval": 80,
|
145
|
-
"frames": [
|
146
|
-
"⠁",
|
147
|
-
"⠁",
|
148
|
-
"⠉",
|
149
|
-
"⠙",
|
150
|
-
"⠚",
|
151
|
-
"⠒",
|
152
|
-
"⠂",
|
153
|
-
"⠂",
|
154
|
-
"⠒",
|
155
|
-
"⠲",
|
156
|
-
"⠴",
|
157
|
-
"⠤",
|
158
|
-
"⠄",
|
159
|
-
"⠄",
|
160
|
-
"⠤",
|
161
|
-
"⠠",
|
162
|
-
"⠠",
|
163
|
-
"⠤",
|
164
|
-
"⠦",
|
165
|
-
"⠖",
|
166
|
-
"⠒",
|
167
|
-
"⠐",
|
168
|
-
"⠐",
|
169
|
-
"⠒",
|
170
|
-
"⠓",
|
171
|
-
"⠋",
|
172
|
-
"⠉",
|
173
|
-
"⠈",
|
174
|
-
"⠈",
|
175
|
-
],
|
176
|
-
},
|
177
|
-
"dots9": {"interval": 80, "frames": ["⢹", "⢺", "⢼", "⣸", "⣇", "⡧", "⡗", "⡏"]},
|
178
|
-
"dots10": {"interval": 80, "frames": ["⢄", "⢂", "⢁", "⡁", "⡈", "⡐", "⡠"]},
|
179
|
-
"dots11": {"interval": 100, "frames": ["⠁", "⠂", "⠄", "⡀", "⢀", "⠠", "⠐", "⠈"]},
|
180
|
-
"dots12": {
|
181
|
-
"interval": 80,
|
182
|
-
"frames": [
|
183
|
-
"⢀⠀",
|
184
|
-
"⡀⠀",
|
185
|
-
"⠄⠀",
|
186
|
-
"⢂⠀",
|
187
|
-
"⡂⠀",
|
188
|
-
"⠅⠀",
|
189
|
-
"⢃⠀",
|
190
|
-
"⡃⠀",
|
191
|
-
"⠍⠀",
|
192
|
-
"⢋⠀",
|
193
|
-
"⡋⠀",
|
194
|
-
"⠍⠁",
|
195
|
-
"⢋⠁",
|
196
|
-
"⡋⠁",
|
197
|
-
"⠍⠉",
|
198
|
-
"⠋⠉",
|
199
|
-
"⠋⠉",
|
200
|
-
"⠉⠙",
|
201
|
-
"⠉⠙",
|
202
|
-
"⠉⠩",
|
203
|
-
"⠈⢙",
|
204
|
-
"⠈⡙",
|
205
|
-
"⢈⠩",
|
206
|
-
"⡀⢙",
|
207
|
-
"⠄⡙",
|
208
|
-
"⢂⠩",
|
209
|
-
"⡂⢘",
|
210
|
-
"⠅⡘",
|
211
|
-
"⢃⠨",
|
212
|
-
"⡃⢐",
|
213
|
-
"⠍⡐",
|
214
|
-
"⢋⠠",
|
215
|
-
"⡋⢀",
|
216
|
-
"⠍⡁",
|
217
|
-
"⢋⠁",
|
218
|
-
"⡋⠁",
|
219
|
-
"⠍⠉",
|
220
|
-
"⠋⠉",
|
221
|
-
"⠋⠉",
|
222
|
-
"⠉⠙",
|
223
|
-
"⠉⠙",
|
224
|
-
"⠉⠩",
|
225
|
-
"⠈⢙",
|
226
|
-
"⠈⡙",
|
227
|
-
"⠈⠩",
|
228
|
-
"⠀⢙",
|
229
|
-
"⠀⡙",
|
230
|
-
"⠀⠩",
|
231
|
-
"⠀⢘",
|
232
|
-
"⠀⡘",
|
233
|
-
"⠀⠨",
|
234
|
-
"⠀⢐",
|
235
|
-
"⠀⡐",
|
236
|
-
"⠀⠠",
|
237
|
-
"⠀⢀",
|
238
|
-
"⠀⡀",
|
239
|
-
],
|
240
|
-
},
|
241
|
-
"line": {"interval": 130, "frames": ["-", "\\", "|", "/"]},
|
242
|
-
"line2": {"interval": 100, "frames": ["⠂", "-", "–", "—", "–", "-"]},
|
243
|
-
"pipe": {"interval": 100, "frames": ["┤", "┘", "┴", "└", "├", "┌", "┬", "┐"]},
|
244
|
-
"simpleDots": {"interval": 400, "frames": [". ", ".. ", "...", " "]},
|
245
|
-
"simpleDotsScrolling": {
|
246
|
-
"interval": 200,
|
247
|
-
"frames": [". ", ".. ", "...", " ..", " .", " "],
|
248
|
-
},
|
249
|
-
"star": {"interval": 70, "frames": ["✶", "✸", "✹", "✺", "✹", "✷"]},
|
250
|
-
"star2": {"interval": 80, "frames": ["+", "x", "*"]},
|
251
|
-
"flip": {
|
252
|
-
"interval": 70,
|
253
|
-
"frames": ["_", "_", "_", "-", "`", "`", "'", "´", "-", "_", "_", "_"],
|
254
|
-
},
|
255
|
-
"hamburger": {"interval": 100, "frames": ["☱", "☲", "☴"]},
|
256
|
-
"growVertical": {
|
257
|
-
"interval": 120,
|
258
|
-
"frames": ["▁", "▃", "▄", "▅", "▆", "▇", "▆", "▅", "▄", "▃"],
|
259
|
-
},
|
260
|
-
"growHorizontal": {
|
261
|
-
"interval": 120,
|
262
|
-
"frames": ["▏", "▎", "▍", "▌", "▋", "▊", "▉", "▊", "▋", "▌", "▍", "▎"],
|
263
|
-
},
|
264
|
-
"balloon": {"interval": 140, "frames": [" ", ".", "o", "O", "@", "*", " "]},
|
265
|
-
"balloon2": {"interval": 120, "frames": [".", "o", "O", "°", "O", "o", "."]},
|
266
|
-
"noise": {"interval": 100, "frames": ["▓", "▒", "░"]},
|
267
|
-
"bounce": {"interval": 120, "frames": ["⠁", "⠂", "⠄", "⠂"]},
|
268
|
-
"boxBounce": {"interval": 120, "frames": ["▖", "▘", "▝", "▗"]},
|
269
|
-
"boxBounce2": {"interval": 100, "frames": ["▌", "▀", "▐", "▄"]},
|
270
|
-
"triangle": {"interval": 50, "frames": ["◢", "◣", "◤", "◥"]},
|
271
|
-
"arc": {"interval": 100, "frames": ["◜", "◠", "◝", "◞", "◡", "◟"]},
|
272
|
-
"circle": {"interval": 120, "frames": ["◡", "⊙", "◠"]},
|
273
|
-
"squareCorners": {"interval": 180, "frames": ["◰", "◳", "◲", "◱"]},
|
274
|
-
"circleQuarters": {"interval": 120, "frames": ["◴", "◷", "◶", "◵"]},
|
275
|
-
"circleHalves": {"interval": 50, "frames": ["◐", "◓", "◑", "◒"]},
|
276
|
-
"squish": {"interval": 100, "frames": ["╫", "╪"]},
|
277
|
-
"toggle": {"interval": 250, "frames": ["⊶", "⊷"]},
|
278
|
-
"toggle2": {"interval": 80, "frames": ["▫", "▪"]},
|
279
|
-
"toggle3": {"interval": 120, "frames": ["□", "■"]},
|
280
|
-
"toggle4": {"interval": 100, "frames": ["■", "□", "▪", "▫"]},
|
281
|
-
"toggle5": {"interval": 100, "frames": ["▮", "▯"]},
|
282
|
-
"toggle6": {"interval": 300, "frames": ["ဝ", "၀"]},
|
283
|
-
"toggle7": {"interval": 80, "frames": ["⦾", "⦿"]},
|
284
|
-
"toggle8": {"interval": 100, "frames": ["◍", "◌"]},
|
285
|
-
"toggle9": {"interval": 100, "frames": ["◉", "◎"]},
|
286
|
-
"toggle10": {"interval": 100, "frames": ["㊂", "㊀", "㊁"]},
|
287
|
-
"toggle11": {"interval": 50, "frames": ["⧇", "⧆"]},
|
288
|
-
"toggle12": {"interval": 120, "frames": ["☗", "☖"]},
|
289
|
-
"toggle13": {"interval": 80, "frames": ["=", "*", "-"]},
|
290
|
-
"arrow": {"interval": 100, "frames": ["←", "↖", "↑", "↗", "→", "↘", "↓", "↙"]},
|
291
|
-
"arrow2": {
|
292
|
-
"interval": 80,
|
293
|
-
"frames": ["⬆️ ", "↗️ ", "➡️ ", "↘️ ", "⬇️ ", "↙️ ", "⬅️ ", "↖️ "],
|
294
|
-
},
|
295
|
-
"arrow3": {
|
296
|
-
"interval": 120,
|
297
|
-
"frames": ["▹▹▹▹▹", "▸▹▹▹▹", "▹▸▹▹▹", "▹▹▸▹▹", "▹▹▹▸▹", "▹▹▹▹▸"],
|
298
|
-
},
|
299
|
-
"bouncingBar": {
|
300
|
-
"interval": 80,
|
301
|
-
"frames": [
|
302
|
-
"[ ]",
|
303
|
-
"[= ]",
|
304
|
-
"[== ]",
|
305
|
-
"[=== ]",
|
306
|
-
"[ ===]",
|
307
|
-
"[ ==]",
|
308
|
-
"[ =]",
|
309
|
-
"[ ]",
|
310
|
-
"[ =]",
|
311
|
-
"[ ==]",
|
312
|
-
"[ ===]",
|
313
|
-
"[====]",
|
314
|
-
"[=== ]",
|
315
|
-
"[== ]",
|
316
|
-
"[= ]",
|
317
|
-
],
|
318
|
-
},
|
319
|
-
"bouncingBall": {
|
320
|
-
"interval": 80,
|
321
|
-
"frames": [
|
322
|
-
"( ● )",
|
323
|
-
"( ● )",
|
324
|
-
"( ● )",
|
325
|
-
"( ● )",
|
326
|
-
"( ●)",
|
327
|
-
"( ● )",
|
328
|
-
"( ● )",
|
329
|
-
"( ● )",
|
330
|
-
"( ● )",
|
331
|
-
"(● )",
|
332
|
-
],
|
333
|
-
},
|
334
|
-
"smiley": {"interval": 200, "frames": ["😄 ", "😝 "]},
|
335
|
-
"monkey": {"interval": 300, "frames": ["🙈 ", "🙈 ", "🙉 ", "🙊 "]},
|
336
|
-
"hearts": {"interval": 100, "frames": ["💛 ", "💙 ", "💜 ", "💚 ", "❤️ "]},
|
337
|
-
"clock": {
|
338
|
-
"interval": 100,
|
339
|
-
"frames": [
|
340
|
-
"🕛 ",
|
341
|
-
"🕐 ",
|
342
|
-
"🕑 ",
|
343
|
-
"🕒 ",
|
344
|
-
"🕓 ",
|
345
|
-
"🕔 ",
|
346
|
-
"🕕 ",
|
347
|
-
"🕖 ",
|
348
|
-
"🕗 ",
|
349
|
-
"🕘 ",
|
350
|
-
"🕙 ",
|
351
|
-
"🕚 ",
|
352
|
-
],
|
353
|
-
},
|
354
|
-
"earth": {"interval": 180, "frames": ["🌍 ", "🌎 ", "🌏 "]},
|
355
|
-
"moon": {
|
356
|
-
"interval": 80,
|
357
|
-
"frames": ["🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "],
|
358
|
-
},
|
359
|
-
"runner": {"interval": 140, "frames": ["🚶 ", "🏃 "]},
|
360
|
-
"pong": {
|
361
|
-
"interval": 80,
|
362
|
-
"frames": [
|
363
|
-
"▐⠂ ▌",
|
364
|
-
"▐⠈ ▌",
|
365
|
-
"▐ ⠂ ▌",
|
366
|
-
"▐ ⠠ ▌",
|
367
|
-
"▐ ⡀ ▌",
|
368
|
-
"▐ ⠠ ▌",
|
369
|
-
"▐ ⠂ ▌",
|
370
|
-
"▐ ⠈ ▌",
|
371
|
-
"▐ ⠂ ▌",
|
372
|
-
"▐ ⠠ ▌",
|
373
|
-
"▐ ⡀ ▌",
|
374
|
-
"▐ ⠠ ▌",
|
375
|
-
"▐ ⠂ ▌",
|
376
|
-
"▐ ⠈ ▌",
|
377
|
-
"▐ ⠂▌",
|
378
|
-
"▐ ⠠▌",
|
379
|
-
"▐ ⡀▌",
|
380
|
-
"▐ ⠠ ▌",
|
381
|
-
"▐ ⠂ ▌",
|
382
|
-
"▐ ⠈ ▌",
|
383
|
-
"▐ ⠂ ▌",
|
384
|
-
"▐ ⠠ ▌",
|
385
|
-
"▐ ⡀ ▌",
|
386
|
-
"▐ ⠠ ▌",
|
387
|
-
"▐ ⠂ ▌",
|
388
|
-
"▐ ⠈ ▌",
|
389
|
-
"▐ ⠂ ▌",
|
390
|
-
"▐ ⠠ ▌",
|
391
|
-
"▐ ⡀ ▌",
|
392
|
-
"▐⠠ ▌",
|
393
|
-
],
|
394
|
-
},
|
395
|
-
"shark": {
|
396
|
-
"interval": 120,
|
397
|
-
"frames": [
|
398
|
-
"▐|\\____________▌",
|
399
|
-
"▐_|\\___________▌",
|
400
|
-
"▐__|\\__________▌",
|
401
|
-
"▐___|\\_________▌",
|
402
|
-
"▐____|\\________▌",
|
403
|
-
"▐_____|\\_______▌",
|
404
|
-
"▐______|\\______▌",
|
405
|
-
"▐_______|\\_____▌",
|
406
|
-
"▐________|\\____▌",
|
407
|
-
"▐_________|\\___▌",
|
408
|
-
"▐__________|\\__▌",
|
409
|
-
"▐___________|\\_▌",
|
410
|
-
"▐____________|\\▌",
|
411
|
-
"▐____________/|▌",
|
412
|
-
"▐___________/|_▌",
|
413
|
-
"▐__________/|__▌",
|
414
|
-
"▐_________/|___▌",
|
415
|
-
"▐________/|____▌",
|
416
|
-
"▐_______/|_____▌",
|
417
|
-
"▐______/|______▌",
|
418
|
-
"▐_____/|_______▌",
|
419
|
-
"▐____/|________▌",
|
420
|
-
"▐___/|_________▌",
|
421
|
-
"▐__/|__________▌",
|
422
|
-
"▐_/|___________▌",
|
423
|
-
"▐/|____________▌",
|
424
|
-
],
|
425
|
-
},
|
426
|
-
"dqpb": {"interval": 100, "frames": ["d", "q", "p", "b"]},
|
427
|
-
"weather": {
|
428
|
-
"interval": 100,
|
429
|
-
"frames": [
|
430
|
-
"☀️ ",
|
431
|
-
"☀️ ",
|
432
|
-
"☀️ ",
|
433
|
-
"🌤 ",
|
434
|
-
"⛅️ ",
|
435
|
-
"🌥 ",
|
436
|
-
"☁️ ",
|
437
|
-
"🌧 ",
|
438
|
-
"🌨 ",
|
439
|
-
"🌧 ",
|
440
|
-
"🌨 ",
|
441
|
-
"🌧 ",
|
442
|
-
"🌨 ",
|
443
|
-
"⛈ ",
|
444
|
-
"🌨 ",
|
445
|
-
"🌧 ",
|
446
|
-
"🌨 ",
|
447
|
-
"☁️ ",
|
448
|
-
"🌥 ",
|
449
|
-
"⛅️ ",
|
450
|
-
"🌤 ",
|
451
|
-
"☀️ ",
|
452
|
-
"☀️ ",
|
453
|
-
],
|
454
|
-
},
|
455
|
-
"christmas": {"interval": 400, "frames": ["🌲", "🎄"]},
|
456
|
-
"grenade": {
|
457
|
-
"interval": 80,
|
458
|
-
"frames": [
|
459
|
-
"، ",
|
460
|
-
"′ ",
|
461
|
-
" ´ ",
|
462
|
-
" ‾ ",
|
463
|
-
" ⸌",
|
464
|
-
" ⸊",
|
465
|
-
" |",
|
466
|
-
" ⁎",
|
467
|
-
" ⁕",
|
468
|
-
" ෴ ",
|
469
|
-
" ⁓",
|
470
|
-
" ",
|
471
|
-
" ",
|
472
|
-
" ",
|
473
|
-
],
|
474
|
-
},
|
475
|
-
"point": {"interval": 125, "frames": ["∙∙∙", "●∙∙", "∙●∙", "∙∙●", "∙∙∙"]},
|
476
|
-
"layer": {"interval": 150, "frames": ["-", "=", "≡"]},
|
477
|
-
},
|
478
|
-
)
|
@@ -1,21 +0,0 @@
|
|
1
|
-
MIT License
|
2
|
-
|
3
|
-
Copyright (c) 2017 Manraj Singh
|
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.
|
outerbounds/apps/__init__.py
DELETED
File without changes
|