From 4a52a71956a8d46fcb7294ac71734504bb09bcc2 Mon Sep 17 00:00:00 2001 From: S. Solomon Darnell Date: Fri, 28 Mar 2025 21:52:21 -0500 Subject: two version of R2R are here --- .../python3.12/site-packages/sendgrid/__init__.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .venv/lib/python3.12/site-packages/sendgrid/__init__.py (limited to '.venv/lib/python3.12/site-packages/sendgrid/__init__.py') diff --git a/.venv/lib/python3.12/site-packages/sendgrid/__init__.py b/.venv/lib/python3.12/site-packages/sendgrid/__init__.py new file mode 100644 index 00000000..cd994dd2 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/sendgrid/__init__.py @@ -0,0 +1,24 @@ +""" +This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via +Python. + +For more information on this library, see the README on GitHub. + http://github.com/sendgrid/sendgrid-python +For more information on the Twilio SendGrid v3 API, see the v3 docs: + http://sendgrid.com/docs/API_Reference/api_v3.html +For the user guide, code examples, and more, visit the main docs page: + http://sendgrid.com/docs/index.html + +Available subpackages +--------------------- +helpers + Modules to help with common tasks. +""" + +from .helpers.endpoints import * # noqa +from .helpers.mail import * # noqa +from .helpers.stats import * # noqa +from .helpers.eventwebhook import * # noqa +from .sendgrid import SendGridAPIClient # noqa +from .twilio_email import TwilioEmailAPIClient # noqa +from .version import __version__ -- cgit v1.2.3