Simplify interaction with the Rave API using this unofficial Python wrapper. Perform actions like retrieving project details, creating new projects, and updating existing ones.
Install the package using pip:
pip install rave.pyHere's a simple example of logging in and getting the token:
import rave
# Create a Rave client instance
client = rave.Client()
# Prompt the user for their email
email_input = input("Enter your email: ")
# Initiate authentication, returning an authentication token once the email is verified
authentication_result = client.authenticate(email_input)
# Extract and print the token (excluding the first two characters)
print("Your authentication token is:", authentication_result.token[2:])For more details, refer to the upcoming documentation.
Contributions are welcome! Report bugs or suggest features by creating GitHub issues. Contribute code by forking the repository and submitting a pull request.
Questions or discussions about the package can be held on our Discord community. Join us today!