Python library for working with Microsoft Office 365
Project description
Python-office365 - Office365 for your server
===========================================
The objective of office365api is to make it easy to make scripts and
applications that are to be run against an Office 365 account.
If you wanted to script retrieving an email it could be as simple as:
.. code:: python
from office365api import Mail
auth = ('YourAccount@office365.com', 'YourPassword')
mail = Mail(auth=auth)
messages = mail.inbox.get_messages()
And sending an email like this.
.. code:: python
from office365api import Message, Mail
from office365api.model import Recipient, EmailAddress
auth = ('YourAccount@office365.com', 'YourPassword')
message = Message(Subject='Heads up', Body='First automated alarm.',
From=Recipient(EmailAddress=EmailAddress(Name='Full Name', Address='you@gmail.com')),
ToRecipients= [Recipient.from_email(email='somebody@gmail.com')]
)
m = Mail(auth=auth)
m.send_message(message)
Gotchas
-------
Currently writen against v 1.0 of outlook rest api, in the future v 2.0
will be added. May be even graph rest api. However probably as a
separate project.
Currently uses basic authentication. In a very near future will be
switching to OAuth2.
This commit have only Mail module.
Mail
----
Main class for working with emails in Office 365. You can use it to
perform access to different folders and may features exposed by REST
api.
===========================================
The objective of office365api is to make it easy to make scripts and
applications that are to be run against an Office 365 account.
If you wanted to script retrieving an email it could be as simple as:
.. code:: python
from office365api import Mail
auth = ('YourAccount@office365.com', 'YourPassword')
mail = Mail(auth=auth)
messages = mail.inbox.get_messages()
And sending an email like this.
.. code:: python
from office365api import Message, Mail
from office365api.model import Recipient, EmailAddress
auth = ('YourAccount@office365.com', 'YourPassword')
message = Message(Subject='Heads up', Body='First automated alarm.',
From=Recipient(EmailAddress=EmailAddress(Name='Full Name', Address='you@gmail.com')),
ToRecipients= [Recipient.from_email(email='somebody@gmail.com')]
)
m = Mail(auth=auth)
m.send_message(message)
Gotchas
-------
Currently writen against v 1.0 of outlook rest api, in the future v 2.0
will be added. May be even graph rest api. However probably as a
separate project.
Currently uses basic authentication. In a very near future will be
switching to OAuth2.
This commit have only Mail module.
----
Main class for working with emails in Office 365. You can use it to
perform access to different folders and may features exposed by REST
api.
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
office365api-0.0.8.tar.gz
(7.4 kB
view hashes)
Built Distribution
Close
Hashes for office365api-0.0.8-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 847909ebaff8ee432c4415c83bf643914b6ad0a292084dd4561b4b622aa9d5c8 |
|
MD5 | c87d71a606a1680a24c346ea69a7c56c |
|
BLAKE2b-256 | a7b7a9bd7a24dc63dcf4ad1a579836abc5c5d0e261e435368e4e05825dd2105a |