mobilis 0.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.
- mobilis-0.0.1/LICENSE +201 -0
- mobilis-0.0.1/PKG-INFO +272 -0
- mobilis-0.0.1/README.md +44 -0
- mobilis-0.0.1/pyproject.toml +43 -0
- mobilis-0.0.1/src/mobilis/__init__.py +5 -0
- mobilis-0.0.1/src/mobilis/__main__.py +6 -0
- mobilis-0.0.1/src/mobilis/cli.py +85 -0
- mobilis-0.0.1/src/mobilis/info.py +33 -0
- mobilis-0.0.1/src/mobilis/tui.py +223 -0
mobilis-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
mobilis-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: mobilis
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Visualize public transportation information from GTFS feeds in the terminal.
|
|
5
|
+
Keywords: gtfs,transit,public-transportation,cli,tui,terminal
|
|
6
|
+
Author: Fabián Abarca Calderón
|
|
7
|
+
Author-email: Fabián Abarca Calderón <ensinergia@gmail.com>
|
|
8
|
+
License: Apache License
|
|
9
|
+
Version 2.0, January 2004
|
|
10
|
+
http://www.apache.org/licenses/
|
|
11
|
+
|
|
12
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
13
|
+
|
|
14
|
+
1. Definitions.
|
|
15
|
+
|
|
16
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
17
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
18
|
+
|
|
19
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
20
|
+
the copyright owner that is granting the License.
|
|
21
|
+
|
|
22
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
23
|
+
other entities that control, are controlled by, or are under common
|
|
24
|
+
control with that entity. For the purposes of this definition,
|
|
25
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
26
|
+
direction or management of such entity, whether by contract or
|
|
27
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
28
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
29
|
+
|
|
30
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
31
|
+
exercising permissions granted by this License.
|
|
32
|
+
|
|
33
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
34
|
+
including but not limited to software source code, documentation
|
|
35
|
+
source, and configuration files.
|
|
36
|
+
|
|
37
|
+
"Object" form shall mean any form resulting from mechanical
|
|
38
|
+
transformation or translation of a Source form, including but
|
|
39
|
+
not limited to compiled object code, generated documentation,
|
|
40
|
+
and conversions to other media types.
|
|
41
|
+
|
|
42
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
43
|
+
Object form, made available under the License, as indicated by a
|
|
44
|
+
copyright notice that is included in or attached to the work
|
|
45
|
+
(an example is provided in the Appendix below).
|
|
46
|
+
|
|
47
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
48
|
+
form, that is based on (or derived from) the Work and for which the
|
|
49
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
50
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
51
|
+
of this License, Derivative Works shall not include works that remain
|
|
52
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
53
|
+
the Work and Derivative Works thereof.
|
|
54
|
+
|
|
55
|
+
"Contribution" shall mean any work of authorship, including
|
|
56
|
+
the original version of the Work and any modifications or additions
|
|
57
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
58
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
59
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
60
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
61
|
+
means any form of electronic, verbal, or written communication sent
|
|
62
|
+
to the Licensor or its representatives, including but not limited to
|
|
63
|
+
communication on electronic mailing lists, source code control systems,
|
|
64
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
65
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
66
|
+
excluding communication that is conspicuously marked or otherwise
|
|
67
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
68
|
+
|
|
69
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
70
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
71
|
+
subsequently incorporated within the Work.
|
|
72
|
+
|
|
73
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
77
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
78
|
+
Work and such Derivative Works in Source or Object form.
|
|
79
|
+
|
|
80
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
81
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
82
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
83
|
+
(except as stated in this section) patent license to make, have made,
|
|
84
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
85
|
+
where such license applies only to those patent claims licensable
|
|
86
|
+
by such Contributor that are necessarily infringed by their
|
|
87
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
88
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
89
|
+
institute patent litigation against any entity (including a
|
|
90
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
91
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
92
|
+
or contributory patent infringement, then any patent licenses
|
|
93
|
+
granted to You under this License for that Work shall terminate
|
|
94
|
+
as of the date such litigation is filed.
|
|
95
|
+
|
|
96
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
97
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
98
|
+
modifications, and in Source or Object form, provided that You
|
|
99
|
+
meet the following conditions:
|
|
100
|
+
|
|
101
|
+
(a) You must give any other recipients of the Work or
|
|
102
|
+
Derivative Works a copy of this License; and
|
|
103
|
+
|
|
104
|
+
(b) You must cause any modified files to carry prominent notices
|
|
105
|
+
stating that You changed the files; and
|
|
106
|
+
|
|
107
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
108
|
+
that You distribute, all copyright, patent, trademark, and
|
|
109
|
+
attribution notices from the Source form of the Work,
|
|
110
|
+
excluding those notices that do not pertain to any part of
|
|
111
|
+
the Derivative Works; and
|
|
112
|
+
|
|
113
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
114
|
+
distribution, then any Derivative Works that You distribute must
|
|
115
|
+
include a readable copy of the attribution notices contained
|
|
116
|
+
within such NOTICE file, excluding those notices that do not
|
|
117
|
+
pertain to any part of the Derivative Works, in at least one
|
|
118
|
+
of the following places: within a NOTICE text file distributed
|
|
119
|
+
as part of the Derivative Works; within the Source form or
|
|
120
|
+
documentation, if provided along with the Derivative Works; or,
|
|
121
|
+
within a display generated by the Derivative Works, if and
|
|
122
|
+
wherever such third-party notices normally appear. The contents
|
|
123
|
+
of the NOTICE file are for informational purposes only and
|
|
124
|
+
do not modify the License. You may add Your own attribution
|
|
125
|
+
notices within Derivative Works that You distribute, alongside
|
|
126
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
127
|
+
that such additional attribution notices cannot be construed
|
|
128
|
+
as modifying the License.
|
|
129
|
+
|
|
130
|
+
You may add Your own copyright statement to Your modifications and
|
|
131
|
+
may provide additional or different license terms and conditions
|
|
132
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
133
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
134
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
135
|
+
the conditions stated in this License.
|
|
136
|
+
|
|
137
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
138
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
139
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
140
|
+
this License, without any additional terms or conditions.
|
|
141
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
142
|
+
the terms of any separate license agreement you may have executed
|
|
143
|
+
with Licensor regarding such Contributions.
|
|
144
|
+
|
|
145
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
146
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
147
|
+
except as required for reasonable and customary use in describing the
|
|
148
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
149
|
+
|
|
150
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
151
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
152
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
153
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
154
|
+
implied, including, without limitation, any warranties or conditions
|
|
155
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
156
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
157
|
+
appropriateness of using or redistributing the Work and assume any
|
|
158
|
+
risks associated with Your exercise of permissions under this License.
|
|
159
|
+
|
|
160
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
161
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
162
|
+
unless required by applicable law (such as deliberate and grossly
|
|
163
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
164
|
+
liable to You for damages, including any direct, indirect, special,
|
|
165
|
+
incidental, or consequential damages of any character arising as a
|
|
166
|
+
result of this License or out of the use or inability to use the
|
|
167
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
168
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
169
|
+
other commercial damages or losses), even if such Contributor
|
|
170
|
+
has been advised of the possibility of such damages.
|
|
171
|
+
|
|
172
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
173
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
174
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
175
|
+
or other liability obligations and/or rights consistent with this
|
|
176
|
+
License. However, in accepting such obligations, You may act only
|
|
177
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
178
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
179
|
+
defend, and hold each Contributor harmless for any liability
|
|
180
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
181
|
+
of your accepting any such warranty or additional liability.
|
|
182
|
+
|
|
183
|
+
END OF TERMS AND CONDITIONS
|
|
184
|
+
|
|
185
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
186
|
+
|
|
187
|
+
To apply the Apache License to your work, attach the following
|
|
188
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
189
|
+
replaced with your own identifying information. (Don't include
|
|
190
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
191
|
+
comment syntax for the file format. We also recommend that a
|
|
192
|
+
file or class name and description of purpose be included on the
|
|
193
|
+
same "printed page" as the copyright notice for easier
|
|
194
|
+
identification within third-party archives.
|
|
195
|
+
|
|
196
|
+
Copyright [yyyy] [name of copyright owner]
|
|
197
|
+
|
|
198
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
199
|
+
you may not use this file except in compliance with the License.
|
|
200
|
+
You may obtain a copy of the License at
|
|
201
|
+
|
|
202
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
203
|
+
|
|
204
|
+
Unless required by applicable law or agreed to in writing, software
|
|
205
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
206
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
207
|
+
See the License for the specific language governing permissions and
|
|
208
|
+
limitations under the License.
|
|
209
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
210
|
+
Classifier: Environment :: Console
|
|
211
|
+
Classifier: Intended Audience :: Developers
|
|
212
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
213
|
+
Classifier: Operating System :: OS Independent
|
|
214
|
+
Classifier: Programming Language :: Python :: 3
|
|
215
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
216
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
217
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
218
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
219
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
220
|
+
Classifier: Topic :: Terminals
|
|
221
|
+
Classifier: Topic :: Utilities
|
|
222
|
+
Requires-Dist: rich>=13.7
|
|
223
|
+
Requires-Dist: textual>=0.58
|
|
224
|
+
Requires-Python: >=3.10
|
|
225
|
+
Project-URL: Homepage, https://github.com/fabianabarca/mobilis
|
|
226
|
+
Project-URL: Issues, https://github.com/fabianabarca/mobilis/issues
|
|
227
|
+
Description-Content-Type: text/markdown
|
|
228
|
+
|
|
229
|
+
# mobilis
|
|
230
|
+
|
|
231
|
+
> **Status:** early stub. This package currently only scaffolds the CLI/TUI
|
|
232
|
+
> surface; GTFS data integration has not been implemented yet.
|
|
233
|
+
|
|
234
|
+
`mobilis` is a terminal-first tool for exploring public transportation information from [GTFS](https://gtfs.org/) feeds (both static schedules and real-time updates). It aims to give riders, operators and hackers a fast, keyboard-driven way to answer questions like *"when is the next bus at this stop?"* or *"which vehicles are currently running on route 42?"* — without
|
|
235
|
+
leaving the terminal.
|
|
236
|
+
|
|
237
|
+
It is built with:
|
|
238
|
+
|
|
239
|
+
- [`rich`](https://github.com/Textualize/rich) for nicely formatted one-shot output (e.g. `mobilis info stop ABC123`).
|
|
240
|
+
- [`textual`](https://github.com/Textualize/textual) for the interactive dashboard (`mobilis run`).
|
|
241
|
+
- [`uv`](https://github.com/astral-sh/uv) for packaging and environment management.
|
|
242
|
+
|
|
243
|
+
## Planned commands
|
|
244
|
+
|
|
245
|
+
```
|
|
246
|
+
mobilis run # launch the interactive TUI dashboard
|
|
247
|
+
mobilis info stop ABC123 # show details for a stop by code/id
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
More subcommands (routes, trips, vehicles, alerts, …) will follow.
|
|
251
|
+
|
|
252
|
+
## Installation
|
|
253
|
+
|
|
254
|
+
Once published to PyPI:
|
|
255
|
+
|
|
256
|
+
```
|
|
257
|
+
pip install mobilis
|
|
258
|
+
# or
|
|
259
|
+
uv tool install mobilis
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
## Development
|
|
263
|
+
|
|
264
|
+
```
|
|
265
|
+
uv sync
|
|
266
|
+
uv run mobilis --help
|
|
267
|
+
uv build # produce sdist + wheel in dist/
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
## License
|
|
271
|
+
|
|
272
|
+
See [`LICENSE`](./LICENSE).
|
mobilis-0.0.1/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# mobilis
|
|
2
|
+
|
|
3
|
+
> **Status:** early stub. This package currently only scaffolds the CLI/TUI
|
|
4
|
+
> surface; GTFS data integration has not been implemented yet.
|
|
5
|
+
|
|
6
|
+
`mobilis` is a terminal-first tool for exploring public transportation information from [GTFS](https://gtfs.org/) feeds (both static schedules and real-time updates). It aims to give riders, operators and hackers a fast, keyboard-driven way to answer questions like *"when is the next bus at this stop?"* or *"which vehicles are currently running on route 42?"* — without
|
|
7
|
+
leaving the terminal.
|
|
8
|
+
|
|
9
|
+
It is built with:
|
|
10
|
+
|
|
11
|
+
- [`rich`](https://github.com/Textualize/rich) for nicely formatted one-shot output (e.g. `mobilis info stop ABC123`).
|
|
12
|
+
- [`textual`](https://github.com/Textualize/textual) for the interactive dashboard (`mobilis run`).
|
|
13
|
+
- [`uv`](https://github.com/astral-sh/uv) for packaging and environment management.
|
|
14
|
+
|
|
15
|
+
## Planned commands
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
mobilis run # launch the interactive TUI dashboard
|
|
19
|
+
mobilis info stop ABC123 # show details for a stop by code/id
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
More subcommands (routes, trips, vehicles, alerts, …) will follow.
|
|
23
|
+
|
|
24
|
+
## Installation
|
|
25
|
+
|
|
26
|
+
Once published to PyPI:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
pip install mobilis
|
|
30
|
+
# or
|
|
31
|
+
uv tool install mobilis
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Development
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
uv sync
|
|
38
|
+
uv run mobilis --help
|
|
39
|
+
uv build # produce sdist + wheel in dist/
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
See [`LICENSE`](./LICENSE).
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "mobilis"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Visualize public transportation information from GTFS feeds in the terminal."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = { file = "LICENSE" }
|
|
7
|
+
authors = [{ name = "Fabián Abarca Calderón", email = "ensinergia@gmail.com" }]
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
keywords = [
|
|
10
|
+
"gtfs",
|
|
11
|
+
"transit",
|
|
12
|
+
"public-transportation",
|
|
13
|
+
"cli",
|
|
14
|
+
"tui",
|
|
15
|
+
"terminal",
|
|
16
|
+
]
|
|
17
|
+
classifiers = [
|
|
18
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
19
|
+
"Environment :: Console",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Intended Audience :: End Users/Desktop",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: 3.13",
|
|
29
|
+
"Topic :: Terminals",
|
|
30
|
+
"Topic :: Utilities",
|
|
31
|
+
]
|
|
32
|
+
dependencies = ["rich>=13.7", "textual>=0.58"]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://github.com/fabianabarca/mobilis"
|
|
36
|
+
Issues = "https://github.com/fabianabarca/mobilis/issues"
|
|
37
|
+
|
|
38
|
+
[project.scripts]
|
|
39
|
+
mobilis = "mobilis.cli:main"
|
|
40
|
+
|
|
41
|
+
[build-system]
|
|
42
|
+
requires = ["uv_build>=0.9.4,<0.10.0"]
|
|
43
|
+
build-backend = "uv_build"
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"""Command-line interface for mobilis.
|
|
2
|
+
|
|
3
|
+
Exposes two top-level commands:
|
|
4
|
+
|
|
5
|
+
* ``mobilis run`` — launch the Textual TUI dashboard.
|
|
6
|
+
* ``mobilis info <resource> <id>`` — print information about a transit
|
|
7
|
+
resource (currently only ``stop``) using Rich for pretty output.
|
|
8
|
+
|
|
9
|
+
This is a minimal stub; real GTFS data fetching will arrive in a future
|
|
10
|
+
release.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import annotations
|
|
14
|
+
|
|
15
|
+
import argparse
|
|
16
|
+
import sys
|
|
17
|
+
from typing import Sequence
|
|
18
|
+
|
|
19
|
+
from . import __version__
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def _build_parser() -> argparse.ArgumentParser:
|
|
23
|
+
parser = argparse.ArgumentParser(
|
|
24
|
+
prog="mobilis",
|
|
25
|
+
description=(
|
|
26
|
+
"Visualize public transportation information from GTFS feeds "
|
|
27
|
+
"in the terminal."
|
|
28
|
+
),
|
|
29
|
+
)
|
|
30
|
+
parser.add_argument(
|
|
31
|
+
"-V",
|
|
32
|
+
"--version",
|
|
33
|
+
action="version",
|
|
34
|
+
version=f"%(prog)s {__version__}",
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
subparsers = parser.add_subparsers(dest="command", required=True)
|
|
38
|
+
|
|
39
|
+
# mobilis run
|
|
40
|
+
subparsers.add_parser(
|
|
41
|
+
"run",
|
|
42
|
+
help="Start the TUI dashboard.",
|
|
43
|
+
description="Start the mobilis TUI dashboard (powered by Textual).",
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
# mobilis info <resource> <id>
|
|
47
|
+
info = subparsers.add_parser(
|
|
48
|
+
"info",
|
|
49
|
+
help="Show information about a transit resource.",
|
|
50
|
+
description="Show information about a transit resource.",
|
|
51
|
+
)
|
|
52
|
+
info_sub = info.add_subparsers(dest="resource", required=True)
|
|
53
|
+
|
|
54
|
+
stop = info_sub.add_parser(
|
|
55
|
+
"stop",
|
|
56
|
+
help="Show information about a stop.",
|
|
57
|
+
description="Show information about a stop by stop code or id.",
|
|
58
|
+
)
|
|
59
|
+
stop.add_argument("stop_id", help="Stop code or id, e.g. ABC123.")
|
|
60
|
+
|
|
61
|
+
return parser
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def main(argv: Sequence[str] | None = None) -> int:
|
|
65
|
+
parser = _build_parser()
|
|
66
|
+
args = parser.parse_args(argv)
|
|
67
|
+
|
|
68
|
+
if args.command == "run":
|
|
69
|
+
from .tui import run_dashboard
|
|
70
|
+
|
|
71
|
+
run_dashboard()
|
|
72
|
+
return 0
|
|
73
|
+
|
|
74
|
+
if args.command == "info" and args.resource == "stop":
|
|
75
|
+
from .info import show_stop
|
|
76
|
+
|
|
77
|
+
show_stop(args.stop_id)
|
|
78
|
+
return 0
|
|
79
|
+
|
|
80
|
+
parser.error(f"Unknown command: {args.command!r}")
|
|
81
|
+
return 2 # pragma: no cover — argparse exits before reaching here
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
if __name__ == "__main__": # pragma: no cover
|
|
85
|
+
sys.exit(main())
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"""Rich-formatted ``mobilis info`` output (stub)."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from rich.console import Console
|
|
6
|
+
from rich.panel import Panel
|
|
7
|
+
from rich.table import Table
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def show_stop(stop_id: str) -> None:
|
|
11
|
+
"""Render information about a stop.
|
|
12
|
+
|
|
13
|
+
This is a placeholder that shows how the final output will look.
|
|
14
|
+
Real GTFS lookups will be wired in later.
|
|
15
|
+
"""
|
|
16
|
+
console = Console()
|
|
17
|
+
|
|
18
|
+
table = Table(show_header=False, box=None, pad_edge=False)
|
|
19
|
+
table.add_column(style="bold cyan")
|
|
20
|
+
table.add_column()
|
|
21
|
+
table.add_row("Stop ID", stop_id)
|
|
22
|
+
table.add_row("Name", "[dim]unknown (stub)[/dim]")
|
|
23
|
+
table.add_row("Location", "[dim]unknown (stub)[/dim]")
|
|
24
|
+
table.add_row("Routes", "[dim]unknown (stub)[/dim]")
|
|
25
|
+
|
|
26
|
+
console.print(
|
|
27
|
+
Panel(
|
|
28
|
+
table,
|
|
29
|
+
title=f"[bold]Stop {stop_id}[/bold]",
|
|
30
|
+
subtitle="[dim]mobilis stub — GTFS integration pending[/dim]",
|
|
31
|
+
border_style="cyan",
|
|
32
|
+
)
|
|
33
|
+
)
|
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
"""Textual TUI dashboard for mobilis (stub).
|
|
2
|
+
|
|
3
|
+
This is intentionally a toy: no real GTFS data is fetched. The goal is to
|
|
4
|
+
showcase a few Textual widgets we'll use in the real dashboard (data tables,
|
|
5
|
+
tabs, progress bars, sparklines, a log, keybindings, and custom CSS).
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from __future__ import annotations
|
|
9
|
+
|
|
10
|
+
import random
|
|
11
|
+
from datetime import datetime, timedelta
|
|
12
|
+
|
|
13
|
+
from rich.text import Text
|
|
14
|
+
from textual.app import App, ComposeResult
|
|
15
|
+
from textual.containers import Horizontal, Vertical
|
|
16
|
+
from textual.widgets import (
|
|
17
|
+
DataTable,
|
|
18
|
+
Footer,
|
|
19
|
+
Header,
|
|
20
|
+
Label,
|
|
21
|
+
ProgressBar,
|
|
22
|
+
RichLog,
|
|
23
|
+
Sparkline,
|
|
24
|
+
TabbedContent,
|
|
25
|
+
TabPane,
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
# --- Mock data ---------------------------------------------------------------
|
|
29
|
+
|
|
30
|
+
MOCK_STOPS: list[tuple[str, str, str]] = [
|
|
31
|
+
("ABC123", "Main St & 5th", "Inbound"),
|
|
32
|
+
("ABC124", "Main St & 7th", "Inbound"),
|
|
33
|
+
("XYZ900", "Central Station", "Both"),
|
|
34
|
+
("LMN045", "Riverside Park", "Outbound"),
|
|
35
|
+
("QRS777", "Airport Terminal 2", "Both"),
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
MOCK_ROUTES: list[tuple[str, str, str]] = [
|
|
39
|
+
("42", "Downtown Loop", "bus"),
|
|
40
|
+
("L1", "Red Line", "light rail"),
|
|
41
|
+
("N3", "Night Owl", "bus"),
|
|
42
|
+
("X9", "Airport Express", "bus"),
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
_STATUSES = [
|
|
46
|
+
("on time", "green"),
|
|
47
|
+
("+1 min", "yellow"),
|
|
48
|
+
("+3 min", "yellow"),
|
|
49
|
+
("+7 min", "red"),
|
|
50
|
+
("early", "cyan"),
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# --- Widgets -----------------------------------------------------------------
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
class StopsTable(DataTable):
|
|
58
|
+
"""Left-hand table listing known stops."""
|
|
59
|
+
|
|
60
|
+
def on_mount(self) -> None:
|
|
61
|
+
self.cursor_type = "row"
|
|
62
|
+
self.zebra_stripes = True
|
|
63
|
+
self.add_columns("Code", "Name", "Direction")
|
|
64
|
+
for row in MOCK_STOPS:
|
|
65
|
+
self.add_row(*row)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
class DeparturesTable(DataTable):
|
|
69
|
+
"""Upcoming departures for the selected stop."""
|
|
70
|
+
|
|
71
|
+
def on_mount(self) -> None:
|
|
72
|
+
self.cursor_type = "row"
|
|
73
|
+
self.zebra_stripes = True
|
|
74
|
+
self.add_columns("Route", "Headsign", "ETA", "Status")
|
|
75
|
+
self.refresh_rows()
|
|
76
|
+
|
|
77
|
+
def refresh_rows(self) -> None:
|
|
78
|
+
self.clear()
|
|
79
|
+
now = datetime.now()
|
|
80
|
+
for route, name, _mode in MOCK_ROUTES:
|
|
81
|
+
eta = now + timedelta(minutes=random.randint(1, 20))
|
|
82
|
+
status, color = random.choice(_STATUSES)
|
|
83
|
+
self.add_row(
|
|
84
|
+
Text(route, style="bold cyan"),
|
|
85
|
+
name,
|
|
86
|
+
eta.strftime("%H:%M"),
|
|
87
|
+
Text(status, style=color),
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
# --- App ---------------------------------------------------------------------
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class MobilisApp(App):
|
|
95
|
+
"""Placeholder dashboard app.
|
|
96
|
+
|
|
97
|
+
Future versions will render live GTFS feeds: stops, routes, vehicles
|
|
98
|
+
and service alerts. For now everything here is mock data.
|
|
99
|
+
"""
|
|
100
|
+
|
|
101
|
+
CSS = """
|
|
102
|
+
Screen {
|
|
103
|
+
layout: vertical;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
#body {
|
|
107
|
+
height: 1fr;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
#sidebar {
|
|
111
|
+
width: 38;
|
|
112
|
+
border-right: solid $primary 50%;
|
|
113
|
+
padding: 0 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
#content {
|
|
117
|
+
padding: 0 1;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.section-title {
|
|
121
|
+
padding: 1 0 0 0;
|
|
122
|
+
color: $accent;
|
|
123
|
+
text-style: bold;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
StopsTable, DeparturesTable {
|
|
127
|
+
height: 1fr;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
ProgressBar {
|
|
131
|
+
margin: 1 0;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
Sparkline {
|
|
135
|
+
height: 3;
|
|
136
|
+
margin: 1 0;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
RichLog {
|
|
140
|
+
height: 1fr;
|
|
141
|
+
background: $surface;
|
|
142
|
+
}
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
TITLE = "mobilis"
|
|
146
|
+
SUB_TITLE = "GTFS in the terminal — stub dashboard"
|
|
147
|
+
BINDINGS = [
|
|
148
|
+
("q", "quit", "Quit"),
|
|
149
|
+
("r", "refresh", "Refresh data"),
|
|
150
|
+
("a", "add_alert", "Add alert"),
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
def compose(self) -> ComposeResult:
|
|
154
|
+
yield Header(show_clock=True)
|
|
155
|
+
with Horizontal(id="body"):
|
|
156
|
+
with Vertical(id="sidebar"):
|
|
157
|
+
yield Label("Stops", classes="section-title")
|
|
158
|
+
yield StopsTable(id="stops")
|
|
159
|
+
with Vertical(id="content"):
|
|
160
|
+
with TabbedContent(initial="departures"):
|
|
161
|
+
with TabPane("Departures", id="departures"):
|
|
162
|
+
yield DeparturesTable(id="departures-table")
|
|
163
|
+
with TabPane("Service alerts", id="alerts"):
|
|
164
|
+
yield RichLog(
|
|
165
|
+
id="alerts-log",
|
|
166
|
+
highlight=True,
|
|
167
|
+
markup=True,
|
|
168
|
+
wrap=True,
|
|
169
|
+
)
|
|
170
|
+
with TabPane("Occupancy", id="occupancy"):
|
|
171
|
+
with Vertical():
|
|
172
|
+
yield Label(
|
|
173
|
+
"Vehicle occupancy (mock)",
|
|
174
|
+
classes="section-title",
|
|
175
|
+
)
|
|
176
|
+
yield ProgressBar(
|
|
177
|
+
total=100,
|
|
178
|
+
show_eta=False,
|
|
179
|
+
id="occupancy-bar",
|
|
180
|
+
)
|
|
181
|
+
yield Label(
|
|
182
|
+
"Passengers/minute — last 30 samples",
|
|
183
|
+
classes="section-title",
|
|
184
|
+
)
|
|
185
|
+
yield Sparkline(
|
|
186
|
+
[random.randint(0, 100) for _ in range(30)],
|
|
187
|
+
id="spark",
|
|
188
|
+
)
|
|
189
|
+
yield Footer()
|
|
190
|
+
|
|
191
|
+
def on_mount(self) -> None:
|
|
192
|
+
log = self.query_one("#alerts-log", RichLog)
|
|
193
|
+
log.write("[bold red]DELAY[/] Route 42: +5 min due to traffic.")
|
|
194
|
+
log.write("[bold yellow]DETOUR[/] L1 rerouted via 8th Ave.")
|
|
195
|
+
log.write("[green]OK[/] N3 running on schedule.")
|
|
196
|
+
self.query_one("#occupancy-bar", ProgressBar).update(
|
|
197
|
+
progress=random.randint(10, 95)
|
|
198
|
+
)
|
|
199
|
+
|
|
200
|
+
# --- Actions -------------------------------------------------------------
|
|
201
|
+
|
|
202
|
+
def action_refresh(self) -> None:
|
|
203
|
+
self.query_one("#departures-table", DeparturesTable).refresh_rows()
|
|
204
|
+
self.query_one("#occupancy-bar", ProgressBar).update(
|
|
205
|
+
progress=random.randint(10, 95)
|
|
206
|
+
)
|
|
207
|
+
self.query_one("#spark", Sparkline).data = [
|
|
208
|
+
random.randint(0, 100) for _ in range(30)
|
|
209
|
+
]
|
|
210
|
+
self.query_one("#alerts-log", RichLog).write(
|
|
211
|
+
f"[dim]{datetime.now():%H:%M:%S}[/] refreshed mock data"
|
|
212
|
+
)
|
|
213
|
+
|
|
214
|
+
def action_add_alert(self) -> None:
|
|
215
|
+
route, headsign, _ = random.choice(MOCK_ROUTES)
|
|
216
|
+
self.query_one("#alerts-log", RichLog).write(
|
|
217
|
+
f"[bold magenta]INFO[/] {route} → {headsign}: new service note."
|
|
218
|
+
)
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
def run_dashboard() -> None:
|
|
222
|
+
"""Entry point used by the CLI to launch the TUI."""
|
|
223
|
+
MobilisApp().run()
|