12 lines
No EOL
384 B
Python
12 lines
No EOL
384 B
Python
def get(API, post_slug: str,) -> dict:
|
|
"""
|
|
Fetches the post data from the API.
|
|
|
|
Args:
|
|
post_slug (str): Slug of the post to fetch.
|
|
Returns:
|
|
dict: The post data.
|
|
"""
|
|
print(f"Fetching post from slug: {post_slug}")
|
|
post_data = API.make_request("GET", "content", f"post/id/{post_slug}", authenticate=True)
|
|
return post_data |