New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ms-python-client

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ms-python-client - pypi Package Compare versions

Comparing version
1.0.0
to
1.0.1
+10
-6
PKG-INFO
Metadata-Version: 2.1
Name: ms-python-client
Version: 1.0.0
Version: 1.0.1
Summary: This package is used to interact with the microsoft graph API

@@ -133,2 +133,6 @@ License: MIT

### **users**:
1. get all users
## CERN specific usage

@@ -163,3 +167,3 @@

- `ZOOM_ID` is the id of the zoom meeting, which can be found inside the url of a meeting link, is **mandatory** to create an event.
- `ZOOM_ID` is the id of the zoom meeting, which can be found inside the url of a meeting link. This is **mandatory** to create an event.
- `USER_ID` is the email of the Zoom Room.

@@ -174,3 +178,3 @@

USER_ID = os.getenv("USER_ID") # Which is the email of the Zoom Room
ZOOM = os.getenv("ZOOM")
ZOOM_ID = os.getenv("ZOOM_ID")

@@ -182,3 +186,3 @@ event_parameters = EventParameters(

timezone="Europe/Zurich",
zoom_id=ZOOM,
zoom_id=ZOOM_ID,
zoom_url="https://cern.zoom.us/******",

@@ -188,3 +192,3 @@ )

partial_event_parameters = PartialEventParameters(
zoom_id=ZOOM,
zoom_id=ZOOM_ID,
end_time="2021-10-01T14:00:00",

@@ -195,4 +199,4 @@ ) # You can update only the end_time of the event for example

cern_ms_client.events.update_event_by_zoom_id(USER_ID, partial_event_parameters)
cern_ms_client.events.delete_event_by_zoom_id(USER_ID, ZOOM)
cern_ms_client.events.delete_event_by_zoom_id(USER_ID, ZOOM_ID)
```
[tool.poetry]
name = "ms-python-client"
version = "1.0.0"
version = "1.0.1"
exclude = ["tests*", "example*", ".github*", ".git*", ".vscode*"]

@@ -5,0 +5,0 @@ description = "This package is used to interact with the microsoft graph API"

@@ -113,2 +113,6 @@ # Microsoft Python client

### **users**:
1. get all users
## CERN specific usage

@@ -143,3 +147,3 @@

- `ZOOM_ID` is the id of the zoom meeting, which can be found inside the url of a meeting link, is **mandatory** to create an event.
- `ZOOM_ID` is the id of the zoom meeting, which can be found inside the url of a meeting link. This is **mandatory** to create an event.
- `USER_ID` is the email of the Zoom Room.

@@ -154,3 +158,3 @@

USER_ID = os.getenv("USER_ID") # Which is the email of the Zoom Room
ZOOM = os.getenv("ZOOM")
ZOOM_ID = os.getenv("ZOOM_ID")

@@ -162,3 +166,3 @@ event_parameters = EventParameters(

timezone="Europe/Zurich",
zoom_id=ZOOM,
zoom_id=ZOOM_ID,
zoom_url="https://cern.zoom.us/******",

@@ -168,3 +172,3 @@ )

partial_event_parameters = PartialEventParameters(
zoom_id=ZOOM,
zoom_id=ZOOM_ID,
end_time="2021-10-01T14:00:00",

@@ -175,3 +179,3 @@ ) # You can update only the end_time of the event for example

cern_ms_client.events.update_event_by_zoom_id(USER_ID, partial_event_parameters)
cern_ms_client.events.delete_event_by_zoom_id(USER_ID, ZOOM)
cern_ms_client.events.delete_event_by_zoom_id(USER_ID, ZOOM_ID)
```