Client for Microsoft Exchange Web Services (EWS)
Project description
This module provides an well-performing interface for communicating with a Microsoft Exchange 2007-2016 Server or Office365 using Exchange Web Services (EWS). It currently only implements autodiscover and functions for manipulating calendar items.
Usage
Here is a simple example that inserts, retrieves and deletes calendar items in an Exchange calendar:
from exchangelib import DELEGATE, services from exchangelib.configuration import Configuration from exchangelib.account import Account from exchangelib.ewsdatetime import EWSDateTime, EWSTimeZone from exchangelib.folders import CalendarItem year, month, day = 2016, 3, 20 tz = EWSTimeZone.timezone('Europe/Copenhagen') calendar_items = [] for hour in range(7, 17): calendar_items.append(CalendarItem( start=tz.localize(EWSDateTime(year, month, day, hour, 30)), end=tz.localize(EWSDateTime(year, month, day, hour+1, 15)), subject='Test item', body='Hello from Python', location='devnull', categories=['foo', 'bar'], )) config = Configuration(username='MYWINDOMAIN\myusername', password='topsecret') account = Account(primary_smtp_address='john@example.com', config=config, autodiscover=True, access_type=DELEGATE) res = account.calendar.add_items(calendar_items) print(res) ids = account.calendar.find_items( start=tz.localize(EWSDateTime(year, month, day)), end=tz.localize(EWSDateTime(year, month, day+1)), categories=['foo', 'bar'], shape=services.IdOnly, ) print(ids) res = account.calendar.delete_items(ids) print(res)
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
exchangelib-1.3.6.tar.gz
(44.7 kB
view details)
File details
Details for the file exchangelib-1.3.6.tar.gz
.
File metadata
- Download URL: exchangelib-1.3.6.tar.gz
- Upload date:
- Size: 44.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dedb53b7b6a0474516d865dcae0bfb19b0af473880f9107bfe4f2c63ae625847 |
|
MD5 | 2fcc5416a4de0172b18f293637178b18 |
|
BLAKE2b-256 | 0d0c87088ba12769f47f6e3dcc1273f9ac6c86be0ccd03e41d0bb0c18a311e1d |