Update requirements with sendgrid email from streamlit app
Browse files- requirements.txt +13 -1
requirements.txt
CHANGED
@@ -1,7 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
streamlit
|
2 |
pandas
|
3 |
# json
|
4 |
# os
|
5 |
datetime
|
6 |
groq
|
7 |
-
reportlab # For PDF generation
|
|
|
|
|
|
1 |
+
# requirements.txt - versie van 09-11-2024
|
2 |
+
# met toegevoegd python lib sendgrid, om email vanuit Python te kunnen versturen via de sendgrid API
|
3 |
+
#
|
4 |
+
# Using SendGrid's Python Library
|
5 |
+
# https://github.com/sendgrid/sendgrid-python
|
6 |
+
# Email API Quickstart: How to Send Email with Python | SendGrid Docs | Twilio
|
7 |
+
# https://www.twilio.com/docs/sendgrid/for-developers/sending-email/quickstart-python
|
8 |
+
# In this quickstart, you'll learn how to send your first email using the Twilio SendGrid Mail Send APIand Python.
|
9 |
+
#!pip install sendgrid
|
10 |
+
|
11 |
streamlit
|
12 |
pandas
|
13 |
# json
|
14 |
# os
|
15 |
datetime
|
16 |
groq
|
17 |
+
reportlab # For PDF generation
|
18 |
+
|
19 |
+
sendgrid
|