An interface to Microsoft Exchange Web Services (EWS). Allows the user to manipulate the outlook calendar events.
Project description
This module allows access to Microsoft Office 365 account calendars. It allows for personal, delegate, and service accounts.
Install
pip install exchange_interface
Example Script
import requests from exchange_interface import EWS import datetime ews = EWS( username='me@email.com', password='SuperSecretPassword', ) ews.Connected = lambda _, state: print('EWS', state) ews.Disconnected = lambda _, state: print('EWS', state) ews.NewCalendarItem = lambda _, item: print('NewCalendarItem(', item) ews.CalendarItemChanged = lambda _, item: print('CalendarItemChanged(', item) ews.CalendarItemDeleted = lambda _, item: print('CalendarItemDeleted(', item) ews.UpdateCalendar() print('Events happending now=', ews.GetNowCalItems()) print('Event(s) happening next=', ews.GetNextCalItems()) nowDT = datetime.datetime.now() nowPlus24hrs = nowDT + datetime.timedelta(days=1) print('Events happening in the next 24 hours=', ews.GetEventsInRange(startDT=nowDT, endDT=nowPlus24hrs)) # You can create a new event like this: ews.CreateCalendarEvent( subjec='Test Subject', body='Test Body', startDT=datetime.datetime.now(), endDT=datetime.datetime.now() + datetime.timedelta(hours=1), )
Service Accounts
import requests from exchange_interface import EWS ews = EWS( username='serviceAccount@email.com', password='SuperSecretPassword', # the service account password impersonation='roomAccount@email.com' )
Oauth
import requests from exchange_interface import EWS def GetAccessToken(): # do the oauth magic here return 'theOauthToken' ews = EWS( username='serviceAccount@email.com', oauthCallback=GetAccessToken, # this will be called before each HTTP request is sent impersonation='roomAccount@email.com' )
Project details
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 exchange_interface-0.0.1.tar.gz
.
File metadata
- Download URL: exchange_interface-0.0.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a145e39529883cb265ddc662c94476c30c3a328be6e2650bc9b01de5cec8daaf |
|
MD5 | 75356ff42365865275e76378895c5a1c |
|
BLAKE2b-256 | fe01dbb0525909c5fadc620c0780938da5ea6660be2176d4205baeae10a89207 |
File details
Details for the file exchange_interface-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: exchange_interface-0.0.1-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b83ae8a25d4d5948bbe872c0b7ae5ccfdb41829566083a5603ab9cea818e8404 |
|
MD5 | 31d4e2b241d8b4bdf00161e0960efb3c |
|
BLAKE2b-256 | 92c623233ab596fecaa405d6b03f843499d6c2ba6755d4f9bc4252c1309f269f |