Client for Microsoft Exchange Web Services (EWS)
Project description
Exchange Web Services client library
This module is an ORM for your Exchange mailbox, providing Django-style access to all your data. It is a platform-independent, well-performing, well-behaving, well-documented, well-tested and simple interface for communicating with an on-premise Microsoft Exchange 2007-2016 server or Office365 using Exchange Web Services (EWS). Among other things, it implements autodiscover, and functions for searching, creating, updating, deleting, exporting and uploading calendar, mailbox, task, contact and distribution list items.
Teaser
Here's a short example of how exchangelib
works. Let's print the first
100 inbox messages in reverse order:
from exchangelib import Credentials, Account
credentials = Credentials('john@example.com', 'topsecret')
account = Account('john@example.com', credentials=credentials, autodiscover=True)
for item in account.inbox.all().order_by('-datetime_received')[:100]:
print(item.subject, item.sender, item.datetime_received)
Documentation
Documentation is available at https://ecederstrand.github.io/exchangelib/. Source code documentation is available at https://ecederstrand.github.io/exchangelib/exchangelib/.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file exchangelib-3.3.0.tar.gz
.
File metadata
- Download URL: exchangelib-3.3.0.tar.gz
- Upload date:
- Size: 201.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7e5e1c2ffdc0a2a1b5fb3f09e9fb16e2d5c6dd724237dbe895a772cf2695e5e |
|
MD5 | 375e0ba3f4ec6a9ca515ca3c0394838f |
|
BLAKE2b-256 | 1147aa0344d7d3b2afaaef0ccc26a9b55db773310ea95711b00b88db380e40d7 |
File details
Details for the file exchangelib-3.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: exchangelib-3.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 236.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0319c7be747019cb24a264d2f92ec1775242ac6ba75d173a9681d4fb308c331a |
|
MD5 | a88d6aa252d89a33bb974e77f31e736c |
|
BLAKE2b-256 | cec6622cadda340587c55300adb3fa9a435537c5d9e7ccc6ab8fac26b30cb834 |