Twikit Grok
Project description
twikit_grok
Extension for using Grok with Twikit.
Installing
pip install twikit_grok
Quick Example
Streaming
import asyncio
from twikit_grok import Client
USERNAME = 'example_user'
EMAIL = 'email@example.com'
PASSWORD = 'password0000'
client = Client('en-US')
async def main():
# Login to an account
if os.path.exists('cookies.json'):
client.load_cookies('cookies.json')
else:
await client.login(
auth_info_1=USERNAME,
auth_info_2=EMAIL,
password=PASSWORD
)
client.save_cookies('cookies.json')
# Create a new conversation
conversation = await client.create_grok_conversation()
# Generate a response
async for chunk in conversation.stream('hello'):
print(chunk)
# Generate a response with images
attachments = [
await client.upload_grok_attachment('image1.jpg'),
await client.upload_grok_attachment('image2.jpg')
]
async for chunk in conversation.stream('please describe these images', attachments):
print(chunk)
# Continue from an existing conversation
conversation = await client.get_grok_conversation('123456789') # Get conversation by ID
async for chunk in conversation.stream('hello'):
print(chunk)
asyncio.run(main())
Non Streaming
conversation = await client.create_grok_conversation()
content = await conversation.generate('generate images of cats.')
await content.attachments[0].download('image.jpg')
content2 = await conversation.generate('hello')
print(content2.message)
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
twikit_grok-0.0.3.tar.gz
(7.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file twikit_grok-0.0.3.tar.gz.
File metadata
- Download URL: twikit_grok-0.0.3.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ad28857b3fc7c12d0d076ecbea32f475b974f37ca899626802394b2909d0d85
|
|
| MD5 |
40737819a06aedd9cf12e474ceadc7a6
|
|
| BLAKE2b-256 |
25449c1390ec35c5332ad9aaa98b4982254e3af02890f2f094c9b548f335ee2a
|
File details
Details for the file twikit_grok-0.0.3-py3-none-any.whl.
File metadata
- Download URL: twikit_grok-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f886f8e2b3380109ae9448417ab3caf6c4bed0a45bf501790bb435ad77277cc1
|
|
| MD5 |
af6e79b6d7ce986c87bb20eea0ae9050
|
|
| BLAKE2b-256 |
13ba692128b624112858f45a1015d25cb5fe8864eb948105384d7ceb30b2d9b7
|