ape-farcaster is a Python SDK for the Farcaster Protocol
Project description
ape-farcaster
ape-farcaster is a modern Python SDK for the Farcaster protocol
Full documentation can be found
Installation
pip install -U farcaster
or install with Poetry:
poetry add farcaster
Usage
To use the Warpcast API you need to have a Farcaster account. We will use the mnemonic or private key of the Farcaster custody account (not your main wallet) to connect to the API.
First, save your Farcaster mnemonic or private key to a .env
file. Now you can initialize the client, and automatically connect to the Farcaster API!
import os
from farcaster import Warpcast
from dotenv import load_dotenv # can be installed with `pip install python-dotenv`
load_dotenv()
client = Warpcast(mnemonic=os.environ.get("<MNEMONIC_ENV_VAR>"))
print(client.get_healthcheck())
Examples
Get a cast
response = client.get_cast("0x321712dc8eccc5d2be38e38c1ef0c8916c49949a80ffe20ec5752bb23ea4d86f")
print(response.cast.author.username) # "dwr"
Publish a cast
response = client.post_cast(text="Hello world!")
print(response.cast.hash) # "0x...."
Get a user by username
user = client.get_user_by_username("mason")
print(user.username) # "mason"
Get a user's followers using a fid (farcaster ID)
response = client.get_followers(fid=50)
print(response.users) # [user1, user2, user3]
Stream recent casts
for cast in client.stream_casts():
if cast:
print(cast.text) # "Hello world!"
Get users who recently joined Farcaster
response = client.get_recent_users()
print(response.users) # [user1, user2, user3]
Get your own user object
user = client.get_me()
print(user.username) # "you"
Recast a cast
response = client.recast("0x....")
print(response.cast.hash) # "0x...."
and many, many more things.
Please note that support for Python 3.7 is no longer actively maintained. Python 3.8, 3.9, or 3.10 are recommended.
🛡 License
Disclaimer
_This code is being provided as is. No guarantee, representation or warranty is being made, express or implied, as to the safety or correctness of the code. It has not been audited and as such there can be no assurance it will work as intended, and users may experience delays, failures, errors, omissions or loss of transmitted information. Nothing in this repo should be construed as investment advice or legal advice for any particular facts or circumstances and is not meant to replace competent counsel. It is strongly advised for you to contact a reputable attorney in your jurisdiction for any questions or concerns with respect thereto.
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
File details
Details for the file ape-farcaster-0.7.0b0.tar.gz
.
File metadata
- Download URL: ape-farcaster-0.7.0b0.tar.gz
- Upload date:
- Size: 862.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c08acd19e5a8139137b6dafe64e600cb5b0ec302cfab74faf48bc9f7be9586a5 |
|
MD5 | 9f0716eec1290e3b5233bf4af030dc4b |
|
BLAKE2b-256 | c660a111753a756a1cfe28397f254cc2bdd367cb656290ab31b58e6fa982a3f2 |
File details
Details for the file ape_farcaster-0.7.0b0-py3-none-any.whl
.
File metadata
- Download URL: ape_farcaster-0.7.0b0-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd3b113a8761eac38228cd14be37831ad7a1dfff425c3e79dbbffd5824c297cb |
|
MD5 | fe8797eaa461a4c85c543b236cc12ef1 |
|
BLAKE2b-256 | 6d304c766dec035b27f1019743f948622d04b88960a9a9cd946dac875668d73d |