aa_agent_tools - a friendly, Pyodide-ready toolbox of cool functions for kid-built agents (web search, fetch pages, email, AI, weather, and tons of fun stuff).
Project description
๐ ๏ธ aa_agent_tools
A friendly toolbox of cool functions for kid-built agents.
aa_agent_tools gives your Python agents super-powers: search the web, read pages,
send emails, check the weather, grab space pictures from NASA, roll dice, fetch
cat facts, and a whole lot more โ 38 functions, all listed below with
copy-paste examples.
๐ You bring the API keys. We never store them. Just pass them as arguments when you call a function. Look for the ๐ badge below (those need a key) and the ๐ badge (those are totally free, no key at all!).
๐ Quick start
import aa_agent_tools as aa
# No key needed โ just fun!
print(aa.get_joke())
print(aa.get_cat_fact())
print(aa.get_pokemon("pikachu")["types"])
print(aa.flip_coin())
print(aa.number_fact(7))
# With a key you supply
results = aa.search_web("cute penguins", api_key="YOUR_BRAVE_KEY")
print(results)
Want the pretty, searchable version? Open the ๐ HTML Reference Page in your browser.
๐ The full function reference
Every function is listed below, grouped by what it does. Each one shows a short, friendly description and a copy-paste example you can try right away.
- ๐ = needs an API key (you pass it as an argument)
- ๐ = totally free, no key needed
๐ Web & Search
search_web(query, api_key) ๐
Search the internet with Brave and get back a tidy list of results (title, link, snippet).
results = aa.search_web("best robots for kids", api_key="YOUR_BRAVE_KEY")
print(results)
search_images(query, api_key, count=5) ๐
Search for pictures on the web using Brave Search.
pics = aa.search_images("puppies", api_key="YOUR_BRAVE_KEY")
print(pics[0]["url"])
fetch_page(url) ๐
Download any web page and turn it into clean text (Markdown). Great for reading articles.
text = aa.fetch_page("https://en.wikipedia.org/wiki/Penguin")
print(text[:300])
โ๏ธ Email
send_email(to, subject, body, *, smtp_host, username, password) ๐
Send a plain-text email through almost any email provider's SMTP server.
aa.send_email(
to="friend@example.com",
subject="Hello from my agent!",
body="My robot wrote this.",
smtp_host="smtp.gmail.com",
username="you@gmail.com",
password="app-password",
)
send_email_gmail(to, subject, body, *, gmail, app_password) ๐
Send an email using a Gmail account (use a 16-character app password).
aa.send_email_gmail(
to="friend@example.com",
subject="hi!",
body="sent from aa_agent_tools",
gmail="you@gmail.com",
app_password="abcd efgh ijkl mnop",
)
๐ค Any API
call_api(url, api_key=None, *, method="GET", ...) ๐
Call almost any REST API in one line. You give it a URL and (if the API needs one) a key. No key needed for public APIs.
city = input("Enter your city: ")
data = aa.call_api(
"https://api.weatherapi.com/v1/current.json?key=key&q={city}&aqi=no"
)
current = data["current"]
print(current["temp_c"])
๐ค๏ธ Weather
get_weather(city, api_key) ๐
Get the current weather for any city in the world (OpenWeatherMap).
w = aa.get_weather("London", api_key="YOUR_OWM_KEY")
print(f"{w['temp']}ยฐC and {w['description']}")
get_forecast(city, api_key, days=3) ๐
Get a short multi-day forecast for a city (OpenWeatherMap).
fc = aa.get_forecast("Tokyo", api_key="YOUR_OWM_KEY", days=3)
print(fc)
๐ Space
space_image(date=None, api_key="DEMO_KEY") ๐
Get NASA's Astronomy Picture of the Day ("DEMO_KEY" works for light use).
pic = aa.space_image()
print(pic["title"], pic["url"])
near_earth_objects(api_key="DEMO_KEY", *, start_date=None, end_date=None) ๐
List asteroids flying near Earth in a date range (NASA NeoWs).
aa.near_earth_objects(api_key="DEMO_KEY", start_date="2024-01-01", end_date="2024-01-07")
mars_photo(*, sol=1000, api_key="DEMO_KEY") ๐
Fetch a real photo taken by a rover on Mars (NASA).
print(aa.mars_photo(sol=1000, api_key="DEMO_KEY"))
๐ Fun & Games
get_joke() ๐
Get a random, clean joke with a setup and punchline.
j = aa.get_joke()
print(j["setup"]); print(j["punchline"])
get_advice() ๐
Get a random piece of (silly but wise) advice.
print(aa.get_advice())
get_cat_fact() ๐
Get a random fact about cats.
print(aa.get_cat_fact())
get_cat_image() ๐
Get a link to a random photo of a cat.
print(aa.get_cat_image())
get_dog_image() ๐
Get a random photo of a good dog.
print(aa.get_dog_image())
get_quote() ๐
Get an inspirational quote and who said it.
q = aa.get_quote()
print(f'"{q["text"]}" - {q["author"]}')
roll_dice(sides=6) ๐
Roll a die with any number of sides (default 6).
print(aa.roll_dice(20))
flip_coin() ๐
Flip a coin: returns "heads" or "tails".
print(aa.flip_coin())
random_number(min_value=1, max_value=100) ๐
Pick a random whole number between two values.
print(aa.random_number(1, 100))
pick_one(*items) ๐
Randomly pick one item from the ones you list.
print(aa.pick_one("red", "green", "blue"))
get_pokemon(name="pikachu") ๐
Look up a Pokรฉmon by name: its type, height, and a picture.
p = aa.get_pokemon("charizard")
print(p["name"], p["types"])
๐ Knowledge
wikipedia_summary(title) ๐
Get a short, friendly summary of almost any Wikipedia topic.
info = aa.wikipedia_summary("Aurora")
print(info["summary"])
define_word(word) ๐
Get the dictionary definition and an example sentence for a word.
d = aa.define_word("serendipity")
print(d["definitions"][0])
number_fact(number) ๐
Get a fun, fact-packed description of any number (works offline!).
print(aa.number_fact(7))
country_info(name) ๐
Get a friendly snapshot of a country using Wikipedia.
c = aa.country_info("Japan")
print(c["summary"][:80])
convert_money(amount, from_currency, to_currency) ๐
Convert money between currencies using live rates (no key needed).
print(aa.convert_money(10, "USD", "EUR"))
shorten_url(url) ๐
Make a long URL short using the free is.gd service.
print(aa.shorten_url("https://example.com/very/long/path"))
๐ผ๏ธ Images
get_photo(query, api_key) ๐
Search free stock photos on Pexels and get image links.
for url in aa.get_photo("mountains", api_key="YOUR_PEXELS_KEY"):
print(url)
random_image(*, width=400, height=300, seed=None) ๐
Get a random photo of any size (no key needed).
print(aa.random_image(width=600, height=400, seed="sunset"))
๐งฐ Text Tools
hash_text(text, *, algorithm="sha256") ๐
Turn text into a fixed "fingerprint" hash (sha256 by default).
print(aa.hash_text("hello"))
base64_encode(text) ๐
Encode text into Base64 (a common way to pack data).
print(aa.base64_encode("hi"))
base64_decode(text) ๐
Decode Base64 text back to normal text.
print(aa.base64_decode("aGk="))
make_qr(text, *, size=200) ๐
Make a QR code image for text or a link (returns a URL).
print(aa.make_qr("https://example.com"))
convert_units(value, from_unit, to_unit) ๐
Convert between length or weight units.
print(aa.convert_units(1, "mi", "km")) # ~1.609
print(aa.convert_units(1, "kg", "lb")) # ~2.205
count_words(text) ๐
Count how many words are in some text.
print(aa.count_words("one two three"))
reverse_text(text) ๐
Reverse a string backwards.
print(aa.reverse_text("abc")) # cba
is_palindrome(text) ๐
Is the text the same forwards and backwards?
print(aa.is_palindrome("Racecar")) # True
๐ Where to get API keys
Most "cool" functions need a free key from the service. You only need the ones you want to use:
- Brave Search (web & image search): https://brave.com/search/api/
- OpenWeatherMap (weather): https://openweathermap.org/api
- NASA (space): https://api.nasa.gov/ โ use
"DEMO_KEY"for light use - Pexels (stock photos): https://www.pexels.com/api/
- Gmail (email): create an app password at https://myaccount.google.com/apppasswords
Functions that need no key at all: get_joke, get_advice, get_cat_fact,
get_cat_image, get_dog_image, get_quote, roll_dice, flip_coin,
random_number, pick_one, get_pokemon, wikipedia_summary, define_word,
number_fact, country_info, convert_money, shorten_url, random_image,
fetch_page, call_api (key optional), and all the Text Tools.
๐ ๏ธ Development
uv build # build wheel + sdist
PYTHONPATH=src python make_reference.py # regenerate docs/reference.html
The build produces a pure-Python wheel tagged py3-none-any, which is exactly
what micropip needs inside Pyodide.
Made with ๐ for young coders and the agents they build.
Project details
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 aa_agent_tools-0.1.2.tar.gz.
File metadata
- Download URL: aa_agent_tools-0.1.2.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bfaed6a024cbc7ebcf67ad1b4d747cb9807a49819f7ea116c0a4e385bfcadef
|
|
| MD5 |
16e79488218dad2bfb64f6b72e1b1acb
|
|
| BLAKE2b-256 |
54c4bb3989b9e2abbe36622c942bcfe3c4573600f5ba56c146e710819a8723d6
|
File details
Details for the file aa_agent_tools-0.1.2-py3-none-any.whl.
File metadata
- Download URL: aa_agent_tools-0.1.2-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a521d0a4f2e723a5a3de12e7b83e50e22f924e597202a9c4dbf8e654d365a4b
|
|
| MD5 |
9a36285f8375945aad6d65243645f5b1
|
|
| BLAKE2b-256 |
5e8071f9d6eb2e8d9e786bf047e5d205dbd5d8553c2444868ef725b5f3b91e07
|