랭킹으로 돌아가기
O365/python-o365
PythonA simple python library to interact with Microsoft Graph and Office 365 API
pythonmicrosoft-graph-apionedrivemailboxoffice-365-rest-apimicrosoft-apisharepointcalendaroutlookplannerexcelemail
주요 지표
스타 성장
스타
1.9k
포크
443
주간 성장
—
이슈
53
5001k1.5k
2015년 5월2017년 3월2019년 1월2020년 12월2022년 10월2024년 9월2026년 7월
아티팩트PyPI
pip install python-o365README
O365 - Microsoft Graph and related APIs made easy
This project aims to make interacting with the Microsoft api, and related apis, easy to do in a Pythonic way. Access to Email, Calendar, Contacts, OneDrive, Sharepoint, etc. Are easy to do in a way that feel easy and straight forward to beginners and feels just right to seasoned python programmer.
The project is currently developed and maintained by alejcas.
Core developers
We are always open to new pull requests!
Detailed docs and api reference on O365 Docs site
Quick example on sending a message:
from O365 import Account
credentials = ('client_id', 'client_secret')
account = Account(credentials)
m = account.new_message()
m.to.add('to_example@example.com')
m.subject = 'Testing!'
m.body = "George Best quote: I've stopped drinking, but only while I'm asleep."
m.send()
Why choose O365?
- Almost Full Support for MsGraph Rest Api.
- Good Abstraction layer for the Api.
- Full oauth support with automatic handling of refresh tokens.
- Automatic handling between local datetimes and server datetimes. Work with your local datetime and let this library do the rest.
- Change between different resource with ease: access shared mailboxes, other users resources, SharePoint resources, etc.
- Pagination support through a custom iterator that handles future requests automatically. Request Infinite items!
- A query helper to help you build custom OData queries (filter, order, select and search).
- Modular ApiComponents can be created and built to achieve further functionality.
This project was also a learning resource for us. This is a list of not so common python idioms used in this project:
- New unpacking technics:
def method(argument, *, with_name=None, **other_params): - Enums:
from enum import Enum - Factory paradigm
- Package organization
- Timezone conversion and timezone aware datetimes
- Etc. (see the code!)
관련 저장소