50Bytes-dev
50Bytes-dev
```python class Item(SQLModel, table=True): id: Optional[int] = Field(default=None, primary_key=True) value: float hero_id: int = Field(foreign_key="hero.id") hero: "Hero" = Relationship(back_populates="items") class Hero(SQLModel, table=True): id: Optional[int] = Field(default=None, primary_key=True) name: str items:...
I was inspired by streamlit library, it has session_state, which is very convenient for me. I made something similar. ```python # main.py import flet as ft from .utils import test_global_context,...
This PR adds `root_flow_run_id` variable to `prefect.runtime.flow_run`. ### Example ```python from prefect import flow from prefect import runtime @flow(log_prints=True) def root_flow(x): child_flow() @flow def child_flow(): deep_flow() @flow def deep_flow(): print("Root...
I need to record using the **startAudioRecording()** method without a speaker device. Found in the official documentation https://docs.agora.io/en/Voice/raw_data_audio_windows?platform=Windows But your methods from the documentation are not implemented, or I did...
How about replacing Celery with Prefect? I find Prefect more suitable for this build and it is in many ways more convenient than Celery. At least Prefect supports asyncio
Specifies whether to display "other month" days in each month to display a fixed number of weeks in the month (6 weeks)