A Python SDK for interacting with the Datura API service.
Project description
Datura
Datura API in Python
Installation
pip install datura-py
Usage
Import the package and initialize the Datura client with your API key:
from datura_py import Datura
datura = Datura(api_key="your-api-key")
Common requests
# Desearch AI Search
result = datura.ai_search(
prompt="Bittensor",
tools=[
"Web Search",
"Hacker News Search",
"Reddit Search",
"Wikipedia Search",
"Youtube Search",
"Twitter Search",
"ArXiv Search"
],
model="NOVA",
date_filter="PAST_24_HOURS",
streaming=False,
)
#Desearch Twitter post search
result = datura.twitter_links_search(
prompt="Bittensor",
model="NOVA",
)
#Desearch Web links search
result = datura.web_links_search(
prompt="Bittensor",
tools=[
"Web Search",
"Hacker News Search",
"Reddit Search",
"Wikipedia Search",
"Youtube Search",
"Twitter Search",
"ArXiv Search"
],
model="NOVA",
)
#Basic Twitter search
result = datura.basic_twitter_search(
query="Whats going on with Bittensor",
sort="Top",
user="elonmusk",
start_date="2024-12-01",
end_date="2025-02-25",
lang="en",
verified=True,
blue_verified=True,
is_quote=True,
is_video=True,
is_image=True,
min_retweets=1,
min_replies=1,
min_likes=1,
count=10
)
#Basic Web search
result = datura.basic_web_search(
query="latest news on AI",
num=10,
start=0
)
#Fetch Tweets by URLs
result = datura.twitter_by_urls(
urls=["https://twitter.com/elonmusk/status/1613000000000000000"]
)
#Fetch Tweets by ID
result = datura.twitter_by_id(id="123456789")
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
datura_py-0.0.13.tar.gz
(10.2 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 datura_py-0.0.13.tar.gz.
File metadata
- Download URL: datura_py-0.0.13.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
efb28515d6712dfac515df90e64ac0f1bdedc99d6e81147dc1091e00398dc805
|
|
| MD5 |
8fff8af1acfc2247dcdcf39b4e2f5a2e
|
|
| BLAKE2b-256 |
c362c7d67dd10ec70b20c2795a9173084d54e121853c64883a13f0c455c59513
|
File details
Details for the file datura_py-0.0.13-py3-none-any.whl.
File metadata
- Download URL: datura_py-0.0.13-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67a289a904b0668f563980c055e5d861b862016b9d1459a05d67c7a33323756a
|
|
| MD5 |
a4af9a99621b0dc4f8e152764dd23397
|
|
| BLAKE2b-256 |
262b53ae16fb835be2d256f24583f60c3ebb6fee7fbb79cfc47790a5526f0dd4
|