You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
288 B
10 lines
288 B
2 years ago
|
import re
|
||
|
from utils import print_substep
|
||
|
|
||
|
def id(reddit_obj: dict):
|
||
|
"""
|
||
|
This function takes a reddit object and returns the post id
|
||
|
"""
|
||
|
id = re.sub(r"[^\w\s-]", "", reddit_obj["thread_id"])
|
||
|
print_substep(f"Thread ID is {id}", style="bold blue")
|
||
|
return id
|