You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This demo showcases how to use the Nylas Notetaker API in conjunction with calendar and event APIs to create and manage notes associated with calendar events.
4
+
5
+
## Features Demonstrated
6
+
7
+
- Creating notes linked to calendar events
8
+
- Retrieving notes associated with events
9
+
- Managing event-related notes
10
+
- Syncing notes with event updates
11
+
- Using note metadata for event organization
12
+
13
+
## Prerequisites
14
+
15
+
- Python 3.8+
16
+
- Nylas Python SDK (local version from this repository)
17
+
- Nylas API credentials (Client ID and Client Secret)
18
+
19
+
## Setup
20
+
21
+
1. Install the SDK in development mode:
22
+
```bash
23
+
# From the root of the nylas-python repository
24
+
pip install -e .
25
+
```
26
+
27
+
2. Set up your environment variables:
28
+
```bash
29
+
export NYLAS_API_KEY='your_api_key'
30
+
export NYLAS_API_URI='https://api.nylas.com'# Optional, defaults to https://api.nylas.com
0 commit comments