Streamlined database extension management and discovery
Extension Provider is a lightweight service that reduces API load on main database extension servers by providing a centralized mirror of extension metadata. It serves as a comprehensive catalog of extensions available for popular databases.
Get up and running in seconds:
pip install requirements.txt
python3 main.py
Access extension data directly through our JSON endpoints:
https://razein97.github.io/extprovider/json/sqlite.json
https://razein97.github.io/extprovider/json/duckdb.json
Example usage:
const response =
await
fetch('https://razein97.github.io/extprovider/json/sqlite.json');
const extensions =
await response.json();