Skip to main content

farcaster-py is a Python SDK for the Farcaster Protocol

Project description

farcaster-py

Note: This project is not actively maintained, but we welcome external contributions and forks. If you’d like to contribute, please open a PR or fork this repository.

Build status Python Version Dependencies Status Code style: black Security: bandit Pre-commit Semantic Versions License Coverage Report chat

farcaster-py is a modern Python SDK for the Farcaster protocol

Full documentation can be found here

Installation

pip install -U farcaster

or install with Poetry:

poetry add farcaster

Usage

This SDK leverages the Warpcast API. Warpcast is one of many Farcaster clients. As more APIs are created and hosted by different clients, these will be added to the SDK.

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. The full specification can be found on the Reference page.

Please note that support for Python 3.8 is no longer actively maintained. Python 3.9, or 3.10+ are recommended.

🛡 License

License

This project is licensed under the terms of the MIT license. See LICENSE for more details.

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. a16z is not liable for any use of the foregoing, and users should proceed with caution and use at their own risk. See our disclosures page for more info.

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

farcaster-0.7.12.tar.gz (16.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

farcaster-0.7.12-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file farcaster-0.7.12.tar.gz.

File metadata

  • Download URL: farcaster-0.7.12.tar.gz
  • Upload date:
  • Size: 16.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.10.9 Linux/6.8.0-1021-azure

File hashes

Hashes for farcaster-0.7.12.tar.gz
Algorithm Hash digest
SHA256 0dba9be4439a2283d6c1a7c51560fb069170f007593f6efd2dfa2799dab07c05
MD5 552d10df016b0f3fca0ac7960fe4dc24
BLAKE2b-256 ce3ced98333598139be910030b26ba8bd40fad25a593beb4db2ab08af94a9465

See more details on using hashes here.

File details

Details for the file farcaster-0.7.12-py3-none-any.whl.

File metadata

  • Download URL: farcaster-0.7.12-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.10.9 Linux/6.8.0-1021-azure

File hashes

Hashes for farcaster-0.7.12-py3-none-any.whl
Algorithm Hash digest
SHA256 efb6e1f9bd113995a543baa548f92bb0e7d55b932eefa0f4522ca2454e5181ad
MD5 3cdee4696cadf2bc534101076b57962e
BLAKE2b-256 f3085b7ec62b086fcb726f19b4f317ca856e2162f6f2b4f204431f99d368b9cd

See more details on using hashes here.

Supported by

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