Spaces:
Running
Running
irina.maksimova1
commited on
Commit
·
acf097c
1
Parent(s):
9ca2697
Fix username preprocessing in my_insta_analizer
Browse files
app.py
CHANGED
@@ -33,7 +33,6 @@ async def my_insta_analizer(username:str)-> str: #it's import to specify the ret
|
|
33 |
Args:
|
34 |
username: The Instagram username of the person whose profile needs to be analyzed. Always strats from "@". Example: @irusvvirus.
|
35 |
"""
|
36 |
-
username = username[1:]
|
37 |
DATA_ROOT = f"data/{username}"
|
38 |
MAX_SIZE = (144, 192)
|
39 |
TOP_K_POSTS = 12
|
|
|
33 |
Args:
|
34 |
username: The Instagram username of the person whose profile needs to be analyzed. Always strats from "@". Example: @irusvvirus.
|
35 |
"""
|
|
|
36 |
DATA_ROOT = f"data/{username}"
|
37 |
MAX_SIZE = (144, 192)
|
38 |
TOP_K_POSTS = 12
|