New mail type
This commit is contained in:
parent
4406e63dcb
commit
192bc24ca0
@ -19,65 +19,97 @@ current_items = []
|
|||||||
|
|
||||||
while True:
|
while True:
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
with open("../../output_shared.json", "r") as file:
|
d = requests.get(
|
||||||
d = requests.get(
|
f"https://api.zotero.org/groups/2611287/collections?key={zotero_key}"
|
||||||
f"https://api.zotero.org/groups/2611287/collections?key={zotero_key}"
|
)
|
||||||
|
|
||||||
|
with open("../../data/shared_collections.txt", "w") as output:
|
||||||
|
json.dump(d.json(), output)
|
||||||
|
i = 0
|
||||||
|
for col in d.json():
|
||||||
|
l = requests.get(
|
||||||
|
f"""https://api.zotero.org/groups/2611287/collections/{col['key']}/items?key={zotero_key}"""
|
||||||
)
|
)
|
||||||
with open("../../data/shared_collections.txt", "w") as output:
|
with open(f"../../data/shared_items_collection_{i}.txt", "w") as output0:
|
||||||
json.dump(d.json(), output)
|
json.dump(l.json(), output0)
|
||||||
i = 0
|
i += 1
|
||||||
for col in d.json():
|
for item in l.json():
|
||||||
|
couple = (col["key"], item["key"])
|
||||||
|
if couple in current_items:
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
current_items.append(couple)
|
||||||
|
try:
|
||||||
|
sender = os.getenv("EMAIL")
|
||||||
|
password = os.getenv("PASSWORD")
|
||||||
|
receivers = [mail, mail1, mail2]
|
||||||
|
smtp_serv = os.getenv("SERVER")
|
||||||
|
port = 587
|
||||||
|
from email.message import EmailMessage
|
||||||
|
|
||||||
l = requests.get(
|
msg = EmailMessage()
|
||||||
f"""https://api.zotero.org/groups/2611287/collections/{col['key']}/items?key={zotero_key}"""
|
content = f"""
|
||||||
)
|
A new item as been added to our Zotero shared library {item['library']['name']} by
|
||||||
with open(f"../../data/shared_items_collection_{i}.txt", "w") as output0:
|
{item['meta']['createdByUser']['username']}.
|
||||||
json.dump(l.json(), output0)
|
The new article is :
|
||||||
i += 1
|
- Title : {item['data']['title']}
|
||||||
for item in l.json():
|
|
||||||
couple = (col["key"], item["key"])
|
|
||||||
if couple in current_items:
|
|
||||||
continue
|
|
||||||
else:
|
|
||||||
current_items.append(couple)
|
|
||||||
try:
|
|
||||||
sender = os.getenv("EMAIL")
|
|
||||||
password = os.getenv("PASSWORD")
|
|
||||||
receivers = ["adrienrsn@gmail.com"]
|
|
||||||
smtp_serv = os.getenv("SERVER")
|
|
||||||
port = 587
|
|
||||||
from email.message import EmailMessage
|
|
||||||
|
|
||||||
msg = EmailMessage()
|
- Authors : {[
|
||||||
content = f"""
|
" ".join([it["firstName"], it["lastName"]])
|
||||||
A new item as been added to our Zotero shared library {item['library']['name']} by
|
|
||||||
{item['meta']['createdByUser']['username']}.
|
|
||||||
|
|
||||||
The new article is :
|
|
||||||
|
|
||||||
- Title : {item['data']['title']}
|
|
||||||
|
|
||||||
- Authors : {[
|
|
||||||
" ".join([it["firstName"], it["lastName"]])
|
|
||||||
for it in item["data"]["creators"]
|
for it in item["data"]["creators"]
|
||||||
]}
|
]}
|
||||||
- Date : {item['data']['date']}
|
- Date : {item['data']['date']}
|
||||||
|
|
||||||
- URL : {item['data']['url']}
|
- URL : {item['data']['url']}
|
||||||
|
|
||||||
- Abstract : {item['data']['abstractNote']}
|
- Abstract : {item['data']['abstractNote']}
|
||||||
"""
|
"""
|
||||||
|
msg[
|
||||||
|
"Subject"
|
||||||
|
] = f"""New document {item["data"]["title"]} in {item['library']['name']} by {item['meta']['createdByUser']['username']}"""
|
||||||
|
msg["From"] = os.getenv("EMAIL")
|
||||||
|
msg["To"] = ", ".join(receivers)
|
||||||
|
msg.set_content(content)
|
||||||
|
with smtplib.SMTP(smtp_serv, port) as server:
|
||||||
|
server.login(sender, password)
|
||||||
|
server.send_message(msg)
|
||||||
|
# authors = [
|
||||||
|
# " ".join([it["firstName"], it["lastName"]])
|
||||||
|
# for it in item["data"]["creators"]
|
||||||
|
# ]
|
||||||
|
# with open("../../data/buffer.txt", "w") as buffer:
|
||||||
|
|
||||||
msg[
|
# data_json = str(
|
||||||
"Subject"
|
# {
|
||||||
] = f"""New document {item["data"]["title"]} in {item['library']['name']} by {item['meta']['createdByUser']['username']}"""
|
# "title": str(item["data"]["title"])
|
||||||
msg["From"] = os.getenv("EMAIL")
|
# + " -"
|
||||||
msg["To"] = ", ".join(receivers)
|
# + " ".join(authors),
|
||||||
msg.set_content(content)
|
# "body": f"""
|
||||||
|
# - Date : {item['data']['date']}
|
||||||
with smtplib.SMTP(smtp_serv, port) as server:
|
# - URL : {item['data']['url']}
|
||||||
server.login(sender, password)
|
# - Abstract : {item['data']['abstractNote']}
|
||||||
server.send_message(msg)
|
# - Key Words:
|
||||||
except KeyError:
|
# - General subject:
|
||||||
continue
|
# - Specific subject:
|
||||||
#
|
# - Hypothesis:
|
||||||
|
# - Methodology:
|
||||||
|
# - Result(s):
|
||||||
|
# - Summary of key points:
|
||||||
|
# - Context (how this article relates to other work in the field; how it ties in with key issues
|
||||||
|
# and findings by others, including yourself):
|
||||||
|
# - Significance (to the field; in relation to your own work):
|
||||||
|
# - Important Figures and/or Tables (brief description; page number):
|
||||||
|
# - Cited References to follow up on (cite those obviously related to your topic AND any
|
||||||
|
# papers frequently cited by others because those works may well prove to be essential as
|
||||||
|
# you develop your own work):
|
||||||
|
# - Your comments on the work:
|
||||||
|
# - How this reading relates to others you have read:
|
||||||
|
# """,
|
||||||
|
# }
|
||||||
|
# )
|
||||||
|
# buffer.write(data_json)
|
||||||
|
# os.system(
|
||||||
|
# f"""curl http://localhost:41184/notes?token={joplin_key} -d @../../data/buffer.txt"""
|
||||||
|
# )
|
||||||
|
except KeyError:
|
||||||
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user