Skip to content

Commit bd17aee

Browse files
committed
Minor changes
1 parent f290b88 commit bd17aee

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

O365/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
2-
A simple python library to interact with Microsoft Graph
2+
A simple python library to interact with Microsoft Graph and other MS api
33
"""
4+
45
import warnings
56
import sys
67

@@ -14,4 +15,4 @@
1415

1516
if sys.warnoptions:
1617
# allow Deprecation warnings to appear
17-
warnings.simplefilter('always', DeprecationWarning)
18+
warnings.simplefilter("always", DeprecationWarning)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
[![PyPI](https://img.shields.io/pypi/v/O365.svg)](https://pypi.python.org/pypi/O365)
33
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/O365.svg)](https://pypi.python.org/pypi/O365/)
44

5-
# O365 - Microsoft Graph and Office 365 API made easy
5+
# O365 - Microsoft Graph and related APIs made easy
66

7-
This project aims to make interacting with the Microsoft Graph api easy to do in a Pythonic way.
8-
Access to Email, Calendar, Contacts, OneDrive, etc. Are easy to do in a way that feel easy and straight forward to beginners and feels just right to seasoned python programmer.
7+
This project aims to make interacting with the Microsoft api, and related apis, easy to do in a Pythonic way.
8+
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.
99

1010
The project is currently developed and maintained by [alejcas](https://github.com/alejcas).
1111

0 commit comments

Comments
 (0)