Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ape-farcaster-0.8.0b0.tar.gz (862.7 kB view details)

Uploaded Source

Built Distribution

ape_farcaster-0.8.0b0-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file ape-farcaster-0.8.0b0.tar.gz.

File metadata

  • Download URL: ape-farcaster-0.8.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

Hashes for ape-farcaster-0.8.0b0.tar.gz
Algorithm Hash digest
SHA256 bbe07036f0843b30b16ea299fedc450667818bc6d65b74c056aba32fcd7aaa18
MD5 fadebec9a5bea27e168466986bd69541
BLAKE2b-256 e1de28fbef73311c9edb3ba3e3efc0f43ef6c62e084d288de391adab0cc7d2a7

See more details on using hashes here.

File details

Details for the file ape_farcaster-0.8.0b0-py3-none-any.whl.

File metadata

File hashes

Hashes for ape_farcaster-0.8.0b0-py3-none-any.whl
Algorithm Hash digest
SHA256 1ee8fc14012ee892a5d2b66ae7dbedf8c76f48b096f1b2541c4d625ff046785a
MD5 01abd174184b5711a60a262b27fa4b89
BLAKE2b-256 9af4f9cb428d4a293bcc5ec895e0015d7646417e05db46fbcf219ecf18a45eb2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page