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/.
Release files for exchangelib 5.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| exchangelib-5.6.0.tar.gz | 212.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| exchangelib-5.6.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 455.8 kB
Release files / exchangelib-5.6.0.tar.gz
| Download URL | exchangelib-5.6.0.tar.gz |
|---|---|
| Size | 212.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a65cffba3b4d1166347059e88b1f11eae9a9d70119c3ad9b33389d7258f6181c
|
|
BLAKE2b-256 checksum How to use checksums |
79809b4ceca48c3b8b7f33cd8164e0a03ae2410fb313309ac681850dc46bc502
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.0
|
Release files / exchangelib-5.6.0-py3-none-any.whl
| Download URL | exchangelib-5.6.0-py3-none-any.whl |
|---|---|
| Size | 243.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7d843ff56f41f3a1eaff73e4bbb4ecce21957aa52b65bef01440414ffbba377e
|
|
BLAKE2b-256 checksum How to use checksums |
8aaed99bf36bcf539f6ee270a1b6c478ad8f40f6469a77d9c0986f8def646369
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.2.0 CPython/3.14.0
|