text stringlengths 185 73.3k | repo stringlengths 7 100 | path stringlengths 4 146 | language stringclasses 7
values | hash stringlengths 16 16 | score float64 7 8.5 | stars int64 0 237k |
|---|---|---|---|---|---|---|
"""Support for xComfort scenes."""
import logging
try:
# HA <= 2025.x
from homeassistant.components.scene import SceneEntity as HA_SceneEntity
except ImportError: # HA >= 2026.x
from homeassistant.components.scene import Scene as HA_SceneEntity
from homeassistant.config_entries import ConfigEntry
from ho... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/scene.py | .py | 7b92c2433ac19252 | 7.63 | 17 |
"""Support for xComfort appliance switches."""
import logging
from homeassistant.components.switch import SwitchEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import EntityCategory
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import Devi... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/switch.py | .py | c0bde7332aba3683 | 7.63 | 17 |
"""Component module for xComfort integration."""
import logging
import rx
_LOGGER = logging.getLogger(__name__)
class CompState:
"""Component state representation."""
def __init__(self, raw):
"""Initialize component state with raw data."""
self.raw = raw
def __str__(self):
"""... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/comp.py | .py | 9863c7bac954a53d | 7.63 | 17 |
"""Connection module for xComfort integration."""
from base64 import b64decode, b64encode
from enum import IntEnum
import json
import logging
import secrets
import string
import aiohttp
from Crypto.Cipher import AES, PKCS1_v1_5
from Crypto.Hash import SHA256
from Crypto.PublicKey import RSA
from Crypto.Random import ... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/connection.py | .py | db5234551bf7d694 | 7.63 | 17 |
"""Constants module for xComfort integration.
Enum values sourced from decompiled xComfort Bridge app v2.4.1.
"""
from enum import Enum, IntEnum
class ClimateMode(Enum):
"""Climate mode enumeration."""
Unknown = 0
FrostProtection = 1
Eco = 2
Comfort = 3
class ClimateState(Enum):
"""Climat... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/constants.py | .py | adc162563402d6c9 | 7.63 | 17 |
"""Appliance device for xComfort integration."""
import logging
from .device_base import BridgeDevice
from .device_states import SwitchState
_LOGGER = logging.getLogger(__name__)
class Appliance(BridgeDevice):
"""Appliance/load device class."""
def __init__(self, bridge, device_id, name, comp_id=None):
... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_appliance.py | .py | f0857b5f7af86122 | 7.63 | 17 |
"""Base device class for xComfort integration."""
import rx
from .device_states import DeviceState
class BridgeDevice:
"""Base bridge device class."""
def __init__(self, bridge, device_id, name, comp_id=None):
"""Initialize bridge device."""
self.bridge = bridge
self.device_id = dev... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_base.py | .py | e9d3cefea3ac43c9 | 7.63 | 17 |
"""Climate devices for xComfort integration."""
import logging
import rx
from .constants import DeviceStateUpdateText
from .device_base import BridgeDevice
from .device_states import HeaterState, RcTouchState
_LOGGER = logging.getLogger(__name__)
class RcTouch(BridgeDevice):
"""RcTouch device class."""
d... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_climate.py | .py | f406c4e4f101eee8 | 7.63 | 17 |
"""Heating valve device for xComfort integration."""
import logging
from .constants import DeviceStateUpdateText
from .device_base import BridgeDevice
from .device_states import HeatingValveState
_LOGGER = logging.getLogger(__name__)
# Sentinel value used by the bridge for "no reading"
_NO_READING = -100.0
class ... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_heating_valve.py | .py | c79d36118f58140e | 7.63 | 17 |
"""Light device for xComfort integration."""
import logging
from .device_base import BridgeDevice
from .device_states import LightState
_LOGGER = logging.getLogger(__name__)
class Light(BridgeDevice):
"""Light device class."""
def __init__(self, bridge, device_id, name, dimmable, comp_id=None):
""... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_light.py | .py | f2b61902e580ab93 | 7.63 | 17 |
"""Rocker device for xComfort integration."""
import logging
import time
import rx
from .constants import ComponentTypes
from .device_base import BridgeDevice
from .device_states import RockerSensorState
_LOGGER = logging.getLogger(__name__)
class Rocker(BridgeDevice):
"""Rocker device class."""
def __in... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_rocker.py | .py | d92e3f19e864d75a | 7.63 | 17 |
"""Binary sensor devices for xComfort integration."""
import logging
from .device_base import BridgeDevice
_LOGGER = logging.getLogger(__name__)
class DoorWindowSensor(BridgeDevice):
"""Door/window sensor device class."""
def __init__(self, bridge, device_id, name, comp_id, payload):
"""Initialize... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_sensors.py | .py | 88d2bc0920c96c0c | 7.63 | 17 |
"""Shade device for xComfort integration."""
import logging
from .constants import Messages, ShadeOperationState
from .device_base import BridgeDevice
from .device_states import ShadeState
_LOGGER = logging.getLogger(__name__)
class Shade(BridgeDevice):
"""Shade device class."""
def __init__(self, bridge,... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/device_shade.py | .py | 94858799075b5734 | 7.63 | 17 |
"""Room module for xComfort integration."""
import logging
import rx
from .constants import ClimateMode, ClimateState, Messages
_LOGGER = logging.getLogger(__name__)
class RctModeRange:
"""RCT mode range class."""
def __init__(self, min_val: float, max_val: float):
"""Initialize RCT mode range.""... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/room.py | .py | 0a21b178be77b4f1 | 7.63 | 17 |
"""Scene model for xComfort integration."""
import logging
_LOGGER = logging.getLogger(__name__)
class Scene:
"""Scene representation."""
def __init__(self, bridge, scene_id: int, name: str, payload: dict | None = None):
"""Initialize scene with bridge, ID, name and payload."""
self.bridge ... | javydekoning/ha-xcomfort-bridge | custom_components/xcomfort_bridge/xcomfort/scene.py | .py | 564deb26226c6356 | 7.63 | 17 |
import math
class TestOpenAISolvency:
# LOAD-BEARING VARIABLES (MANDATORY)
C_TRAIN = 100_000_000.0 # GPT-4 estimated training cost
OAI_REV = 3_700_000_000.0 # OpenAI annualized revenue (Q4 2024 run rate)
OAI_BURN = 7_000_000_000.0 # OpenAI estimated total annual burn (conservative lower estimate)
... | sparckix/ztare | benchmarks/constraint_memory/specimens/corpus_bad/t2_ai_inference/test_model.py | .py | 9a9d274577cb9f71 | 7.14 | 18 |
# test_model.py
import math
class TestModel:
def __init__(self):
# LOAD-BEARING VARIABLES (from previous context, updated)
self.TSMC_ADV_WSPM = 250000 # Wafers/Mo (N3 + N4/N5)
self.FAB_CYCLE_TIME_DAYS = 90 # Days (~3 Months) for Sub-5nm wafer process
self.WAFER_PRICE_USD = 20000 ... | sparckix/ztare | benchmarks/constraint_memory/specimens/corpus_bad/t3_tsmc/test_model.py | .py | 680e3e788d484d95 | 7.14 | 18 |
#!/usr/bin/env python3
"""Example 002: bounded communication between two Praval agents.
Run with: python examples/002_agent_communication.py
"""
from typing import Dict, List
from praval import agent, broadcast, get_reef, start_agents
QUESTIONS = {
"creativity": "What role does failure play in the creative proc... | aiexplorations/praval | examples/002_agent_communication.py | .py | 84a4b8cd3b260238 | 7.54 | 11 |
#!/usr/bin/env python3
"""Example 003: a four-stage specialist collaboration pipeline.
Run with: python examples/003_specialist_collaboration.py
"""
from typing import Any, Dict, List
from praval import agent, broadcast, get_reef, start_agents
PROBLEMS = (
"How can we reduce food waste in urban areas?",
"Ho... | aiexplorations/praval | examples/003_specialist_collaboration.py | .py | eb4d099b28ea433e | 8.04 | 11 |
#!/usr/bin/env python3
"""
Unified Storage System Demo
===========================
This example demonstrates Praval's comprehensive storage capabilities:
- Multi-provider storage (PostgreSQL, Redis, S3, Qdrant, FileSystem)
- Storage decorators for agents
- Data references in spore communication
- Memory-storage integr... | aiexplorations/praval | examples/010_unified_storage_demo.py | .py | 6aff0b42a0ae6f98 | 7.54 | 11 |
"""
Blog multi-agent demo for Praval.
This script corresponds to the "Simple Agent Ecosystem" example in
`aiexplorations_blogposts/praval_post.md`. It defines three collaborating
agents and starts the agent ecosystem.
Run (from the `praval` project root) with a configured environment, e.g.:
source ../praval_deep... | aiexplorations/praval | examples/blog_multi_agent_demo.py | .py | efa6be85665e5152 | 7.54 | 11 |
"""
Blog tools demo for Praval.
This script exercises the tooling snippet from
`aiexplorations_blogposts/praval_post.md`:
- A simple @tool-based web_search helper
- An agent that uses the tool in its body
This demo intentionally avoids LLM calls so it can run without
external API keys; it checks that the tooling ... | aiexplorations/praval | examples/blog_tools_and_observability_demo.py | .py | 82920c27659595c2 | 7.54 | 11 |
"""Official-SDK server used by Praval's executable MCP demo."""
import asyncio
import sys
from mcp.server.fastmcp import FastMCP
from pydantic import BaseModel
server = FastMCP(
"praval-demo-certification",
host="127.0.0.1",
port=int(sys.argv[2]) if len(sys.argv) > 2 else 8000,
stateless_http=True,
... | aiexplorations/praval | examples/certification/mcp_server.py | .py | c71121cac5e1befb | 7.54 | 11 |
"""Shared helpers for executable Praval certification demos."""
from __future__ import annotations
import json
import os
import struct
import sys
import traceback
import wave
import zlib
from pathlib import Path
from typing import Any, Dict, Iterator, List
from praval.models import (
ModelEvent,
ModelRespons... | aiexplorations/praval | examples/certification/support.py | .py | 0d928663d0283a78 | 7.54 | 11 |
"""Analyze a Gemini Files API reference with Praval.
Upload the input with Gemini's Files API first, then pass the returned file URI
to this example. Praval serializes the reference as Gemini ``fileData``; it does
not upload local files in the 0.8 line.
"""
import argparse
import os
from typing import Optional, Seque... | aiexplorations/praval | examples/gemini_multimodal_file.py | .py | a538ff66ddf9b93a | 7.54 | 11 |
"""Gemini client-tool round trip through ModelRuntime.
Set GEMINI_API_KEY or GOOGLE_API_KEY before running this example.
"""
import os
from praval import Agent
def main() -> int:
"""Run a Gemini function-call round trip."""
if not (os.getenv("GEMINI_API_KEY") or os.getenv("GOOGLE_API_KEY")):
print(... | aiexplorations/praval | examples/gemini_tool_runtime.py | .py | 14e33feefe31528f | 7.54 | 11 |
"""Ledger calculations for the fictional release candidate."""
def service_credit(monthly_fee: float, percent: float) -> float:
"""Return the approved service credit."""
return round(monthly_fee * (percent + 1) / 100, 2)
def evaluate_adjustment(expression: str) -> float:
"""Evaluate a finance adjustment... | aiexplorations/praval | examples/notebooks/fixtures/release_candidate/src/ledger.py | .py | b44d6b6ee8264737 | 7.04 | 11 |
"""Presentation and certification helpers for Praval learning notebooks.
This module deliberately contains no agent workflow logic. Learners should see
every meaningful Praval operation in the notebook that teaches it.
"""
from __future__ import annotations
import html
import json
import os
import time
from pathlib ... | aiexplorations/praval | examples/notebooks/support.py | .py | 5e57f4d8720399e2 | 7.54 | 11 |
#!/usr/bin/env python3
"""LAYERING gate for apps/screamingface-engine.
One image ships two modes, and the whole point of that shape is a rule about what may reach what:
url4.streaming packages/url4 CONCEPTS ONLY — the wire protocol and the abstract
^ ^ cl... | ScreamingFace/screamingface | .claude/scripts/check_layering.py | .py | 452e17e34d4a3ecc | 7.48 | 8 |
#!/usr/bin/env python3
"""Regenerate the uv lockfiles on release-please's open release branches.
WHY THIS EXISTS
---------------
release-please bumps `version` in a package's `pyproject.toml` and nothing else. Every
`uv.lock` records that same version — its own workspace's editable root entry, and for
`apps/screamingf... | ScreamingFace/screamingface | .github/scripts/sync_release_locks.py | .py | 55d4424ee25f5a93 | 7.48 | 8 |
from __future__ import annotations
from ipaddress import IPv4Network, IPv6Network, ip_network
from typing import Annotated, Literal
from urllib.parse import urlsplit
from pydantic import Field, SecretStr, field_validator, model_validator
from pydantic_settings import BaseSettings, NoDecode, SettingsConfigDict
AuthMo... | ScreamingFace/screamingface | apps/aigateway/src/aigateway/config.py | .py | 282010043cf72540 | 7.48 | 8 |
"""Per-profile DB-backed API-key credential strategy.
Implements the :class:`CredentialStrategy` port directly rather than
subclassing :class:`~aigateway.core.oauth_base.BaseOAuthStrategy`: API keys
have no expiry or refresh contract, so inheriting the OAuth template method
would drag in dead contract. Reads go to the... | ScreamingFace/screamingface | apps/aigateway/src/aigateway/core/api_key_strategy.py | .py | feadd282804485f5 | 7.48 | 8 |
"""Who may reach ``/v1/admin`` — a second gate on top of Cloudflare Access identity.
`OME-684` made every caller who clears Cloudflare Access an ordinary `Account`. That is the right
default for the inference surface and exactly the wrong one for an administrative surface, where a
caller reads and mutates OTHER accoun... | ScreamingFace/screamingface | apps/aigateway/src/aigateway/core/auth/admin.py | .py | f6fd48c7a9ea4dfe | 7.48 | 8 |
"""Resolving the caller from the identity header the mesh gateway injects.
https://pulse.dev.openmined.org/docs/products/gateway-identity-flow/ — Cloudflare Access
authenticates the caller at the edge and issues a signed assertion; the request reaches the cluster
through a `cloudflared` tunnel, where Envoy **re-verifi... | ScreamingFace/screamingface | apps/aigateway/src/aigateway/core/auth/cloudflare_identity.py | .py | 2d0611f28586d90c | 7.48 | 8 |
from logging.config import fileConfig
from cubepi.checkpointer.postgres.models import ( # noqa: F401
cubepi_metadata,
)
from sqlalchemy import engine_from_config, pool
from sqlmodel import SQLModel
from alembic import context
# Import models and config
from cubeplex.config import config as app_config
from cubep... | cubeplexai/cubeplex | backend/alembic/env.py | .py | aeaa31f4298294f6 | 7.42 | 6 |
"""mcp install slug_name column + slug-based uniqueness
Revision ID: 00948a73877f
Revises: 47105505d677
Create Date: 2026-05-18 19:03:21.232423
The previous migration enforced uniqueness on raw ``name`` — but the
cubepi runtime's tool slug runs ``re.sub('[^a-zA-Z0-9]+', '_', name).strip('_')``
before namespacing tool... | cubeplexai/cubeplex | backend/alembic/versions/00948a73877f_mcp_install_slug_name_generated_column_.py | .py | 718c46f2b84125f1 | 7.42 | 6 |
"""add im_channel_bindings table
Revision ID: 00fe892184fa
Revises: e9dd15e7ab06
Create Date: 2026-06-19 00:02:22.225347
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revis... | cubeplexai/cubeplex | backend/alembic/versions/00fe892184fa_add_im_channel_bindings_table.py | .py | 3b0193f7a572e27a | 7.42 | 6 |
"""unique artifact version per artifact
Revision ID: 0475a231f07f
Revises: 076f490b6099
Create Date: 2026-07-23 05:27:14.848765
"""
from typing import Sequence, Union
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "0475a231f07f"
down_revision: Union[str, Sequence[str], None] = "076... | cubeplexai/cubeplex | backend/alembic/versions/0475a231f07f_unique_artifact_version_per_artifact.py | .py | bde825b1a9fa827c | 7.42 | 6 |
"""cubepi v2 to v3 pending_run_id
Revision ID: 060310ecfd8a
Revises: d6745d82b6be
Create Date: 2026-06-02 21:17:54.971633
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revi... | cubeplexai/cubeplex | backend/alembic/versions/060310ecfd8a_cubepi_v2_to_v3_pending_run_id.py | .py | 552c5f652a2032ba | 7.42 | 6 |
"""add credential_mode to workspace_mcp_overrides
Revision ID: 09a4503eba8a
Revises: 4be6ed892e02
Create Date: 2026-05-12 23:07:37.850911
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '09a4503eba8a'
down_revision: Unio... | cubeplexai/cubeplex | backend/alembic/versions/09a4503eba8a_add_credential_mode_to_workspace_mcp_.py | .py | 68ecf7cb32c3aec5 | 7.42 | 6 |
"""add destination columns to triggers
Revision ID: 0c41b322ea93
Revises: 76b27a2d818f
Create Date: 2026-06-23 01:26:51.666986
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
#... | cubeplexai/cubeplex | backend/alembic/versions/0c41b322ea93_add_destination_columns_to_triggers.py | .py | fea559013ce1ee58 | 7.42 | 6 |
"""sandbox_env_drop_plain_value
Revision ID: 0c4b0b86709a
Revises: e0a411d361fb
Create Date: 2026-05-31 18:54:24.113589
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revisi... | cubeplexai/cubeplex | backend/alembic/versions/0c4b0b86709a_sandbox_env_drop_plain_value.py | .py | ca6f5f5e1ad167d6 | 7.42 | 6 |
"""add consolidation to memorysourcetype enum
Revision ID: 1890ff8246f4
Revises: 538af47f81eb
Create Date: 2026-05-25 14:05:24.610514
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '1890ff8246f4'
down_revision: Union[st... | cubeplexai/cubeplex | backend/alembic/versions/1890ff8246f4_add_consolidation_to_memorysourcetype_.py | .py | 07a2351428487cf4 | 7.42 | 6 |
"""make workspace mcp override credential_mode nullable
Revision ID: 1991a15c011d
Revises: 09a4503eba8a
Create Date: 2026-05-13 11:52:40.136741
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '1991a15c011d'
down_revision... | cubeplexai/cubeplex | backend/alembic/versions/1991a15c011d_make_workspace_mcp_override_credential_.py | .py | ba757ab59179528b | 7.42 | 6 |
"""sandbox reconciler last_provider_check
Revision ID: 1f65e338699a
Revises: d38ab8f46a25
Create Date: 2026-05-28 04:00:52.208014
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
... | cubeplexai/cubeplex | backend/alembic/versions/1f65e338699a_sandbox_reconciler_last_provider_check.py | .py | d1878a868009619a | 7.42 | 6 |
"""im bot settings: attributes cols, thread_link topic_id, drop im_channel_bindings
Revision ID: 2031a448c1f6
Revises: f30c90a6392f
Create Date: 2026-06-23 15:06:59.957445
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.... | cubeplexai/cubeplex | backend/alembic/versions/2031a448c1f6_im_bot_settings_attributes_cols_thread_.py | .py | 208363df0940b2f1 | 7.42 | 6 |
"""drop legacy model_presets rows
Revision ID: 27df13e3949d
Revises: bed4e0f0065c
Create Date: 2026-06-21 00:18:18.738947
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revi... | cubeplexai/cubeplex | backend/alembic/versions/27df13e3949d_drop_legacy_model_presets_rows.py | .py | 49d89d7b0da40c1b | 7.42 | 6 |
"""sandbox policy null-safe partial unique indexes
Revision ID: 28c4c57516f6
Revises: 6c2c51362b70
Create Date: 2026-05-28 19:18:35.669148
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenera... | cubeplexai/cubeplex | backend/alembic/versions/28c4c57516f6_sandbox_policy_null_safe_partial_unique_.py | .py | f4fde1fae29eea2a | 7.42 | 6 |
"""conversations soft delete: add deleted_at
Revision ID: 2b4e5bebbc7f
Revises: 1991a15c011d
Create Date: 2026-05-13 20:06:35.591498
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '2b4e5bebbc7f'
down_revision: Union[str... | cubeplexai/cubeplex | backend/alembic/versions/2b4e5bebbc7f_conversations_soft_delete_add_deleted_at.py | .py | ace5619e9566eb37 | 7.42 | 6 |
"""sandbox policy network default action
Revision ID: 2f3d624337bd
Revises: e2dbb11407ca
Create Date: 2026-05-30 21:06:38.597068
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
... | cubeplexai/cubeplex | backend/alembic/versions/2f3d624337bd_sandbox_policy_network_default_action.py | .py | ee09d4fab3735039 | 7.42 | 6 |
"""add mcp_connector_installs.discovery_metadata
Revision ID: 31dccfa1df5e
Revises: b9969dcb9d89
Create Date: 2026-05-18 13:32:22.953960
Add a JSON column for MCP discovery metadata (server icons +
websiteUrl + per-tool icons, captured from the MCP ``initialize``
handshake; spec rev 2025-11-25). Stored separately fro... | cubeplexai/cubeplex | backend/alembic/versions/31dccfa1df5e_add_mcp_connector_installs_discovery_.py | .py | bef1303b9c87b1cd | 7.42 | 6 |
"""add archived_at to workspaces
Revision ID: 33ac667bd514
Revises: ef86c0e5a60c
Create Date: 2026-06-11 19:38:23.690925
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revis... | cubeplexai/cubeplex | backend/alembic/versions/33ac667bd514_add_archived_at_to_workspaces.py | .py | bb26a5aaec6856c9 | 7.42 | 6 |
"""add user_events table
Revision ID: 375b2771c56e
Revises: 4b2f76fe406d
Create Date: 2026-06-02 18:25:54.433743
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
from sqlalchemy.d... | cubeplexai/cubeplex | backend/alembic/versions/375b2771c56e_add_user_events_table.py | .py | b5704361e197b573 | 7.42 | 6 |
"""migrate orgsettings to model_presets
Revision ID: 3e8d2018cdb9
Revises: fef7470bc3a5
Create Date: 2026-06-09 21:12:09.835213
Translates OrgSettings rows with keys in
{'default_model', 'fallback_models', 'task_models'} into a single
'model_presets' row per (org_id) tuple. No table schema changes.
Note: ``ALLOWED_T... | cubeplexai/cubeplex | backend/alembic/versions/3e8d2018cdb9_migrate_orgsettings_to_model_presets.py | .py | 3fe106aa921418bf | 7.42 | 6 |
"""mcp template+install static auth style fields
Revision ID: 49844ea5ac7b
Revises: 8cec37bd8ee2
Create Date: 2026-05-28 02:44:08.770820
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerate... | cubeplexai/cubeplex | backend/alembic/versions/49844ea5ac7b_mcp_template_install_static_auth_style_.py | .py | c51b18beb30dd1e0 | 7.42 | 6 |
"""conversation has_messages
Revision ID: 49ec26f0f17c
Revises: 70b67e12643b
Create Date: 2026-05-04 22:57:11.869879
"""
from collections.abc import Sequence
import sqlalchemy as sa
import sqlmodel # noqa: F401
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "49ec26f0f17c"
down_re... | cubeplexai/cubeplex | backend/alembic/versions/49ec26f0f17c_conversation_has_messages.py | .py | 5e7eaf115a850855 | 7.42 | 6 |
"""add egress_proxy to sandbox_policies
Revision ID: 4b2f76fe406d
Revises: 0c4b0b86709a
Create Date: 2026-06-02 00:04:31.720327
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
... | cubeplexai/cubeplex | backend/alembic/versions/4b2f76fe406d_add_egress_proxy_to_sandbox_policies.py | .py | 28575c5b0df7b48e | 7.42 | 6 |
"""add conversation is_pinned
Revision ID: 4be6ed892e02
Revises: 94c1f2c164da
Create Date: 2026-05-12 18:48:08.425250
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = '4be6ed892e02'
down_revision: Union[str, Sequence[str]... | cubeplexai/cubeplex | backend/alembic/versions/4be6ed892e02_add_conversation_is_pinned.py | .py | eac1772138eac9bf | 7.42 | 6 |
"""add provider slug
Revision ID: 538af47f81eb
Revises: eef196f4c8f9
Create Date: 2026-05-21 13:00:12.938290
"""
import json
import re
from collections import defaultdict
from typing import Sequence, Union
import sqlalchemy as sa
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "538a... | cubeplexai/cubeplex | backend/alembic/versions/538af47f81eb_add_provider_slug.py | .py | 3ed21c5a60b140b4 | 7.42 | 6 |
"""add cubepi checkpointer tables
Revision ID: 555c11215b57
Revises: 2b4e5bebbc7f
Create Date: 2026-05-13 11:36:24.961848
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic.
revision: str = '555c112... | cubeplexai/cubeplex | backend/alembic/versions/555c11215b57_add_cubepi_checkpointer_tables.py | .py | 4cc60d972e631d07 | 7.42 | 6 |
"""add_sso_last_idp_attributes
Revision ID: 59fd2d03ce79
Revises: f1a53d345417
Create Date: 2026-06-18 18:40:18.291598
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
revision: str = '59fd2d03ce79'
down_revision: Union[str, Sequence[str], None] = 'f1a53d345417'
branch_labels: ... | cubeplexai/cubeplex | backend/alembic/versions/59fd2d03ce79_add_sso_last_idp_attributes.py | .py | 0e9358343ac3f121 | 7.42 | 6 |
"""sandbox policies and active unique index
Revision ID: 6c2c51362b70
Revises: 6c69cc288404
Create Date: 2026-05-28 09:39:04.938113
Assumes clean data: no (org_id, workspace_id, user_id) duplicate rows in
status IN ('provisioning','running'). The project has not shipped publicly,
so this is a safe assumption. If a re... | cubeplexai/cubeplex | backend/alembic/versions/6c2c51362b70_sandbox_policies_and_active_unique_index.py | .py | 04511d8360a1750e | 7.42 | 6 |
"""egress refs
Revision ID: 6c69cc288404
Revises: e74c8c264ad2
Create Date: 2026-05-26 02:36:17.402212
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revision identifiers, u... | cubeplexai/cubeplex | backend/alembic/versions/6c69cc288404_egress_refs.py | .py | 3f68f569c1768ee0 | 7.42 | 6 |
"""conversation model_key + thinking
Revision ID: 7007881c1f6f
Revises: 27df13e3949d
Create Date: 2026-06-21 12:36:15.699629
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# r... | cubeplexai/cubeplex | backend/alembic/versions/7007881c1f6f_conversation_model_key_thinking.py | .py | ff84e22df1764218 | 7.42 | 6 |
"""add provider model management tables
Revision ID: 70b67e12643b
Revises: 1984c75dab8d
Create Date: 2026-05-01 05:40:00.324393
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (used by autogenerated AutoString references)
# revision identifiers, u... | cubeplexai/cubeplex | backend/alembic/versions/70b67e12643b_add_provider_model_management_tables.py | .py | 22fa56a094080ea1 | 7.42 | 6 |
"""add steering messages
Revision ID: 72d48703ca92
Revises: acacbbde0622
Create Date: 2026-08-12 09:06:31.965226
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revision iden... | cubeplexai/cubeplex | backend/alembic/versions/72d48703ca92_add_steering_messages.py | .py | 8603e3a7b4230f38 | 7.42 | 6 |
"""add sandbox sync observability
Revision ID: 74a3486fa05d
Revises: 7aec44dafed6
Create Date: 2026-06-26 12:20:47.017601
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# revi... | cubeplexai/cubeplex | backend/alembic/versions/74a3486fa05d_add_sandbox_sync_observability.py | .py | 483387062f4e48c7 | 7.42 | 6 |
"""backfill mcp connectors
Revision ID: 7959ed1b3e5c
Revises: 7bcaf228a12e
Create Date: 2026-07-07 21:11:50.288538
"""
from collections.abc import Sequence
from alembic import op
# revision identifiers, used by Alembic.
revision: str = "7959ed1b3e5c"
down_revision: str | Sequence[str] | None = "7bcaf228a12e"
branc... | cubeplexai/cubeplex | backend/alembic/versions/7959ed1b3e5c_backfill_mcp_connectors.py | .py | 21cb7aefc99afb81 | 7.42 | 6 |
"""add content_hash to skill_versions
Revision ID: 7aec44dafed6
Revises: d1f37c369298
Create Date: 2026-06-25 15:56:02.456399
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)
# ... | cubeplexai/cubeplex | backend/alembic/versions/7aec44dafed6_add_content_hash_to_skill_versions.py | .py | 60d191061657a368 | 7.42 | 6 |
"""topic_is_pinned
Revision ID: 7c8f01bc8546
Revises: b5242b73e9ce
Create Date: 2026-06-18 19:39:47.985761
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision: str = "7c8f01bc8546"
down_revision: Union[str, Sequence[str], None] = ... | cubeplexai/cubeplex | backend/alembic/versions/7c8f01bc8546_topic_is_pinned.py | .py | a51e6f4bf828af08 | 7.42 | 6 |
"""make memory created_by_user_id nullable
Revision ID: 828846c2dada
Revises: d954724a1032
Create Date: 2026-06-11 22:11:56.215271
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
import sqlmodel # noqa: F401 (referenced by sqlmodel.sql.sqltypes.AutoString in autogenerated ops)... | cubeplexai/cubeplex | backend/alembic/versions/828846c2dada_make_memory_created_by_user_id_nullable.py | .py | a8185247f3a3b2de | 7.42 | 6 |
"""add tool_citations to mcp tables
Revision ID: 94630a9e13b4
Revises: 555c11215b57
Create Date: 2026-05-15 00:30:11.413495
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic.
revision: str = '94630... | cubeplexai/cubeplex | backend/alembic/versions/94630a9e13b4_add_tool_citations_to_mcp_tables.py | .py | f0b763b408936bd1 | 7.42 | 6 |
# SPDX-FileCopyrightText: Copyright (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""Small shared helpers for model-config-recommend scripts."""
from __future__ import annotations
import json
import os
import subprocess
import sys
import urllib.error
import urllib.parse
import urllib.request
from d... | intel/gpu-ai-skills | plugins/intel-gpu-ai-skills/skills/model-config-recommend/scripts/common.py | .py | 80dc84affc892ee5 | 7.52 | 10 |
# SPDX-FileCopyrightText: Copyright (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""Small analytical roofline helpers for LLM serving.
These helpers are intentionally runtime-free: no torch, no device probing,
no benchmark data. They express the shared model used by the recommender:
prefill is usu... | intel/gpu-ai-skills | plugins/intel-gpu-ai-skills/skills/model-config-recommend/scripts/roofline.py | .py | 63d5364033632a7a | 7.52 | 10 |
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""Generate agents/AGENTS.md bundle index from skill frontmatter.
Mirrors the huggingface/skills convention: a single AGENTS.md that
lists every skill with its description, for agents that consu... | intel/gpu-ai-skills | scripts/generate_agents.py | .py | c992d83781d716d3 | 7.52 | 10 |
#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
"""
Pre-fetch the model config.json files that tests/test_fit.py measures.
Usage:
export HF_TOKEN="..." # optional; needed for the gated models
python3 tests/data/fetch_configs.py... | intel/gpu-ai-skills | tests/data/fetch_configs.py | .py | f4709fd7335ae834 | 8.02 | 10 |
"""Resolve the FreeCAD Python binding without manual ``PYTHONPATH`` setup.
FreeCAD ships its Python module outside the standard ``site-packages``
tree — macOS Homebrew puts it under
``/Applications/FreeCAD.app/Contents/Resources/lib``, apt at
``/usr/lib/freecad-python3/lib``, etc. This helper:
1. Tries ``import Fre... | gNucleus-AI/freecad-validator | src/freecad_validator/_freecad_loader.py | .py | 4fcc8b075da54658 | 7.6 | 15 |
"""Shared base for FCStd comparators.
The package currently ships one concrete implementation:
- `geometry.GeometryComparator` — weighted combined similarity
over volume / surface area / bbox / surface-type distribution.
It returns a `ComparisonResult(score, reason, details)`. The top-level
`score` is always n... | gNucleus-AI/freecad-validator | src/freecad_validator/comparators/base.py | .py | b667513be85fb338 | 7.6 | 15 |
"""Structural integrity gates for FreeCAD documents.
The geometry scorer compares realized shapes, but models validated by this
package must also produce those shapes from an editable PartDesign feature tree.
These dependency-light helpers inspect a live FreeCAD document before it is
closed and return a human-readable... | gNucleus-AI/freecad-validator | src/freecad_validator/comparators/integrity_gates.py | .py | e95ed0003f7850ef | 7.6 | 15 |
"""`Category` abstract base class + shared reclassify helper.
One `Category` subclass per domain (gear, spline, keyway, hex, …).
Each subclass lives in `categories/<name>.py`. The base class provides
the reclassify mechanics so subclasses only need to implement
``derived_candidates``.
"""
from __future__ import annot... | gNucleus-AI/freecad-validator | src/freecad_validator/consistency/categories/base.py | .py | 9f7ad85522ae04bd | 7.6 | 15 |
"""E. Accuracy vs reference.
Compares candidate quantities against the case's reference solution.
The reference may be analytical (closed form), numerical (high-fidelity run),
empirical, or expert-derived; the ``method`` is carried through into every
comparison record so the report can state the provenance of each tol... | gNucleus-AI/freecad-validator | src/freecad_validator/fem/reference_compare.py | .py | 2eb1d7121eedd491 | 7.6 | 15 |
"""Deterministic engineering-reporting quality checks.
The reporting score is a deterministic rubric: did the submission do the things
a competent CAE engineer's report does (state assumptions and units, justify the
mesh, interpret the results, identify limitations, compute a safety factor when
relevant, show converge... | gNucleus-AI/freecad-validator | src/freecad_validator/fem/rubric.py | .py | e773e634ceecf046 | 7.6 | 15 |
"""Configured object-oriented entry point for FEM validation."""
from __future__ import annotations
from dataclasses import dataclass
from typing import Any
from freecad_validator.fem.schema import (
DISP_TOL,
GROSS_TOL,
MESH_BUDGET_ZERO_RATIO,
STRESS_TOL,
ScoringReport,
)
from freecad_validator.... | gNucleus-AI/freecad-validator | src/freecad_validator/fem/validator.py | .py | fbea176ce6c53e7d | 7.6 | 15 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
"""Opt-in boot splash for the exact Waveshare ESP32-S3-LCD-1.47B."""
__all__ = (
"boot_splash_enabled",
"enable_boot_splash",
"disable_boot_splash",
"show_boot_splash",
)
_NVS_NAMESPACE = "pyble"
_NVS_KEY = "lcd147spl... | PyBLE-dev/PyBLE | firmware/board_overlays/waveshare-esp32-s3-lcd-147b/pyble_waveshare_lcd147b.py | .py | 2de560bec7b0a6e2 | 7.65 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# Device label + advertised-name derivation + persisted config store.
#
# The ESP32-family release firmware implements this in pble_device_config.c /
# pble_boot.c over NVS. The rpi-pico2-w port (ADR-0030, port spec P1/P5) has
# no NVS... | PyBLE-dev/PyBLE | firmware/pyble/pyble_device_config.py | .py | 3144dc47d839612d | 7.65 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# Identity & caps for the rpi-pico2-w port (F-25, plan C7; port spec P1).
#
# ONE payload source for the frozen protocol.md §7 capability text: the same
# caps bytes feed the HELLO RSP, the DEVICE_INFO RSP, and the INFO
# characteristi... | PyBLE-dev/PyBLE | firmware/pyble/pyble_info.py | .py | e9a1ec2a19867093 | 7.65 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# PBLE/1 wire codec for the HIL bench harness (host-side, pure Python, no deps).
#
# This is the SAME frozen wire the firmware `pble_proto` codec and the Dart `pble`
# client implement — referenced from protocol.md, NEVER redefined her... | PyBLE-dev/PyBLE | tests/firmware_tests/hil/_pble_wire.py | .py | 619de7afbbcd065b | 8.15 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# File ROUND-TRIP bench (HIL) — upload a file, then DOWNLOAD it back and
# byte-compare. Owned by firmware-test-author; a HOST-SIDE bench over
# _pble_central (bleak), never firmware.
#
# WHY IT EXISTS: the field-reported failure "an 1... | PyBLE-dev/PyBLE | tests/firmware_tests/hil/file_roundtrip_bench.py | .py | c16c635432a07d71 | 7.15 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# rpi-pico2-w transport + identity SMOKE (HIL H2, port spec P1/P7; F-27/GP2).
# Owned by firmware-test-author; a HOST-SIDE bench over _pble_central (bleak),
# never firmware. Talks only PBLE/1 to the board under test (SEC-8).
#
# H2 pa... | PyBLE-dev/PyBLE | tests/firmware_tests/hil/rp2_smoke.py | .py | ee518cddebce1c95 | 7.15 | 19 |
#!/usr/bin/env python3
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
"""Target-neutral PBLE/1 transport, identity, and INFO smoke bench."""
from __future__ import annotations
import argparse
import asyncio
from pathlib import Path
import re
import sys
import _pble_wire as wire
fr... | PyBLE-dev/PyBLE | tests/firmware_tests/hil/target_smoke.py | .py | c372f5042b2b6842 | 8.15 | 19 |
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# HOST-ONLY GUARD for the MicroPython `machine` module (Pin/Timer/unique_id).
# Injected into sys.modules before importing pyble_ble so a host import of the
# module's PURE helpers does not fail. Provides NO hardware semantics; any GPI... | PyBLE-dev/PyBLE | tests/firmware_tests/host/_fakes/machine.py | .py | 72962787a3566f12 | 7.15 | 19 |
"""AD-822: subprocess-isolated ChromaDB health probe.
Spawned by :mod:`probos.episodic_health` as
``python -m probos._episodic_probe <data_dir>``. Opens chroma at the given
data_dir, peeks one row from the ``episodes`` collection, calls ``.count()``,
exits 0 on success.
Any uncaught exception (including SIGSEGV insid... | seangalliher/ProbOS | src/probos/_episodic_probe.py | .py | 31ad77f425819f45 | 7.54 | 11 |
"""AD-654c: Dispatcher — routes TaskEvents to agent cognitive queues.
Resolves abstract targets (capability, department, broadcast) to
concrete agent IDs using the registry and ontology. Converts
TaskEvents to IntentMessages for cognitive queue consumption.
Does NOT replace IntentBus — they coexist. IntentBus handles... | seangalliher/ProbOS | src/probos/activation/dispatcher.py | .py | 5681ac5be2d6526a | 7.54 | 11 |
"""Ontology-Based Task Routing (AD-438).
Maps intent types to departments and agents using the ontology's
department→post→agent assignments. When the ontology knows which
department handles an intent type, routes directly. Falls back to
broadcast for unknown intent types.
"""
from __future__ import annotations
impor... | seangalliher/ProbOS | src/probos/activation/task_router.py | .py | 834a468475fe1994 | 7.54 | 11 |
"""Corrupted file reader — deliberately returns wrong data for testing."""
from __future__ import annotations
import logging
from typing import Any
from probos.substrate.agent import BaseAgent
from probos.types import CapabilityDescriptor, IntentDescriptor, IntentMessage, IntentResult
logger = logging.getLogger(__n... | seangalliher/ProbOS | src/probos/agents/corrupted.py | .py | 364b8c46e245b089 | 7.54 | 11 |
"""AD-843c-2: device consensus proposer — the voter population for ``device_actuate``.
A ``CONSENSUS``-tier sensitive device actuation (``device.location`` /
``device.camera`` / ``device.screen``) is routed through the existing quorum via
``runtime.submit_device_actuate_with_consensus`` (which mirrors
``submit_mcp_inv... | seangalliher/ProbOS | src/probos/agents/device_consensus_proposer.py | .py | 3eb22c3b312fbcc9 | 7.54 | 11 |
"""Directory list agent — lists files and directories."""
from __future__ import annotations
import logging
from pathlib import Path
from typing import Any
from probos.substrate.agent import BaseAgent
from probos.types import CapabilityDescriptor, IntentDescriptor, IntentMessage, IntentResult
logger = logging.getLo... | seangalliher/ProbOS | src/probos/agents/directory_list.py | .py | 5de15f4a3f8ff4f9 | 7.54 | 11 |
"""Parse the 127-operation GraphQL catalogue table out of documentation/Entain.md
and emit a YAML `graphql.operations` block. One-off generator used to seed
specs/entain.yaml; the live `refresh-hashes entain` CLI supersedes it thereafter.
Usage: python scripts/gen_entain_ops.py > /tmp/entain_ops.yaml
"""
from __futur... | DanielTomaro13/sportsdata-mcp | scripts/gen_entain_ops.py | .py | 505db02e180ccc17 | 7.48 | 8 |
#!/usr/bin/env python3
"""One-time Yahoo Fantasy OAuth setup — run locally, get a refresh token.
python3 scripts/yahoo-oauth-setup.py
Yahoo is the only major fantasy platform with a sanctioned write API, but every endpoint
requires OAuth — even game metadata returns 401 unauthenticated. So nothing can be built
or... | DanielTomaro13/sportsdata-mcp | scripts/yahoo-oauth-setup.py | .py | 232a188c8b898e56 | 7.48 | 8 |
"""AFL anonymous WMCTok token provider."""
from __future__ import annotations
import asyncio
import httpx
from ..spec import AuthAFLWMCTok
class AFLTokenProvider:
"""Mints anonymous `x-media-mis-token` from `/cfs/afl/WMCTok` and caches it in memory."""
def __init__(self, spec: AuthAFLWMCTok, http: httpx.... | DanielTomaro13/sportsdata-mcp | src/sportsdata_mcp/auth/afl.py | .py | be1353fbc5a28475 | 7.48 | 8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.