Skip to content

Commit 9c5fd96

Browse files
committed
🔥 Threads API added, 1.0.5
1 parent ae3f91c commit 9c5fd96

File tree

6 files changed

+205
-8
lines changed

6 files changed

+205
-8
lines changed

examples_threads.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from rocketapi import ThreadsAPI
2+
from rocketapi.exceptions import NotFoundException, BadResponseException
3+
4+
api = ThreadsAPI(token="put your token here")
5+
6+
# Get user feed by id
7+
user_id = 35670846775
8+
try:
9+
user = api.get_user_feed(user_id)
10+
print(user)
11+
except NotFoundException:
12+
print(f"User {user_id} not found")
13+
except BadResponseException:
14+
print(f"Can't get {user_id} feed from API")

rocketapi/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from .instagramapi import InstagramAPI
2+
from .threadsapi import ThreadsAPI

rocketapi/instagramapi.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33

44

55
class InstagramAPI(RocketAPI):
6-
def __init__(self, token, threads=1, max_timeout=30):
6+
def __init__(self, token, max_timeout=30):
77
"""
88
Instagram API client.
99
1010
Args:
1111
token (str): Your RocketAPI token (https://rocketapi.io/dashboard/)
12-
threads (int): Number of threads to use for requests (it's beta, use with caution, every thread charges 1 request)
1312
max_timeout (int): Maximum timeout for requests. Please, don't use values lower than 15 seconds, it may cause problems with API.
1413
1514
For debugging purposes you can use the following variables:
@@ -20,7 +19,7 @@ def __init__(self, token, threads=1, max_timeout=30):
2019
"""
2120
self.last_response = None
2221
self.counter = 0
23-
super().__init__(token, threads=threads, max_timeout=max_timeout)
22+
super().__init__(token, max_timeout=max_timeout)
2423

2524
def request(self, method, data):
2625
response = super().request(method, data)

rocketapi/rocketapi.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class RocketAPI:
5-
def __init__(self, token, threads=1, max_timeout=30):
5+
def __init__(self, token, max_timeout=30):
66
"""
77
RocketAPI client.
88
@@ -12,11 +12,9 @@ def __init__(self, token, threads=1, max_timeout=30):
1212
"""
1313
self.base_url = "https://v1.rocketapi.io/"
1414
self.token = token
15-
self.threads = threads
1615
self.max_timeout = max_timeout
1716

1817
def request(self, method, data):
19-
data["_threads"] = self.threads
2018
return requests.post(
2119
url=self.base_url + method,
2220
json=data,

rocketapi/threadsapi.py

+185
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
from rocketapi.exceptions import NotFoundException, BadResponseException
2+
from rocketapi.rocketapi import RocketAPI
3+
4+
5+
class ThreadsAPI(RocketAPI):
6+
def __init__(self, token, max_timeout=30):
7+
"""
8+
Threads API client.
9+
10+
Args:
11+
token (str): Your RocketAPI token (https://rocketapi.io/dashboard/)
12+
max_timeout (int): Maximum timeout for requests. Please, don't use values lower than 15 seconds, it may cause problems with API.
13+
14+
For debugging purposes you can use the following variables:
15+
last_response (dict): contains the last response from the API.
16+
counter (int): contains the number of requests made in the current session.
17+
18+
For more information, see documentation: https://docs.rocketapi.io/api/
19+
"""
20+
self.last_response = None
21+
self.counter = 0
22+
super().__init__(token, max_timeout=max_timeout)
23+
24+
def request(self, method, data):
25+
response = super().request(method, data)
26+
self.last_response = response
27+
self.counter += 1
28+
if response["status"] == "done":
29+
if (
30+
response["response"]["status_code"] == 200
31+
and response["response"]["content_type"] == "application/json"
32+
):
33+
return response["response"]["body"]
34+
elif response["response"]["status_code"] == 404:
35+
raise NotFoundException("Instagram resource not found")
36+
else:
37+
raise BadResponseException("Bad response from Threads")
38+
raise BadResponseException("Bad response from RocketAPI")
39+
40+
def search_users(self, query):
41+
"""
42+
Search for a specific user in Threads
43+
44+
Args:
45+
query (str): Username to search for
46+
47+
For more information, see documentation: https://docs.rocketapi.io/api/threads/search_users
48+
"""
49+
return self.request("threads/search_users", {"query": query})
50+
51+
def get_user_info(self, user_id):
52+
"""
53+
Retrieve Threads user information by id.
54+
55+
Args:
56+
user_id (int): User id
57+
58+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_info
59+
"""
60+
return self.request("threads/user/get_info", {"id": user_id})
61+
62+
def get_user_feed(self, user_id, max_id=None):
63+
"""
64+
Retrieve Threads user feed by id.
65+
66+
Args:
67+
user_id (int): User id
68+
max_id (str): Use for pagination
69+
70+
You can use the `max_id` parameter to paginate through the media (take from the `next_max_id` field of the response).
71+
72+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_feed
73+
"""
74+
payload = {"id": user_id}
75+
if max_id is not None:
76+
payload["max_id"] = max_id
77+
return self.request("threads/user/get_feed", payload)
78+
79+
def get_user_replies(self, user_id, max_id=None):
80+
"""
81+
Retrieve Threads user replies by id.
82+
83+
Args:
84+
user_id (int): User id
85+
max_id (str): Use for pagination
86+
87+
You can use the `max_id` parameter to paginate through the media (take from the `next_max_id` field of the response).
88+
89+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_replies
90+
"""
91+
payload = {"id": user_id}
92+
if max_id is not None:
93+
payload["max_id"] = max_id
94+
return self.request("threads/user/get_replies", payload)
95+
96+
def get_user_followers(self, user_id, max_id=None):
97+
"""
98+
Retrieve Threads user followers by id.
99+
100+
Args:
101+
user_id (int): User id
102+
max_id (str): Use for pagination
103+
104+
You can use the `max_id` parameter to paginate through followers (take from the `next_max_id` field of the response).
105+
106+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_followers
107+
"""
108+
payload = {"id": user_id}
109+
if max_id is not None:
110+
payload["max_id"] = max_id
111+
return self.request("threads/user/get_followers", payload)
112+
113+
def search_user_followers(self, user_id, query):
114+
"""
115+
Search Threads user followers by user id.
116+
117+
Args:
118+
user_id (int): User id
119+
query (str): Search query
120+
121+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_followers
122+
"""
123+
return self.request(
124+
"threads/user/get_followers", {"id": user_id, "query": query}
125+
)
126+
127+
def get_user_following(self, user_id, max_id=None):
128+
"""
129+
Retrieve Threads user following by id.
130+
131+
Args:
132+
user_id (int): User id
133+
max_id (str): Use for pagination
134+
135+
You can use the `max_id` parameter to paginate through followers (take from the `next_max_id` field of the response).
136+
137+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_following
138+
"""
139+
payload = {"id": user_id}
140+
if max_id is not None:
141+
payload["max_id"] = max_id
142+
return self.request("threads/user/get_following", payload)
143+
144+
def search_user_following(self, user_id, query):
145+
"""
146+
Search Threads user following by user id.
147+
148+
Args:
149+
user_id (int): User id
150+
query (str): Search query
151+
152+
For more information, see documentation: https://docs.rocketapi.io/api/threads/user/get_following
153+
"""
154+
return self.request(
155+
"threads/user/get_following", {"id": user_id, "query": query}
156+
)
157+
158+
def get_thread_replies(self, thread_id, max_id=None):
159+
"""
160+
Retrieve thread replies by id.
161+
162+
Args:
163+
thread_id (int): Thread id
164+
max_id (str): Use for pagination
165+
166+
You can use the `max_id` parameter to paginate through the media (take from the `paging_tokens["downwards"]` field of the response).
167+
168+
For more information, see documentation: https://docs.rocketapi.io/api/threads/thread/get_replies
169+
"""
170+
payload = {"id": thread_id}
171+
if max_id is not None:
172+
payload["max_id"] = max_id
173+
return self.request("threads/thread/get_replies", payload)
174+
175+
def get_thread_likes(self, thread_id):
176+
"""
177+
Retrieve thread likes by id.
178+
179+
Args:
180+
thread_id (int): Thread id
181+
182+
For more information, see documentation: https://docs.rocketapi.io/api/threads/thread/get_likes
183+
"""
184+
payload = {"id": thread_id}
185+
return self.request("threads/thread/get_likes", payload)

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44
setuptools.setup(
55
name="rocketapi",
6-
version="1.0.4",
6+
version="1.0.5",
77
author="RocketAPI",
88
author_email="[email protected]",
99
description="RocketAPI Python SDK",
1010
packages=["rocketapi"],
1111
url="https://github.com/rocketapi-io/rocketapi-python",
12-
download_url="https://github.com/rocketapi-io/rocketapi-python/archive/refs/tags/v1.0.4.tar.gz",
12+
download_url="https://github.com/rocketapi-io/rocketapi-python/archive/refs/tags/v1.0.5.tar.gz",
1313
install_requires=["requests"],
1414
)

0 commit comments

Comments
 (0)