
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
tscat
Advanced tools
A library which stores, loads and filters time-series-events and associates them catalogues and dynamic catalogues (filter-based).
You can install the package using pip:
pip install tscat
You can also install the package from source:
git clone https://github.com/SciQLop/tscat
cd tscat
pip install -e .
Let's create a simple catalogue with some events and save it:
from tscat import create_catalogue, create_event, add_events_to_catalogue, save
from datetime import datetime
# Create a catalogue
catalogue = create_catalogue("my_catalogue", author="John Doe", description="A sample catalogue", tags=["example", "sample"])
# Create some events
events = [
create_event(start=datetime(2023, 1, 1), stop=datetime(2023, 1, 2), author="Alice", tags=["tag1", "tag2"]),
create_event(start=datetime(2023, 1, 3), stop=datetime(2023, 1, 4), author="Bob", tags=["tag3"], some_custom_attribute="value1"),
]
# Add events to the catalogue
add_events_to_catalogue(catalogue, events)
# Save changes to the catalogue database
save()
Let's create a catalogue from a pandas DataFrame:
import pandas as pd
from tscat import create_catalogue, create_event, add_events_to_catalogue, save
# Let's fetch some catalogue on GitHub
df = pd.read_pickle("https://helioforecast.space/static/sync/icmecat/HELIO4CAST_ICMECAT_v23_pandas.p")[0]
# Create events from the DataFrame
events = [
create_event(
start=row['mo_start_time'],
stop=row['mo_end_time'],
author="Christian Möstl",
tags=["HELIO4CAST", "ICMECAT"],
**{k: v for k, v in row.items() if k not in ['mo_start_time', 'mo_end_time']}
)
for _, row in df.iterrows()
]
# Create a catalogue from the DataFrame
catalogue = create_catalogue("icmecat", author="Christian Möstl", description="HELIO4CAST ICMECAT catalogue", tags=["HELIO4CAST", "ICMECAT"], events=events)
# save the catalogue
save()
FAQs
A library which stores, loads and filters time-series-events and catalogues.
We found that tscat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.