All Questions
20 questions
0
votes
1
answer
109
views
download recurring appointments but all appointments start date show 1st same date
I am trying to get all appointments from client outlook with python and win32com. client,
there are several recurring appointments in calendar A. however, when I download these recurring appointments ...
0
votes
1
answer
939
views
Get Calendar by name from Outlook using Powershell script
I used a powershell script (found it in the Google)to get the calendar from exchange outlook and called the script in python.[]
But somehow I'm not able to get the calendar that I want, I'm just ...
0
votes
1
answer
336
views
Import Outlook Calendar Appointment from One account to another in Python/VBA
Actually I am trying to Export the calendar appointment from one outlook account to another outlook account but I have trayed so many time and end-up with just extracted appointment in an excel sheet ...
0
votes
1
answer
741
views
Python get shared (REST) Outlook calendar events
I'm trying to fetch events from a shared calendar. I have tried the solutions provided in the following link:
Read Outlook Events via Python
However, this only reads MAPI and I want to read from a ...
0
votes
1
answer
536
views
Got "Resource could not be discovered.'' while asking for outlook calendar events
I am trying to fetch Outlook calendar events in Python scripts using API provided by Microsoft Graph.
I have created an Azure account using my personal Outlook account ([email protected]), after ...
0
votes
1
answer
414
views
Reading Outlook Calendars [The request is not valid for the application's 'userAudience' configuration.]
Today I'm trying to do read calendar from outlook. I created a new app through Microsoft Azure then setted a secret key and added a api permissions. When I was trying to authenticate via simple script ...
2
votes
1
answer
744
views
How to overwrite Outlook calendar events
So I have this function that creates events on my outlook calendar based on a Dictionary (Later will be data from a database):
def addevent(events):
import win32com.client
for item in table.keys():
...
0
votes
1
answer
1k
views
Create Outlook appointment in subfolder/subcalendar with python
I want to create calendar entries in a non-default calendar in Outlook via python. I did
import win32com.client
outlook = win32com.client.Dispatch('Outlook.Application').GetNamespace('MAPI')
calendar =...
0
votes
1
answer
1k
views
Why do I get "Client Error: 403 Client Error: (...) Error Message: Access is denied. Check credentials and try again."
I'm trying to get calendar data from Outlook, so I have the following code:
from O365 import Account, MSGraphProtocol
import datetime as dt
CLIENT_ID = 'f8384621-1095-4519-8999-0c7e616b7bc8'
...
1
vote
0
answers
424
views
Recipient Name & Required Attendees not matching Outlook Python
I am trying to fetch Recipients email address (some are saved contacts, some are in-organization people and remaining are out-of-organization people). I wish to get names and email addresses of all ...
2
votes
3
answers
1k
views
Add appointments from one outlook calendar to another using win32com
I can get all appointments from my main calendar, like this:
def getCalendarEntries():
Outlook = win32com.client.Dispatch("Outlook.Application")
ns = Outlook.GetNamespace("MAPI")
appointments = ...
0
votes
1
answer
998
views
how to get other person's schedule using python api O365
I am trying to get other person's availability time (displayed on outlook).
My company uses Office 365 for managing appointments. So, I write down these programs to get the data.
i can get my ...
2
votes
1
answer
1k
views
Python 3.7 hangs up getting Outlook Calendar Start or End Properties of an Appointment Item
This code worked ok in Python 3.5.2. in the same machine.
In Python 3.7.0 it hangs up when you try to get the Appointment Properties Start or End.
It hangs up just with the first request for Start or ...
1
vote
1
answer
3k
views
Send Outlook Appointment from Different Email Address
Trying to automate a calendar notification by sending an outlook calendar invite via python. I would like to send the email from a separate email address. In python's email package, you can use ...
0
votes
1
answer
252
views
Matching Outlook Calendar Dates to CSV Dates and Appending Match to List
Disclaimer: I'm relatively new to Python. I am attempting to write a script that will go through a CSV, check if certain columns match Outlook calendar items (by subject, organizer, and date match), ...