litescrape-sdk
Python SDK for the Litescrape API: validated, concurrent, retrying calls to the Google, Bing, DuckDuckGo, Yelp, Tripadvisor, Apple Maps, Google Play, and Apple App Store endpoints, with results returned in input order.
pip install litescrape-sdk
import os
from litescrape_sdk import GoogleMaps, scrape
os.environ["LITESCRAPE_API_KEY"] = "ls_live_..."
results = scrape(
[
{"endpoint": "google_search", "q": "coffee grinders", "gl": "us"},
GoogleMaps(q="coffee", type="search", ll="@40.745,-73.988,14z"),
]
)
for result in results:
print(result.ok, result.data or result.error)
help(litescrape_sdk.scrape) documents every argument, the retry and concurrency rules, and the error
types. ascrape is the same function for asyncio code, and litescrape_sdk.REQUEST_TYPES maps each
endpoint slug to its request class.
Development: uv sync, then uv run pytest, uv run ruff check ., and uv run ruff format ..
Store APIs (Alpha)
All nine Store operations use your existing key. Alpha fields depend on what the storefront supplies.
| Request class | Endpoint slug |
|---|---|
GooglePlayApps |
google_play_apps |
GooglePlayGames |
google_play_games |
GooglePlayBooks |
google_play_books |
GooglePlayMovies |
google_play_movies |
GooglePlayProduct |
google_play_product |
GooglePlayReviews |
google_play_reviews |
AppleAppStoreSearch |
apple_app_store_search |
AppleAppStoreProduct |
apple_app_store_product |
AppleAppStoreReviews |
apple_app_store_reviews |
from litescrape_sdk import GooglePlayApps, GooglePlayProduct, AppleAppStoreSearch, scrape
results = scrape(
[
GooglePlayApps(q="coffee", hl="en", gl="us"),
GooglePlayProduct(product_id="com.duolingo"),
AppleAppStoreSearch(term="coffee", country="us", num=10),
]
)
for result in results:
print(result.raise_for_error())
Follow litescrape_pagination.next or use the returned continuation with the same operation
and parameters. Each successful page consumes one call; failures do not. For Google Play,
chart, next_page_token, section_page_token, and see_more_token are mutually exclusive.
Queries exclude category filters. Omit store_device when using an apps or games query or category.
GooglePlayGames(q=...) uses the shared Android app search; omit q or choose games_category
to browse games. Apple review pages
are one-based; exhausted pages return an empty list. Mac reviews use newest-first ordering.
search_metadata.raw_file and prettify_file, when returned, link to authenticated response
artifacts retained for at least seven days (today and the previous seven UTC date buckets). Download them with the same bearer key; downloads are unbilled.
See the API reference for every parameter and response group.
Release files for litescrape-sdk 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| litescrape_sdk-0.2.0.tar.gz | 68.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| litescrape_sdk-0.2.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 90.8 kB
Release files / litescrape_sdk-0.2.0.tar.gz
| Download URL | litescrape_sdk-0.2.0.tar.gz |
|---|---|
| Size | 68.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6af6b733a8a620c324b6661001cfc0bf1db6fe5dc061340d57b8f779e4d22c7d
|
|
BLAKE2b-256 checksum How to use checksums |
961505920347e4a8c50ef85a2e4f9f6accf671fec1c50ff1e92fd5a54db005b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 7, 2026.
Transparency logRelease files / litescrape_sdk-0.2.0-py3-none-any.whl
| Download URL | litescrape_sdk-0.2.0-py3-none-any.whl |
|---|---|
| Size | 22.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fd8b2fe612606ba6b4ff9e52ed1f67d9bf5265bfc3bfbeed69468f67d090ea71
|
|
BLAKE2b-256 checksum How to use checksums |
574056906d8e9724590f78d5dd83131368b2246a993670b2e25373e1362d95d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 7, 2026.
Transparency log