REST API endpoints for searching and retrieving StaticFrame documentation. The schema is available at the base endpoint. Use this URL to configure ChatGPT Actions or other OpenAPI clients. The API uses standard JSON request/response format over HTTPS.
Search StaticFrame API signatures by method name or pattern.
{
"query": "Frame.from_dict",
"fullSigSearch": false, // optional
"reSearch": false // optional
}{
"count": 4,
"signatures": [
"Frame.from_dict()",
"Frame.from_dict_fields()",
"Frame.from_dict_records()",
"Frame.from_dict_records_items()"
]
}Get documentation for a StaticFrame API signature.
{
"sig": "Frame.from_dict()"
}{
"signature": "Frame.from_dict()",
"documentation": "Create a Frame from a dictionary..."
}Get code example for a StaticFrame API signature.
{
"sig": "Frame.from_dict()"
}{
"signature": "Frame.from_dict()",
"example": ">>> import static_frame as sf\n>>> sf.Frame.from_dict(dict(a=(1,2), b=(3,4)))\n<Frame>..."
}StaticFrame site v2.0.2. Report issues or feature requests at the static-frame-www GitHub repository.