Skip to content

Quickstart Guild

Installing CSE.py

Using PIP

pip install -U cse.py

Using GIT

pip install -U git+https://github.com/Hype3808/cse.py

API Key

Get Your Api Key

Get Your Key

Getting Started

Easy example

import cse
import asyncio

engine = cse.Engine("your_api_key")

async def main():
    results = await engine.search("query")
    print(results) # this will returns a list of results

asyncio.get_event_loop().run_until_complete(main())