Tourist Framework
Project description
Tourist🤳
An open-source, low-cost, serverless application for SERP extraction and web scraping.
Work on LLM projects without worrying about credits, subscriptions, or rate-limits. Tourist is a free alternative to many mainstream SERP API services. Run Tourist on your machine or deploy it into your own AWS account.
[!IMPORTANT]
Tourist is in early development. Features and API's may change unexpectedly.
Overview
Tourist has both Service and Client components. The Service (HTTP API) handles requests from the Client (your app, agent, or scraper scripts). You're in control of both components! None of your data is ever processed or stored by third parties.
Service
Local deployment (for testing...)
[!TIP]
Docker is recommended for running Tourist locally to handle dependencies for headless browsing.
docker run -e X_API_KEY="whatever" -p 8000:8000 ghcr.io/pogzyb/tourist:latest
If the service came up correctly, you should see:
INFO: Started server process [1]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
Check the docs at http://localhost:8000/docs
AWS deployment (for real...)
Prerequisites:
- AWS Account and Credentials
- S3 Bucket for storing an OpenTofu statefile
- Docker Daemon
Read about the deployment container in the deploy/ folder.
Example deployment command:
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
--env-file .env \
ghcr.io/pogzyb/tourist-deploy:latest \
apply \
-b tourist-statefile \
-k SeCretTK3y
Use your endpoint: https://xxxxxxxx.lambda-url.us-east-1.on.aws (available the deployment outputs)
[!WARNING]
Tourist uses serverless infrastructure to keep costs extremely low; however these costs will not be $0.00 depending on how heavily you use your API.
[!IMPORTANT]
Tourist uses the X-API-KEY authorization header to protect your API, you should set this value when deploying.
Client
Build your own LLM tools, web scraping apps, or automated testing workflows with the Tourist client.
Python
You can use the python client to interact with your Tourist service. Check out the examples folder for the complete code.
pip install tourist
LLM Tools
For example, create a LangChain Tool for your LLM Agent.
import asyncio
from llama_index.llms.ollama import Ollama
from llama_index.core.agent.workflow import FunctionAgent
from tourist.client import TouristScraper
# Assumes you're running locally,
# change this to your lambda endpoint if you've deployed to your aws account.
tourist_scraper = TouristScraper(
func_urls="http://localhost:8000",
x_api_key="whatever",
)
async def search_web(query: str):
"""Search places, items, people, or current events online."""
serp_result = await tourist_scraper.aget_serp(
query, search_engine="duckduckgo", max_results=3
)
return serp_result
async def main():
llm = Ollama(model="ministral-3:3b", request_timeout=120.0)
agent = FunctionAgent(
tools=[search_web],
llm=llm,
system_prompt="You are a helpful assistant that can search the web for information.",
verbose=True,
)
response = await agent.run(
user_msg="Which country has the most medals in the 2026 winter olympics?"
)
print(str(response))
if __name__ == "__main__":
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tourist-0.4.0.tar.gz.
File metadata
- Download URL: tourist-0.4.0.tar.gz
- Upload date:
- Size: 366.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c85c040a6f80e3731da21c1a27addba5d779f0300619c547cffd678bac7f05fe
|
|
| MD5 |
034f102b7f7eb7fe312a985eb12cb508
|
|
| BLAKE2b-256 |
394f9104d751bd6808191b47a495280563ea1703e20fc3868852415c2b68c162
|
File details
Details for the file tourist-0.4.0-py3-none-any.whl.
File metadata
- Download URL: tourist-0.4.0-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4c42549b01002ca3c4080c9db92211ed6f32c084e7f1baeb37c310530d694f0
|
|
| MD5 |
c497b47c565400f62055eacccdbcb6c3
|
|
| BLAKE2b-256 |
1d66423f637dce309ab1554defb253e078eb99add17b4b3ea080acd7f31860d8
|