An unofficial API for character.ai for Python
Project description
CharacterAI
An unofficial API for Character AI for Python using Playwright
Installation
pip install characterai
Get TOKEN
For using library, you should get token
- Log in on character.ai
- Go to
Network
tab in DevTools and refresh page - Search
/dj-rest-auth/auth0/
- Copy
key
value
Get CHAR
This is a character ID, it's very easy to get it
- Open any chat
- Copy
char=
value from URL
Example
Chatting
Simple program for chatting with character
from characterai import pyCAI
token = 'TOKEN'
character = 'CHAR'
client = pyCAI(token)
while True:
send = input('You: ')
print(f'Character: {client.chat.send_message(character, send)}')
Functions
user
For information about the user, namely about you via a token, the answer is json
user.info()
user.posts()
user.followers()
user.following()
character
For character information, the answer is json
character.trending()
character.recommended()
character.categories()
character.get_info('CHAR')
chat
To work with the chat, get_history
answer is json
chat.get_history('CHAR')
chat.send_message('CHAR', 'YOUR MESSAGE')
Features
- The only library for character.ai
- Asynchronous
- So easy to use
Disclaimer
This library is written by a beginner in python, if you have any problems, write to me in Telegram
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
characterai-0.4.1.tar.gz
(4.8 kB
view details)
File details
Details for the file characterai-0.4.1.tar.gz
.
File metadata
- Download URL: characterai-0.4.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.9.6 requests/2.28.2 setuptools/58.1.0 requests-toolbelt/0.10.1 tqdm/4.65.0 CPython/3.9.0rc2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60a4bf00727c43993d76ba61a80b3860af7b253f4b24848ec10a8d186566c8b4 |
|
MD5 | 2e197ada79936ced736526155e601453 |
|
BLAKE2b-256 | b994b995366881321200d97683befaf8cbea687b64ef7de9eca0b0b03db5f84e |