otf-api 0.5.0__py3-none-any.whl → 0.6.1__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.
otf_api/__init__.py CHANGED
@@ -6,7 +6,7 @@ from loguru import logger
6
6
  from .api import Otf
7
7
  from .auth import OtfUser
8
8
 
9
- __version__ = "0.5.0"
9
+ __version__ = "0.6.1"
10
10
 
11
11
 
12
12
  __all__ = ["Otf", "OtfUser"]
otf_api/models/base.py CHANGED
@@ -1,208 +1,20 @@
1
- import inspect
2
- import typing
3
- from enum import Enum
4
- from typing import Any, ClassVar, TypeVar
1
+ from typing import ClassVar
5
2
 
6
- from box import Box
7
- from inflection import humanize
8
3
  from pydantic import BaseModel, ConfigDict
9
- from rich.style import Style
10
- from rich.styled import Styled
11
- from rich.table import Table
12
4
 
13
- if typing.TYPE_CHECKING:
14
- from pydantic.main import IncEx
15
5
 
16
- T = TypeVar("T", bound="OtfItemBase")
17
-
18
-
19
- class BetterDumperMixin:
20
- """A better dumper for Pydantic models that includes properties in the dumped data. Must be mixed
21
- into a Pydantic model, as it overrides the `model_dump` method.
22
-
23
- Includes support for nested models, and has an option to not include properties when dumping.
24
- """
25
-
26
- def get_properties(self) -> list[str]:
27
- """Get the properties of the model."""
28
- cls = type(self)
29
-
30
- properties: list[str] = []
31
- methods = inspect.getmembers(self, lambda f: not (inspect.isroutine(f)))
32
- for prop_name, _ in methods:
33
- if hasattr(cls, prop_name) and isinstance(getattr(cls, prop_name), property):
34
- properties.append(prop_name)
35
-
36
- return properties
37
-
38
- @typing.overload
39
- def model_dump(
40
- self,
41
- *,
42
- mode: typing.Literal["json", "python"] | str = "python",
43
- include: "IncEx" = None,
44
- exclude: "IncEx" = None,
45
- by_alias: bool = False,
46
- exclude_unset: bool = False,
47
- exclude_defaults: bool = False,
48
- exclude_none: bool = False,
49
- round_trip: bool = False,
50
- warnings: bool = True,
51
- include_properties: bool = True,
52
- ) -> Box[str, typing.Any]: ...
53
-
54
- @typing.overload
55
- def model_dump(
56
- self,
57
- *,
58
- mode: typing.Literal["json", "python"] | str = "python",
59
- include: "IncEx" = None,
60
- exclude: "IncEx" = None,
61
- by_alias: bool = False,
62
- exclude_unset: bool = False,
63
- exclude_defaults: bool = False,
64
- exclude_none: bool = False,
65
- round_trip: bool = False,
66
- warnings: bool = True,
67
- include_properties: bool = False,
68
- ) -> dict[str, typing.Any]: ...
69
-
70
- def model_dump(
71
- self,
72
- *,
73
- mode: typing.Literal["json", "python"] | str = "python",
74
- include: "IncEx" = None,
75
- exclude: "IncEx" = None,
76
- by_alias: bool = False,
77
- exclude_unset: bool = False,
78
- exclude_defaults: bool = False,
79
- exclude_none: bool = False,
80
- round_trip: bool = False,
81
- warnings: bool = True,
82
- include_properties: bool = True,
83
- ) -> dict[str, typing.Any] | Box[str, typing.Any]:
84
- """Usage docs: https://docs.pydantic.dev/2.4/concepts/serialization/#modelmodel_dump
85
-
86
- Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.
87
-
88
- Args:
89
- mode: The mode in which `to_python` should run.
90
- If mode is 'json', the dictionary will only contain JSON serializable types.
91
- If mode is 'python', the dictionary may contain any Python objects.
92
- include: A list of fields to include in the output.
93
- exclude: A list of fields to exclude from the output.
94
- by_alias: Whether to use the field's alias in the dictionary key if defined.
95
- exclude_unset: Whether to exclude fields that are unset or None from the output.
96
- exclude_defaults: Whether to exclude fields that are set to their default value from the output.
97
- exclude_none: Whether to exclude fields that have a value of `None` from the output.
98
- round_trip: Whether to enable serialization and deserialization round-trip support.
99
- warnings: Whether to log warnings when invalid fields are encountered.
100
- include_properties: Whether to include properties in the dumped data.
101
-
102
- Returns:
103
- A dictionary representation of the model. Will be a `Box` if `include_properties` is `True`, otherwise a
104
- regular dictionary.
105
-
106
- """
107
- dumped_data = typing.cast(BaseModel, super()).model_dump(
108
- mode=mode,
109
- include=include,
110
- exclude=exclude,
111
- by_alias=by_alias,
112
- exclude_unset=exclude_unset,
113
- exclude_defaults=exclude_defaults,
114
- exclude_none=exclude_none,
115
- round_trip=round_trip,
116
- warnings=warnings,
117
- )
118
-
119
- if not include_properties:
120
- return dumped_data
121
-
122
- properties = self.get_properties()
123
-
124
- # set properties to their values
125
- for prop_name in properties:
126
- dumped_data[prop_name] = getattr(self, prop_name)
127
-
128
- # if the property is a Pydantic model, dump it as well
129
- for k, v in dumped_data.items():
130
- if issubclass(type(getattr(self, k)), BaseModel):
131
- dumped_data[k] = getattr(self, k).model_dump()
132
- elif hasattr(v, "model_dump"):
133
- dumped_data[k] = v.model_dump()
134
-
135
- return Box(dumped_data)
136
-
137
-
138
- class OtfItemBase(BetterDumperMixin, BaseModel):
139
- model_config: ClassVar[ConfigDict] = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
140
-
141
- def convert_row_value_types(self, row: list[Any]) -> list[str]:
142
- for i, val in enumerate(row):
143
- if isinstance(val, bool):
144
- row[i] = str(val)
145
- continue
146
-
147
- if isinstance(val, Enum):
148
- row[i] = val.name
149
- continue
150
-
151
- if val is None:
152
- row[i] = ""
153
- continue
154
-
155
- row[i] = str(val)
156
-
157
- return row
158
-
159
- def get_style(self, is_selected: bool = False) -> Style:
160
- return Style(color="blue", bold=True) if is_selected else Style(color="white")
161
-
162
- def to_row(self, attributes: list[str], is_selected: bool = False) -> list[Styled]:
163
- style = self.get_style(is_selected)
164
-
165
- boxed_self = Box(self.model_dump(), box_dots=True)
166
- row = [boxed_self.get(attr, "") for attr in attributes]
167
- row = self.convert_row_value_types(row)
168
- styled = [Styled(cell, style=style) for cell in row]
169
-
170
- prefix = "> " if is_selected else " "
171
- styled.insert(0, Styled(prefix, style=style))
172
-
173
- return styled
174
-
175
- @property
176
- def sidebar_data(self) -> Table | None:
177
- return None
178
-
179
- @classmethod
180
- def attr_to_column_header(cls, attr: str) -> str:
181
- attr_map = {k: humanize(k) for k in cls.model_fields}
182
-
183
- return attr_map.get(attr, attr)
6
+ class OtfItemBase(BaseModel):
7
+ model_config: ClassVar[ConfigDict] = ConfigDict(arbitrary_types_allowed=True, extra="allow")
184
8
 
185
9
 
186
10
  class OtfListBase(BaseModel):
187
- model_config: ClassVar[ConfigDict] = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
11
+ model_config: ClassVar[ConfigDict] = ConfigDict(arbitrary_types_allowed=True, extra="allow")
188
12
  collection_field: ClassVar[str] = "data"
189
13
 
190
14
  @property
191
15
  def collection(self) -> list[OtfItemBase]:
192
16
  return getattr(self, self.collection_field)
193
17
 
194
- def to_table(self, columns: list[str]) -> Table:
195
- table = Table(expand=True, show_header=True, show_footer=False)
196
-
197
- table.add_column()
198
- for column in columns:
199
- table.add_column(OtfItemBase.attr_to_column_header(column))
200
-
201
- for item in self.collection:
202
- table.add_row(*item.to_row(columns))
203
-
204
- return table
205
-
206
18
  def to_json(self, **kwargs) -> str:
207
19
  kwargs.setdefault("indent", 4)
208
20
  kwargs.setdefault("exclude_none", True)
@@ -4,9 +4,6 @@ from typing import ClassVar
4
4
 
5
5
  from inflection import humanize
6
6
  from pydantic import Field
7
- from rich.style import Style
8
- from rich.styled import Styled
9
- from rich.table import Table
10
7
 
11
8
  from otf_api.models.base import OtfItemBase, OtfListBase
12
9
  from otf_api.models.responses.classes import OtfClassTimeMixin
@@ -223,82 +220,7 @@ class Booking(OtfItemBase):
223
220
  def id_val(self) -> str:
224
221
  return self.class_booking_id
225
222
 
226
- @property
227
- def sidebar_data(self) -> Table:
228
- data = {
229
- "date": self.otf_class.date,
230
- "class_name": self.otf_class.name,
231
- "description": self.otf_class.description,
232
- "class_id": self.id_val,
233
- "studio_address": self.otf_class.studio.studio_location.physical_address,
234
- "coach_name": self.otf_class.coach.name,
235
- }
236
-
237
- table = Table(expand=True, show_header=False, show_footer=False)
238
- table.add_column("Key", style="cyan", ratio=1)
239
- table.add_column("Value", style="magenta", ratio=2)
240
-
241
- for key, value in data.items():
242
- if value is False:
243
- table.add_row(key, Styled(str(value), style="red"))
244
- else:
245
- table.add_row(key, str(value))
246
-
247
- return table
248
-
249
- def get_style(self, is_selected: bool = False) -> Style:
250
- style = super().get_style(is_selected)
251
- if self.status == BookingStatus.Cancelled:
252
- style = Style(color="red")
253
- elif self.status == BookingStatus.Waitlisted:
254
- style = Style(color="yellow")
255
- elif self.status == BookingStatus.CheckedIn and is_selected:
256
- style = Style(color="blue", strike=True)
257
- elif self.status == BookingStatus.CheckedIn:
258
- style = Style(color="grey58")
259
-
260
- return style
261
-
262
- @classmethod
263
- def attr_to_column_header(cls, attr: str) -> str:
264
- if attr.startswith("otf_class"):
265
- return OtfClass.attr_to_column_header(attr.split(".")[-1])
266
-
267
- attr_map = {k: humanize(k) for k in cls.model_fields}
268
- overrides = {
269
- "day_of_week": "Class DoW",
270
- "date": "Class Date",
271
- "time": "Class Time",
272
- "duration": "Class Duration",
273
- "name": "Class Name",
274
- "is_home_studio": "Home Studio",
275
- "is_booked": "Booked",
276
- }
277
-
278
- attr_map.update(overrides)
279
-
280
- return attr_map.get(attr, attr)
281
-
282
223
 
283
224
  class BookingList(OtfListBase):
284
225
  collection_field: ClassVar[str] = "bookings"
285
226
  bookings: list[Booking]
286
-
287
- @staticmethod
288
- def show_bookings_columns() -> list[str]:
289
- return [
290
- "otf_class.day_of_week",
291
- "otf_class.date",
292
- "otf_class.time",
293
- "otf_class.duration",
294
- "otf_class.name",
295
- "status",
296
- "otf_class.studio.studio_name",
297
- "is_home_studio",
298
- ]
299
-
300
- def to_table(self, columns: list[str] | None = None) -> Table:
301
- if not columns:
302
- columns = self.show_bookings_columns()
303
-
304
- return super().to_table(columns)
@@ -3,11 +3,7 @@ from enum import Enum
3
3
  from typing import ClassVar
4
4
 
5
5
  from humanize import precisedelta
6
- from inflection import humanize
7
6
  from pydantic import Field
8
- from rich.style import Style
9
- from rich.styled import Styled
10
- from rich.table import Table
11
7
 
12
8
  from otf_api.models.base import OtfItemBase, OtfListBase
13
9
 
@@ -176,80 +172,7 @@ class OtfClass(OtfItemBase, OtfClassTimeMixin):
176
172
  dow = self.starts_at_local.strftime("%A")
177
173
  return DoW.get_case_insensitive(dow)
178
174
 
179
- @property
180
- def sidebar_data(self) -> Table:
181
- data = {
182
- "class_date": self.date,
183
- "class_time": self.time.strip(),
184
- "class_name": self.name,
185
- "class_id": self.id_val,
186
- "available": self.has_availability,
187
- "waitlist_available": self.waitlist_available,
188
- "studio_address": self.studio.address.line1,
189
- "coach_name": self.coach.first_name,
190
- "waitlist_size": self.waitlist_size,
191
- "max_capacity": self.max_capacity,
192
- }
193
-
194
- if not self.full:
195
- del data["waitlist_available"]
196
- del data["waitlist_size"]
197
-
198
- table = Table(expand=True, show_header=False, show_footer=False)
199
- table.add_column("Key", style="cyan", ratio=1)
200
- table.add_column("Value", style="magenta", ratio=2)
201
-
202
- for key, value in data.items():
203
- if value is False:
204
- table.add_row(key, Styled(str(value), style="red"))
205
- else:
206
- table.add_row(key, str(value))
207
-
208
- return table
209
-
210
- def get_style(self, is_selected: bool = False) -> Style:
211
- style = super().get_style(is_selected)
212
- if self.is_booked:
213
- style = Style(color="grey58")
214
- return style
215
-
216
- @classmethod
217
- def attr_to_column_header(cls, attr: str) -> str:
218
- attr_map = {k: humanize(k) for k in cls.model_fields}
219
- overrides = {
220
- "day_of_week": "Class DoW",
221
- "date": "Class Date",
222
- "time": "Class Time",
223
- "duration": "Class Duration",
224
- "name": "Class Name",
225
- "is_home_studio": "Home Studio",
226
- "is_booked": "Booked",
227
- }
228
-
229
- attr_map.update(overrides)
230
-
231
- return attr_map.get(attr, attr)
232
-
233
175
 
234
176
  class OtfClassList(OtfListBase):
235
177
  collection_field: ClassVar[str] = "classes"
236
178
  classes: list[OtfClass]
237
-
238
- @staticmethod
239
- def book_class_columns() -> list[str]:
240
- return [
241
- "day_of_week",
242
- "date",
243
- "time",
244
- "duration",
245
- "name",
246
- "studio.name",
247
- "is_home_studio",
248
- "is_booked",
249
- ]
250
-
251
- def to_table(self, columns: list[str] | None = None) -> Table:
252
- if not columns:
253
- columns = self.book_class_columns()
254
-
255
- return super().to_table(columns)
@@ -101,7 +101,7 @@ class MemberDetail(OtfItemBase):
101
101
  state: None
102
102
  postal_code: None = Field(..., alias="postalCode")
103
103
  phone_number: str = Field(..., alias="phoneNumber")
104
- home_phone: str = Field(..., alias="homePhone")
104
+ home_phone: str | None = Field(..., alias="homePhone")
105
105
  work_phone: None = Field(..., alias="workPhone")
106
106
  phone_type: None = Field(..., alias="phoneType")
107
107
  birth_day: date | str = Field(..., alias="birthDay")
@@ -34,6 +34,7 @@ class Class(OtfItemBase):
34
34
  ot_base_class_uuid: str | None = None
35
35
  starts_at_local: str
36
36
  name: str | None = None
37
+ type: str | None = None
37
38
  coach: Coach
38
39
  studio: Studio
39
40
 
@@ -25,6 +25,14 @@ class TreadData(OtfItemBase):
25
25
  agg_tread_distance: int = Field(..., alias="aggTreadDistance")
26
26
 
27
27
 
28
+ class RowData(OtfItemBase):
29
+ row_speed: float = Field(..., alias="rowSpeed")
30
+ row_pps: float = Field(..., alias="rowPps")
31
+ row_Spm: float = Field(..., alias="rowSpm")
32
+ agg_row_distance: int = Field(..., alias="aggRowDistance")
33
+ row_pace: int = Field(..., alias="rowPace")
34
+
35
+
28
36
  class TelemetryItem(OtfItemBase):
29
37
  relative_timestamp: int = Field(..., alias="relativeTimestamp")
30
38
  hr: int
@@ -36,6 +44,7 @@ class TelemetryItem(OtfItemBase):
36
44
  description="The timestamp of the telemetry item, calculated from the class start time and relative timestamp.",
37
45
  )
38
46
  tread_data: TreadData | None = Field(None, alias="treadData")
47
+ row_data: RowData | None = Field(None, alias="rowData")
39
48
 
40
49
 
41
50
  class Telemetry(OtfItemBase):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: otf-api
3
- Version: 0.5.0
3
+ Version: 0.6.1
4
4
  Summary: Python OrangeTheory Fitness API Client
5
5
  License: MIT
6
6
  Author: Jessica Smith
@@ -18,7 +18,7 @@ Classifier: Topic :: Internet :: WWW/HTTP
18
18
  Classifier: Topic :: Software Development :: Libraries
19
19
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
20
20
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
- Requires-Dist: aiohttp (==3.9.5)
21
+ Requires-Dist: aiohttp (==3.10.*)
22
22
  Requires-Dist: humanize (>=4.9.0,<5.0.0)
23
23
  Requires-Dist: inflection (==0.5.*)
24
24
  Requires-Dist: loguru (==0.7.2)
@@ -26,16 +26,13 @@ Requires-Dist: pendulum (>=3.0.0,<4.0.0)
26
26
  Requires-Dist: pint (==0.24.*)
27
27
  Requires-Dist: pycognito (==2024.5.1)
28
28
  Requires-Dist: pydantic (==2.7.3)
29
- Requires-Dist: python-box (>=7.2.0,<8.0.0)
30
- Requires-Dist: readchar (>=4.1.0,<5.0.0)
31
- Requires-Dist: typer (>=0.12.3,<0.13.0)
32
29
  Project-URL: Documentation, https://otf-api.readthedocs.io/en/stable/
33
30
  Description-Content-Type: text/markdown
34
31
 
35
32
  Simple API client for interacting with the OrangeTheory Fitness APIs.
36
33
 
37
34
 
38
- This library allows access to the OrangeTheory API to retrieve workouts and performance data, class schedules, studio information, and bookings. It is a work in progress, currently only allowing access to GET calls, but my goal is to expand it to include POST, PUT, and DELETE calls as well.
35
+ This library allows access to the OrangeTheory API to retrieve workouts and performance data, class schedules, studio information, and bookings.
39
36
 
40
37
  ## Installation
41
38
  ```bash
@@ -1,41 +1,35 @@
1
- otf_api/__init__.py,sha256=Co48iPZnr9aWJ_ZXqQwnCvhd1kwgn_wGyPiFWMr5eGs,237
1
+ otf_api/__init__.py,sha256=-EBFAulRLsnoEbSE-S6B2s6VI9Oat7KW1a7p6qpfou4,237
2
2
  otf_api/api.py,sha256=QlRHXDwzbB97aCfacb_9FVox-5AuPLMweRQAZkz-EE0,34885
3
3
  otf_api/auth.py,sha256=XzwLSi5M3DyG7bE7DmWAzXF2y6fkJyAZxHUA9lpW25M,10231
4
- otf_api/cli/__init__.py,sha256=WI-882LPH7Tj_ygDHqE5ehsas_u7m3ulsplS9vXKByk,151
5
- otf_api/cli/_utilities.py,sha256=epjEO9S6ag4HgJLXlTpCQXfdVQkqGWyNavp7DjwPL78,1753
6
- otf_api/cli/app.py,sha256=88TuMwq3foRr1Cui0V3h0mxNkoANqd6QQifI9CIgLvI,6469
7
- otf_api/cli/bookings.py,sha256=wSmZA-03etcL6Tvb1vDSvHZW8EA9CZUgKX6W1pps3Yw,8161
8
- otf_api/cli/prompts.py,sha256=iyodQXVa5v9VsrMxw0ob1okGRBDbWCSxhrNEylsOTEQ,5358
9
4
  otf_api/models/__init__.py,sha256=3GHBOirQA4yu06cgD9pYmCU8u8_F9nxNHeSXDuFpe5A,1428
10
- otf_api/models/base.py,sha256=oTDxyliK64GyTNx1bGTd-b9dfVn0r3YPpSycs2qEuIw,7285
5
+ otf_api/models/base.py,sha256=gsMf3XGKqc68CRC-Mp3ARdnXKCpbWWGttZ8pfUwuEu0,664
11
6
  otf_api/models/responses/__init__.py,sha256=xxwz-JwRd0upmI0VNdvInbAm2FOQvPo3pS0SEhWfkI4,1947
12
7
  otf_api/models/responses/body_composition_list.py,sha256=RTC5bQpmMDUKqFl0nGFExdDxfnbOAGoBLWunjpOym80,12193
13
8
  otf_api/models/responses/book_class.py,sha256=bWURKEjLZWPzwu3HNP2zUmHWo7q7h6_z43a9KTST0Ec,15413
14
- otf_api/models/responses/bookings.py,sha256=0oQxdKTK-k30GVDKiVxTh0vvPTbrw78sqpQpYL7JnJU,11058
9
+ otf_api/models/responses/bookings.py,sha256=XwW6blHpw9imtXRnQJYahUgfrAeOcGZqfYE-oJZ8510,8467
15
10
  otf_api/models/responses/cancel_booking.py,sha256=dmC5OP97Dy4qYT0l1KHYIitqSCo6M6Yqa0QztjgG_xQ,3859
16
11
  otf_api/models/responses/challenge_tracker_content.py,sha256=KKpSWyyg3viN0vf1Sg2zTMlMZExLe3I6wowmUPWvRCA,1423
17
12
  otf_api/models/responses/challenge_tracker_detail.py,sha256=o0y_ETfHmR1QhoOmvd83P6lfMZUPIwPlnS1V_po0dkE,3048
18
- otf_api/models/responses/classes.py,sha256=wmFMcFT-VLqOFB65pApffNPH6VFS150CEKHMq2MblI4,7090
13
+ otf_api/models/responses/classes.py,sha256=VxesbFyfRhohwkjiclqTtMPl8bNc5PJajveTHtDBQ2A,4731
19
14
  otf_api/models/responses/enums.py,sha256=Au8XhD-4T8ljiueUykFDc6Qz7kOoTlJ_kiDEx7nLVLM,1191
20
15
  otf_api/models/responses/favorite_studios.py,sha256=C5JSyiNijm6HQEBVrV9vPfZexSWQ1IlN0E3Ag0GeP_0,4982
21
16
  otf_api/models/responses/latest_agreement.py,sha256=aE8hbWE4Pgguw4Itah7a1SqwOLpJ6t9oODFwLQ8Wzo0,774
22
17
  otf_api/models/responses/lifetime_stats.py,sha256=3nWjXJoIcTV_R-Q-3SXo63Uj2xjkFtNXmzj_jPcZPyo,3339
23
- otf_api/models/responses/member_detail.py,sha256=WG_GjS_7mZQ72d5rgu7e1dc3e4fVaR5HRlxFtbJfct8,6024
18
+ otf_api/models/responses/member_detail.py,sha256=qgP_gaiIi6Jr5SI7RSrj8l9p6aCbVK0fJX2LgI5Gazk,6031
24
19
  otf_api/models/responses/member_membership.py,sha256=_z301T9DrdQW9vIgnx_LeZmkRhvMVhkxrn_v6DDfCUk,995
25
20
  otf_api/models/responses/member_purchases.py,sha256=JoTk3hYjsq4rXogVivZxeFaM-j3gIChmIAGVldOU7rE,6085
26
21
  otf_api/models/responses/out_of_studio_workout_history.py,sha256=FwdnmTgFrMtQ8PngsmCv3UroWj3kDnQg6KfGLievoaU,1709
27
22
  otf_api/models/responses/performance_summary_detail.py,sha256=H5yWxGShR4uiXvY2OaniENburTGM7DKQjN7gvF3MG6g,1585
28
- otf_api/models/responses/performance_summary_list.py,sha256=R__tsXGz5tVX5gfoRoVUNK4UP2pXRoK5jdSyHABsDXs,1234
23
+ otf_api/models/responses/performance_summary_list.py,sha256=z1W1b7rOZ9HESgRL9P_krd7MSGaMASxCVr3EpYOLBvE,1262
29
24
  otf_api/models/responses/studio_detail.py,sha256=CJBCsi4SMs_W5nrWE4hfCs1ugJ5t7GrH80hTv7Ie3eg,5007
30
25
  otf_api/models/responses/studio_services.py,sha256=mFDClPtU0HCk5fb19gjGKpt2F8n8kto7sj1pE_l4RdQ,1836
31
- otf_api/models/responses/telemetry.py,sha256=8dl8FKLeyb6jtqsZT7XD4JzXBMLlami448-Jt0tFbSY,1663
26
+ otf_api/models/responses/telemetry.py,sha256=MTI9fV9LniWU73xRfV_ZcdQeaeDLuaYMcQgL239lEAI,2012
32
27
  otf_api/models/responses/telemetry_hr_history.py,sha256=vDcLb4wTHVBw8O0mGblUujHfJegkflOCWW-bnTXNCI0,763
33
28
  otf_api/models/responses/telemetry_max_hr.py,sha256=xKxH0fIlOqFyZv8UW98XsxF-GMoIs9gnCTAbu88ZQtg,266
34
29
  otf_api/models/responses/total_classes.py,sha256=WrKkWbq0eK8J0RC4qhZ5kmXnv_ZTDbyzsoRm7XKGlss,288
35
30
  otf_api/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- otf_api-0.5.0.dist-info/AUTHORS.md,sha256=FcNWMxpe8KDuTq4Qau0SUXsabQwGs9TGnMp1WkXRnj8,123
37
- otf_api-0.5.0.dist-info/LICENSE,sha256=UaPT9ynYigC3nX8n22_rC37n-qmTRKLFaHrtUwF9ktE,1071
38
- otf_api-0.5.0.dist-info/METADATA,sha256=wE1IJvQLG8KVsIiQJjRoIz80amFtCv5zezo4j4tPqEg,2259
39
- otf_api-0.5.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
40
- otf_api-0.5.0.dist-info/entry_points.txt,sha256=V2jhhfsUo3DeF0CA9HmKrMnvSoOldn9ShIzbApbeHTY,44
41
- otf_api-0.5.0.dist-info/RECORD,,
31
+ otf_api-0.6.1.dist-info/AUTHORS.md,sha256=FcNWMxpe8KDuTq4Qau0SUXsabQwGs9TGnMp1WkXRnj8,123
32
+ otf_api-0.6.1.dist-info/LICENSE,sha256=UaPT9ynYigC3nX8n22_rC37n-qmTRKLFaHrtUwF9ktE,1071
33
+ otf_api-0.6.1.dist-info/METADATA,sha256=A9Afi7GJdLWBRCN-0lZ_OV5AHm0RfDos1kd8Nr0n2eo,1989
34
+ otf_api-0.6.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
35
+ otf_api-0.6.1.dist-info/RECORD,,
otf_api/cli/__init__.py DELETED
@@ -1,4 +0,0 @@
1
- from otf_api.cli.app import base_app
2
- from otf_api.cli.bookings import bookings_app, classes_app
3
-
4
- __all__ = ["base_app", "bookings_app", "classes_app"]
otf_api/cli/_utilities.py DELETED
@@ -1,60 +0,0 @@
1
- import functools
2
- import inspect
3
- import traceback
4
- from collections.abc import Awaitable, Callable
5
- from typing import Any, NoReturn, ParamSpec, TypeGuard, TypeVar
6
-
7
- import typer
8
- from click.exceptions import ClickException
9
-
10
- T = TypeVar("T")
11
- P = ParamSpec("P")
12
- R = TypeVar("R")
13
-
14
-
15
- def is_async_fn(func: Callable[P, R] | Callable[P, Awaitable[R]]) -> TypeGuard[Callable[P, Awaitable[R]]]:
16
- """
17
- Returns `True` if a function returns a coroutine.
18
-
19
- See https://github.com/microsoft/pyright/issues/2142 for an example use
20
- """
21
- while hasattr(func, "__wrapped__"):
22
- func = func.__wrapped__
23
-
24
- return inspect.iscoroutinefunction(func)
25
-
26
-
27
- def exit_with_error(message: Any, code: int = 1, **kwargs: Any) -> NoReturn:
28
- """
29
- Utility to print a stylized error message and exit with a non-zero code
30
- """
31
- from otf_api.cli.app import base_app
32
-
33
- kwargs.setdefault("style", "red")
34
- base_app.console.print(message, **kwargs)
35
- raise typer.Exit(code)
36
-
37
-
38
- def exit_with_success(message: Any, **kwargs: Any) -> NoReturn:
39
- """
40
- Utility to print a stylized success message and exit with a zero code
41
- """
42
- from otf_api.cli.app import base_app
43
-
44
- kwargs.setdefault("style", "green")
45
- base_app.console.print(message, **kwargs)
46
- raise typer.Exit(0)
47
-
48
-
49
- def with_cli_exception_handling(fn: Callable[[Any], Any]) -> Callable[[Any], Any]:
50
- @functools.wraps(fn)
51
- def wrapper(*args: Any, **kwargs: Any) -> Any | None:
52
- try:
53
- return fn(*args, **kwargs)
54
- except (typer.Exit, typer.Abort, ClickException):
55
- raise # Do not capture click or typer exceptions
56
- except Exception:
57
- traceback.print_exc()
58
- exit_with_error("An exception occurred.")
59
-
60
- return wrapper
otf_api/cli/app.py DELETED
@@ -1,172 +0,0 @@
1
- import asyncio
2
- import functools
3
- import sys
4
- import typing
5
- from collections.abc import Callable
6
- from enum import Enum
7
-
8
- import typer
9
- from loguru import logger
10
- from rich.console import Console
11
- from rich.theme import Theme
12
-
13
- import otf_api
14
- from otf_api.cli._utilities import is_async_fn, with_cli_exception_handling
15
-
16
- if typing.TYPE_CHECKING:
17
- from otf_api import Otf
18
-
19
-
20
- class OutputType(str, Enum):
21
- json = "json"
22
- table = "table"
23
- interactive = "interactive"
24
-
25
-
26
- def version_callback(value: bool) -> None:
27
- if value:
28
- print(otf_api.__version__)
29
- raise typer.Exit()
30
-
31
-
32
- OPT_USERNAME: str = typer.Option(None, envvar=["OTF_EMAIL", "OTF_USERNAME"], help="Username for the OTF API")
33
- OPT_PASSWORD: str = typer.Option(envvar="OTF_PASSWORD", help="Password for the OTF API", hide_input=True)
34
- OPT_OUTPUT: OutputType = typer.Option(None, envvar="OTF_OUTPUT", show_default=False, help="Output format")
35
- OPT_LOG_LEVEL: str = typer.Option("CRITICAL", help="Log level", envvar="OTF_LOG_LEVEL")
36
- OPT_VERSION: bool = typer.Option(
37
- None, "--version", callback=version_callback, help="Display the current version.", is_eager=True
38
- )
39
-
40
-
41
- def register_main_callback(app: "AsyncTyper") -> None:
42
- @app.callback() # type: ignore
43
- @with_cli_exception_handling
44
- def main_callback(
45
- ctx: typer.Context, # noqa
46
- version: bool = OPT_VERSION, # noqa
47
- username: str = OPT_USERNAME,
48
- password: str = OPT_PASSWORD,
49
- output: OutputType = OPT_OUTPUT,
50
- log_level: str = OPT_LOG_LEVEL,
51
- ) -> None:
52
- app.setup_console()
53
- app.set_username(username)
54
- app.password = password
55
- app.output = output or OutputType.table
56
- app.set_log_level(log_level)
57
-
58
- # When running on Windows we need to ensure that the correct event loop policy is
59
- # in place or we will not be able to spawn subprocesses. Sometimes this policy is
60
- # changed by other libraries, but here in our CLI we should have ownership of the
61
- # process and be able to safely force it to be the correct policy.
62
- # https://github.com/PrefectHQ/prefect/issues/8206
63
- if sys.platform == "win32":
64
- asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy())
65
-
66
-
67
- class AsyncTyper(typer.Typer):
68
- """
69
- Wraps commands created by `Typer` to support async functions and handle errors.
70
- """
71
-
72
- console: Console
73
-
74
- def __init__(self, *args: typing.Any, **kwargs: typing.Any):
75
- super().__init__(*args, **kwargs)
76
-
77
- theme = Theme({"prompt.choices": "bold blue"})
78
- self.console = Console(highlight=False, theme=theme, color_system="auto")
79
-
80
- # TODO: clean these up later, just don't want warnings everywhere that these could be None
81
- self.api: Otf = None # type: ignore
82
- self.username: str = None # type: ignore
83
- self.password: str = None # type: ignore
84
- self.output: OutputType = None # type: ignore
85
- self.logger = logger
86
- self.log_level = "CRITICAL"
87
-
88
- def set_username(self, username: str | None = None) -> None:
89
- if username:
90
- self.username = username
91
- return
92
-
93
- raise ValueError("Username not provided and not found in cache")
94
-
95
- def set_log_level(self, level: str) -> None:
96
- self.log_level = level
97
- logger.remove()
98
- logger.add(sys.stderr, level=self.log_level.upper())
99
-
100
- def print(self, *args: typing.Any, **kwargs: typing.Any) -> None:
101
- if self.output == "json":
102
- self.console.print_json(*args, **kwargs)
103
- else:
104
- self.console.print(*args, **kwargs)
105
-
106
- def add_typer(
107
- self, typer_instance: "AsyncTyper", *args: typing.Any, aliases: list[str] | None = None, **kwargs: typing.Any
108
- ) -> typing.Any:
109
- aliases = aliases or []
110
- for alias in aliases:
111
- super().add_typer(typer_instance, *args, name=alias, no_args_is_help=True, hidden=True, **kwargs)
112
-
113
- return super().add_typer(typer_instance, *args, no_args_is_help=True, **kwargs)
114
-
115
- def command(
116
- self, name: str | None = None, *args: typing.Any, aliases: list[str] | None = None, **kwargs: typing.Any
117
- ) -> Callable[[typing.Any], typing.Any]:
118
- """
119
- Create a new command. If aliases are provided, the same command function
120
- will be registered with multiple names.
121
- """
122
-
123
- aliases = aliases or []
124
-
125
- def wrapper(fn: Callable[[typing.Any], typing.Any]) -> Callable[[typing.Any], typing.Any]:
126
- # click doesn't support async functions, so we wrap them in
127
- # asyncio.run(). This has the advantage of keeping the function in
128
- # the main thread, which means signal handling works for e.g. the
129
- # server and workers. However, it means that async CLI commands can
130
- # not directly call other async CLI commands (because asyncio.run()
131
- # can not be called nested). In that (rare) circumstance, refactor
132
- # the CLI command so its business logic can be invoked separately
133
- # from its entrypoint.
134
- if is_async_fn(fn):
135
- _fn = fn
136
-
137
- @functools.wraps(fn)
138
- def fn(*args: typing.Any, **kwargs: typing.Any) -> typing.Any:
139
- return asyncio.run(_fn(*args, **kwargs)) # type: ignore
140
-
141
- fn.aio = _fn # type: ignore
142
-
143
- fn = with_cli_exception_handling(fn)
144
-
145
- # register fn with its original name
146
- command_decorator = super(AsyncTyper, self).command(name=name, *args, **kwargs)
147
- original_command = command_decorator(fn)
148
-
149
- # register fn for each alias, e.g. @marvin_app.command(aliases=["r"])
150
- for alias in aliases:
151
- super(AsyncTyper, self).command(
152
- name=alias,
153
- *args,
154
- **{k: v for k, v in kwargs.items() if k != "aliases"},
155
- )(fn)
156
-
157
- return typing.cast(Callable[[typing.Any], typing.Any], original_command)
158
-
159
- return wrapper
160
-
161
- def setup_console(self, soft_wrap: bool = True, prompt: bool = True) -> None:
162
- self.console = Console(
163
- highlight=False,
164
- color_system="auto",
165
- theme=Theme({"prompt.choices": "bold blue"}),
166
- soft_wrap=not soft_wrap,
167
- force_interactive=prompt,
168
- )
169
-
170
-
171
- base_app = AsyncTyper(add_completion=True, no_args_is_help=True)
172
- register_main_callback(base_app)
otf_api/cli/bookings.py DELETED
@@ -1,231 +0,0 @@
1
- from enum import Enum
2
-
3
- import pendulum
4
- import typer
5
- from loguru import logger
6
-
7
- import otf_api
8
- from otf_api.cli.app import OPT_OUTPUT, AsyncTyper, OutputType, base_app
9
- from otf_api.cli.prompts import prompt_select_from_table
10
- from otf_api.models.responses.bookings import BookingStatus
11
- from otf_api.models.responses.classes import ClassType, ClassTypeCli, DoW
12
-
13
- flipped_status = {item.value: item.name for item in BookingStatus}
14
- FlippedEnum = Enum("CliBookingStatus", flipped_status) # type: ignore
15
-
16
-
17
- bookings_app = AsyncTyper(name="bookings", help="Get bookings data")
18
- classes_app = AsyncTyper(name="classes", help="Get classes data")
19
- base_app.add_typer(bookings_app, aliases=["booking"])
20
- base_app.add_typer(classes_app, aliases=["class"])
21
-
22
-
23
- def today() -> str:
24
- val: str = pendulum.yesterday().date().to_date_string()
25
- return val
26
-
27
-
28
- def next_month() -> str:
29
- val: str = pendulum.now().add(months=1).date().to_date_string()
30
- return val
31
-
32
-
33
- @bookings_app.command(name="list")
34
- async def list_bookings(
35
- start_date: str = typer.Option(default_factory=today, help="Start date for bookings"),
36
- end_date: str = typer.Option(default_factory=next_month, help="End date for bookings"),
37
- status: FlippedEnum = typer.Option(None, case_sensitive=False, help="Booking status"),
38
- limit: int = typer.Option(None, help="Limit the number of bookings returned"),
39
- exclude_cancelled: bool = typer.Option(
40
- True, "--exclude-cancelled/--include-cancelled", help="Exclude cancelled bookings", show_default=True
41
- ),
42
- exclude_none: bool = typer.Option(
43
- True, "--exclude-none/--allow-none", help="Exclude fields with a value of None", show_default=True
44
- ),
45
- output: OutputType = OPT_OUTPUT,
46
- ) -> None:
47
- """
48
- List bookings data
49
- """
50
-
51
- logger.info("Listing bookings data")
52
-
53
- if output:
54
- base_app.output = output
55
-
56
- bk_status = BookingStatus.get_from_key_insensitive(status.value) if status else None
57
-
58
- if not base_app.api:
59
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
60
- bookings = await base_app.api.get_bookings(start_date, end_date, bk_status, limit, exclude_cancelled)
61
-
62
- if base_app.output == "json":
63
- base_app.print(bookings.to_json(exclude_none=exclude_none))
64
- elif base_app.output == "table":
65
- base_app.print(bookings.to_table())
66
- elif base_app.output == "interactive":
67
- result = prompt_select_from_table(
68
- console=base_app.console,
69
- prompt="Select a booking",
70
- columns=bookings.show_bookings_columns(),
71
- data=bookings.bookings,
72
- )
73
- print(result)
74
-
75
-
76
- @bookings_app.command()
77
- async def book(class_uuid: str = typer.Option(help="Class UUID to cancel")) -> None:
78
- """
79
- Book a class
80
- """
81
-
82
- logger.info(f"Booking class {class_uuid}")
83
-
84
- if not base_app.api:
85
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
86
- booking = await base_app.api.book_class(class_uuid)
87
-
88
- base_app.console.print(booking)
89
-
90
-
91
- @bookings_app.command()
92
- async def book_interactive(
93
- studio_uuids: list[str] = typer.Option(None, help="Studio UUIDs to get classes for"),
94
- include_home_studio: bool = typer.Option(True, help="Include the home studio in the classes"),
95
- start_date: str = typer.Option(default_factory=today, help="Start date for classes"),
96
- end_date: str = typer.Option(None, help="End date for classes"),
97
- limit: int = typer.Option(None, help="Limit the number of classes returned"),
98
- class_type: list[ClassTypeCli] = typer.Option(None, help="Class type to filter by"),
99
- day_of_week: list[DoW] = typer.Option(None, help="Days of the week to filter by"),
100
- exclude_cancelled: bool = typer.Option(
101
- True, "--exclude-cancelled/--allow-cancelled", help="Exclude cancelled classes", show_default=True
102
- ),
103
- start_time: list[str] = typer.Option(None, help="Start time for classes"),
104
- ) -> None:
105
- """
106
- Book a class interactively
107
- """
108
-
109
- logger.info("Booking class interactively")
110
-
111
- with base_app.console.status("Getting classes...", spinner="arc"):
112
- if class_type:
113
- class_type_enums = [ClassType.get_from_key_insensitive(class_type.value) for class_type in class_type]
114
- else:
115
- class_type_enums = None
116
-
117
- if not base_app.api:
118
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
119
-
120
- classes = await base_app.api.get_classes(
121
- studio_uuids,
122
- include_home_studio,
123
- start_date,
124
- end_date,
125
- limit,
126
- class_type_enums,
127
- exclude_cancelled,
128
- day_of_week,
129
- start_time,
130
- )
131
-
132
- result = prompt_select_from_table(
133
- console=base_app.console,
134
- prompt="Book a class, any class",
135
- columns=classes.book_class_columns(),
136
- data=classes.classes,
137
- )
138
-
139
- print(result["ot_class_uuid"])
140
- booking = await base_app.api.book_class(result["ot_class_uuid"])
141
-
142
- base_app.console.print(booking)
143
-
144
-
145
- @bookings_app.command()
146
- async def cancel_interactive() -> None:
147
- """
148
- Cancel a booking interactively
149
- """
150
-
151
- logger.info("Cancelling booking interactively")
152
-
153
- with base_app.console.status("Getting bookings...", spinner="arc"):
154
- if not base_app.api:
155
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
156
- bookings = await base_app.api.get_bookings()
157
-
158
- result = prompt_select_from_table(
159
- console=base_app.console,
160
- prompt="Cancel a booking, any booking",
161
- columns=bookings.show_bookings_columns(),
162
- data=bookings.bookings,
163
- )
164
-
165
- print(result["class_booking_uuid"])
166
- booking = await base_app.api.cancel_booking(result["class_booking_uuid"])
167
-
168
- base_app.console.print(booking)
169
-
170
-
171
- @bookings_app.command()
172
- async def cancel(booking_uuid: str = typer.Option(help="Booking UUID to cancel")) -> None:
173
- """
174
- Cancel a booking
175
- """
176
-
177
- logger.info(f"Cancelling booking {booking_uuid}")
178
-
179
- if not base_app.api:
180
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
181
- booking = await base_app.api.cancel_booking(booking_uuid)
182
-
183
- base_app.console.print(booking)
184
-
185
-
186
- @classes_app.command(name="list")
187
- async def list_classes(
188
- studio_uuids: list[str] = typer.Option(None, help="Studio UUIDs to get classes for"),
189
- include_home_studio: bool = typer.Option(True, help="Include the home studio in the classes"),
190
- start_date: str = typer.Option(default_factory=today, help="Start date for classes"),
191
- end_date: str = typer.Option(default_factory=next_month, help="End date for classes"),
192
- limit: int = typer.Option(None, help="Limit the number of classes returned"),
193
- class_type: ClassTypeCli = typer.Option(None, help="Class type to filter by"),
194
- exclude_cancelled: bool = typer.Option(
195
- True, "--exclude-cancelled/--allow-cancelled", help="Exclude cancelled classes", show_default=True
196
- ),
197
- exclude_none: bool = typer.Option(
198
- True, "--exclude-none/--allow-none", help="Exclude fields with a value of None", show_default=True
199
- ),
200
- output: OutputType = OPT_OUTPUT,
201
- ) -> None:
202
- """
203
- List classes data
204
- """
205
-
206
- logger.info("Listing classes")
207
-
208
- if output:
209
- base_app.output = output
210
-
211
- class_type_enum = ClassType.get_from_key_insensitive(class_type.value) if class_type else None
212
-
213
- if not base_app.api:
214
- base_app.api = await otf_api.Otf.create(base_app.username, base_app.password)
215
- classes = await base_app.api.get_classes(
216
- studio_uuids, include_home_studio, start_date, end_date, limit, class_type_enum, exclude_cancelled
217
- )
218
-
219
- if base_app.output == "json":
220
- base_app.print(classes.to_json(exclude_none=exclude_none))
221
- elif base_app.output == "table":
222
- base_app.print(classes.to_table())
223
- else:
224
- result = prompt_select_from_table(
225
- console=base_app.console,
226
- prompt="Book a class, any class",
227
- columns=classes.book_class_columns(),
228
- data=classes.classes,
229
- )
230
- print(type(result))
231
- print(result)
otf_api/cli/prompts.py DELETED
@@ -1,162 +0,0 @@
1
- import os
2
- import typing
3
-
4
- import readchar
5
- from rich.layout import Layout
6
- from rich.live import Live
7
- from rich.panel import Panel
8
- from rich.prompt import Confirm, Prompt
9
- from rich.table import Table
10
-
11
- from otf_api.cli._utilities import exit_with_error
12
- from otf_api.models.base import T
13
-
14
- if typing.TYPE_CHECKING:
15
- from rich.console import Console
16
-
17
-
18
- def prompt(message, **kwargs):
19
- """Utility to prompt the user for input with consistent styling"""
20
- return Prompt.ask(f"[bold][green]?[/] {message}[/]", **kwargs)
21
-
22
-
23
- def confirm(message, **kwargs):
24
- """Utility to prompt the user for confirmation with consistent styling"""
25
- return Confirm.ask(f"[bold][green]?[/] {message}[/]", **kwargs)
26
-
27
-
28
- def prompt_select_from_table(
29
- console: "Console",
30
- prompt: str,
31
- columns: list[str],
32
- data: list[T],
33
- table_kwargs: dict | None = None,
34
- ) -> dict:
35
- """
36
- Given a list of columns and some data, display options to user in a table
37
- and prompt them to select one.
38
-
39
- Args:
40
- prompt: A prompt to display to the user before the table.
41
- columns: A list of strings that represent the attributes of the data to display.
42
- data: A list of dicts with keys corresponding to the `key` values in
43
- the `columns` argument.
44
- table_kwargs: Additional kwargs to pass to the `rich.Table` constructor.
45
- Returns:
46
- dict: Data representation of the selected row
47
- """
48
- current_idx = 0
49
- selected_row = None
50
- table_kwargs = table_kwargs or {}
51
- layout = Layout()
52
-
53
- if not data:
54
- exit_with_error("No data to display")
55
-
56
- MODEL_TYPE = type(data[0])
57
-
58
- TABLE_PANEL = Layout(name="left")
59
- DATA_PANEL = Layout(name="right")
60
-
61
- layout.split_row(TABLE_PANEL, DATA_PANEL)
62
-
63
- TABLE_PANEL.ratio = 7
64
- DATA_PANEL.ratio = 3
65
- DATA_PANEL.minimum_size = 50
66
-
67
- n_rows = os.get_terminal_size()[1] - 5
68
-
69
- def build_table() -> Layout:
70
- """
71
- Generate a table of options. The `current_idx` will be highlighted.
72
- """
73
-
74
- table = initialize_table()
75
- rows = data.copy()
76
- rows, offset = paginate_rows(rows)
77
- selected_item = add_rows_to_table(table, rows, offset)
78
-
79
- finalize_table(table, prompt, selected_item)
80
-
81
- return layout
82
-
83
- def initialize_table() -> Table:
84
- table_kwargs.setdefault("expand", True)
85
- table = Table(**table_kwargs)
86
- table.add_column()
87
- for column in columns:
88
- table.add_column(MODEL_TYPE.attr_to_column_header(column))
89
- return table
90
-
91
- def paginate_rows(rows: list[T]) -> tuple[list[T], int]:
92
- if len(rows) > n_rows:
93
- start = max(0, current_idx - n_rows + 1)
94
- end = min(len(rows), start + n_rows)
95
- rows = rows[start:end]
96
- offset = start
97
- else:
98
- offset = 0
99
- return rows, offset
100
-
101
- def add_rows_to_table(table: Table, rows: list[T], offset: int) -> T:
102
- selected_item: T = None
103
- for i, item in enumerate(rows):
104
- idx_with_offset = i + offset
105
- is_selected_row = idx_with_offset == current_idx
106
- if is_selected_row:
107
- selected_item = item
108
- table.add_row(*item.to_row(columns, is_selected_row))
109
- return selected_item
110
-
111
- def finalize_table(table: Table, prompt: str, selected_item: T) -> None:
112
- if table.row_count < n_rows:
113
- for _ in range(n_rows - table.row_count):
114
- table.add_row()
115
-
116
- TABLE_PANEL.update(Panel(table, title=prompt))
117
- DATA_PANEL.update(Panel("", title="Selected Data"))
118
- if not selected_item:
119
- DATA_PANEL.visible = False
120
- elif selected_item.sidebar_data is not None:
121
- sidebar_data = selected_item.sidebar_data
122
- DATA_PANEL.update(sidebar_data)
123
- DATA_PANEL.visible = True
124
-
125
- with Live(build_table(), console=console, transient=True) as live:
126
- instructions_message = f"[bold][green]?[/] {prompt} [bright_blue][Use arrows to move; enter to select]"
127
- live.console.print(instructions_message)
128
- while selected_row is None:
129
- key = readchar.readkey()
130
-
131
- start_val = 0
132
- offset = 0
133
-
134
- match key:
135
- case readchar.key.UP:
136
- offset = -1
137
- start_val = len(data) - 1 if current_idx < 0 else current_idx
138
- case readchar.key.PAGE_UP:
139
- offset = -5
140
- start_val = len(data) - 1 if current_idx < 0 else current_idx
141
- case readchar.key.DOWN:
142
- offset = 1
143
- start_val = 0 if current_idx >= len(data) else current_idx
144
- case readchar.key.PAGE_DOWN:
145
- offset = 5
146
- start_val = 0 if current_idx >= len(data) else current_idx
147
- case readchar.key.CTRL_C:
148
- # gracefully exit with no message
149
- exit_with_error("")
150
- case readchar.key.ENTER | readchar.key.CR:
151
- selected_row = data[current_idx]
152
-
153
- current_idx = start_val + offset
154
-
155
- if current_idx < 0:
156
- current_idx = len(data) - 1
157
- elif current_idx >= len(data):
158
- current_idx = 0
159
-
160
- live.update(build_table(), refresh=True)
161
-
162
- return selected_row
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- otf=otf_api.cli:base_app
3
-