-
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Description:
The platform currently fetches the latest sequences from the API using the following code:
response = api_client.fetch_latest_sequences()
api_sequences = pd.DataFrame(response.json())However, started_at is returned in UTC (UTC+0) and needs to be filtered to retain only alerts from today based on the local time zone.
Expected Behavior:
- Convert
started_atfrom UTC to the local time zone. - Filter
api_sequencesto keep only sequences wherestarted_atfalls within today’s date in the local time zone.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers