toapi: Declaratively Turn Any Website into a JSON API
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
toapi is a powerful Python library designed to transform any website into a clean JSON API declaratively. It enables users to define desired data fields using CSS selectors, fetching and parsing web pages on demand. With built-in caching and support for dynamic content, toapi simplifies web data extraction without complex crawlers or databases.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
toapi is a powerful Python library designed to declaratively turn any website into a clean JSON API. It simplifies the process of extracting data from web pages by allowing you to define the fields you want using standard CSS selectors. With toapi, pages are fetched and parsed on demand, complete with built-in caching, eliminating the need for complex web crawlers or database maintenance. The core idea behind toapi is that "Every web site provides APIs," and it helps you unlock them.
Installation
Getting started with toapi is straightforward. You can install it using pip:
pip install toapi
Please note that toapi requires Python 3.10 or higher.
Examples
Here's a quick example demonstrating how to use toapi to create an API for Hacker News posts:
from htmlparsing import Attr, Text
from toapi import Api, Item
api = Api()
@api.site("https://news.ycombinator.com")
@api.list(".athing")
@api.route("/posts", "/news")
@api.route("/posts?page={page}", "/news?p={page}")
class Post(Item):
title = Text(".titleline > a")
url = Attr(".titleline > a", "href")
api.run(host="127.0.0.1", port=5000)
After running this Python script, you can visit http://127.0.0.1:5000/posts in your browser to get a JSON output similar to this:
{
"Post": [
{"title": "Mathematicians Crack the Cursed Curve", "url": "https://www.quantamagazine.org/..."},
{"title": "Stuffing a Tesla Drivetrain into a 1981 Honda Accord", "url": "https://jalopnik.com/..."}
]
}
This example showcases how easily you can define an API endpoint, specify the target website, and extract specific elements using CSS selectors.
Why Use toapi?
toapi offers several compelling features that make it an excellent choice for web data extraction:
- Declarative: Describe the data you want, not the scraping logic, leading to cleaner and more maintainable code.
- Routes: Map clean API paths to messy source URLs, supporting
{param}placeholders for dynamic content. - Multi-site Support: Merge data from several different websites behind a single, unified API.
- Cleaning Hooks: Define
clean_<field>methods on yourItemclasses to post-process and transform extracted values before they are returned. - Automatic Caching: Pages and parsed results are automatically cached, improving performance and reducing requests to the source website.
- Headless Browser Support: Easily integrate a headless browser (e.g., via
Api(browser="/path/to/geckodriver")) for scraping JavaScript-heavy sites.
Links
Related repositories
Similar repositories that may be relevant next.
awesome-ai: A Curated List of 400+ AI APIs, Tools, and Frameworks
August 7, 2026
The awesome-ai repository by edwardtay offers a comprehensive, curated list of over 400 AI APIs, tools, frameworks, and platforms. Spanning more than 40 categories, it serves as an invaluable resource for developers and researchers navigating the vast landscape of artificial intelligence. This list helps users discover solutions for LLMs, agents, image/video generation, MLOps, and more.

httmock: A Powerful Mocking Library for Python Requests
August 3, 2026
httmock is an essential Python library designed for mocking HTTP requests made by the popular `requests` library. It allows developers to easily simulate API responses, making it ideal for testing applications that interact with external services. With httmock, you can control network interactions, ensuring reliable and repeatable tests without relying on actual network calls.

dogpile.cache: A Robust Python Caching API for Various Backends
May 9, 2026
dogpile.cache is a Python caching API designed to offer a generic interface to diverse caching backends. It builds upon the "dogpile lock" concept, ensuring efficient resource creation while allowing other threads to access previous versions. This project serves as a modern, more efficient replacement for the Beaker caching system, developed by the same author.

Graphene: A Powerful GraphQL Framework for Python
May 4, 2026
Graphene is an opinionated Python library designed for building GraphQL schemas and types quickly and easily. It offers built-in support for Relay, is data-agnostic, and integrates seamlessly with various frameworks like Django and SQLAlchemy. This framework simplifies the process of exposing your data through a GraphQL API in Python applications.
Source repository
Open the original repository on GitHub.
6 counted GitHub visits