Spaces:
Running
Running
raannakasturi
commited on
Commit
·
19f6a3d
1
Parent(s):
dcc4dc2
Remove debug print statements for summary and mindmap in paper_data function
Browse files
main.py
CHANGED
@@ -46,9 +46,7 @@ def paper_data(paper_data, wait_time=5):
|
|
46 |
title = html.escape(str(title).strip())
|
47 |
citation = html.escape(str(citation).strip())
|
48 |
summary = html.escape(str(summary).strip())
|
49 |
-
print(summary)
|
50 |
mindmap = html.escape(str(mindmap).strip())
|
51 |
-
print(mindmap)
|
52 |
status = post_blog(doi, title, category, summary, mindmap, citation, access_key, wait_time)
|
53 |
except Exception as e:
|
54 |
print(f"Error posting blog '{title}': {e}")
|
|
|
46 |
title = html.escape(str(title).strip())
|
47 |
citation = html.escape(str(citation).strip())
|
48 |
summary = html.escape(str(summary).strip())
|
|
|
49 |
mindmap = html.escape(str(mindmap).strip())
|
|
|
50 |
status = post_blog(doi, title, category, summary, mindmap, citation, access_key, wait_time)
|
51 |
except Exception as e:
|
52 |
print(f"Error posting blog '{title}': {e}")
|