
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
pyOutlook
Advanced tools
A Python module for connecting to the Outlook REST API, without the hassle of dealing with the JSON formatting for requests/responses and the REST endpoints and their varying requirements
A Python module for connecting to the Outlook REST API, without the hassle of dealing with the JSON formatting for requests/responses and the REST endpoints and their varying requirements
The most up-to-date documentation can be found on pyOutlook's RTD page.
Before anything can be retrieved or sent, an instance of OutlookAccount must be created. The only parameter required is the access token for the account.
Note that this module does not handle the OAuth process, gaining an access token must be done outside of this module.
from pyOutlook import *
token = 'OAuth Access Token Here'
my_account = OutlookAccount(token)
# If our token is refreshed, or to ensure that the latest token is saved prior to calling a method.
my_account.access_token = 'new access token'
This method retrieves the five most recent emails, returning a list of Message objects. You can optionally specify the page of results to retrieve - 1 is the default.
from pyOutlook import *
account = OutlookAccount('')
account.get_messages()
account.get_messages(2)
This method retrieves the information for the message matching the id provided
from pyOutlook import *
account = OutlookAccount('')
email = account.get_message('message_id')
print(email.body)
This method is identical to get_messages(), however it returns only the ten most recent message in the inbox (ignoring messages that were put into separate folders by an Outlook rule, junk email, etc)
from pyOutlook import *
account = OutlookAccount('')
account.inbox()
Identical methods for additional folders: sent_messages(), deleted_messages(), draft_messages().
Message objects deal with the JSON returned by Outlook, and provide only the useful details. These Messages can be forwarded, replied to, deleted, etc.
This method forwards a message to the list of recipients, along with an optional 'comment' which is sent along with the message. The forward_comment parameter can be left blank to just forward the message.
from pyOutlook import *
account = OutlookAccount('')
email = account.get_message('id')
email.forward([Contact('John.Adams@domain.com'), Contact('Nice.Guy@domain.com')])
email.forward(['John.Smith@domain.com'], 'Read the message below')
This method allows you to respond to the sender of an email with a comment appended.
from pyOutlook import *
account = OutlookAccount('')
email = account.get_message(id)
email.reply('That was a nice email Lisa')
This method allows you to respond to all recipients an email with a comment appended.
from pyOutlook import *
account = OutlookAccount('')
email = account.get_message(id)
email.reply_all('I am replying to everyone, which will likely annoy 9/10 of those who receive this')
You can move a message from one folder to another via several methods.
For default folders, there are specific methods - for everything else there is a method to move
to a folder designated by its id - or you can pass a Folder instance.
from pyOutlook import *
account = OutlookAccount('')
message = Message()
message.move_to_inbox()
message.move_to_deleted()
message.move_to_drafts()
message.move_to('my_folder_id')
folders = account.get_folders()
message.move_to(folders[0])
Deletes the email. Note that the email will still exist in the user's 'Deleted Items' folder.
from pyOutlook import *
account = OutlookAccount('')
message = account.inbox()[0]
message.delete()
There are a couple of ways to create new emails. You can either use new_email() to get a Message()
instance, which you can alter before sending. Alternatively, you can use send_email() where you pass in
commonly used parameters and the email gets sent once called.
Example:
from pyOutlook import *
account = OutlookAccount('')
test_email = account.new_email('This is a test body. <br> Best, <br> John Smith', 'This is a test subject', [Contact('anEmailAccount@gmail.com')])
test_email.attach('FILE_BYTES_HERE', 'FileName.pdf')
test_email.send()
Or:
from pyOutlook import *
account = OutlookAccount('')
account.send_email(
"I'm sending an email through Python. <br> Best, <br> Me",
'A subject',
to=['myemail@domain.com'],
# or to=[Contact('myemail@domain.com']
)
Folders can be created, retrieved, moved, copied, renamed, and deleted. You can also retrieve child folders that are nested within another folder. All Folder objects contain the folder ID, the folder name, the folder's unread count, the number of child folders within it, and the total items inside the folder.
Folder ID parameters can be replaced with the following strings where indicated: 'Inbox', 'Drafts', 'SentItems', or 'DeletedItems'
This methods returns a list of Folder objects representing each folder in the user's account.
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folders()[0]
print(folder.name)
>>> 'Inbox'
If you have the id of a folder, you can get a Folder object for it with this method
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folder_by_id('id')
print(folder.name)
>>> 'My Folder'
Note that you can replace the folder ID parameter with the name of a 'well known' folder such as: 'Inbox', 'Drafts', SentItems', and 'DeletedItems'
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folder_by_id('Drafts')
print(folder.name)
>>> 'Drafts'
This method renames the folder object in Outlook, and returns a new Folder object representing that folder.
from pyOutlook import *
account = OutlookAccount('')
folder = my_account.get_folders()[0]
folder = folder.rename('My New Folder v2')
folder.name
>>> 'My New Folder v2'
Returns a list of Folder objects, representing all child Folders within the Folder provided.
for subfolder in folder.get_subfolders():
print(subfolder.name)
>>> 'My New Folder v2'
>>> 'Some Other Folder'
Self-explanatory, deletes the provided folder in Outlook
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folders()[0]
folder.delete()
# and now it doesn't exist
Move the Folder provided into a new folder.
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folders()[0]
folder_1 = account.get_folders()[1]
folder.move_into(folder_1)
Copies the folder and its contents to the designated folder which can be either a folder ID or well known folder name.
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folders()[0]
folder_1 = account.get_folders()[1]
folder.copy_into(folder_1)
This creates a folder within a folder, with a title provided in the new_folder_name argument.
from pyOutlook import *
account = OutlookAccount('')
folder = account.get_folders()[0]
new_folder = folder.create_child_folder('New Folder')
new_folder.unread_count
>>> 0
FAQs
A Python module for connecting to the Outlook REST API, without the hassle of dealing with the JSON formatting for requests/responses and the REST endpoints and their varying requirements
We found that pyOutlook demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.