An open API service indexing awesome lists of open source software.

https://github.com/arne-vl/nova

Nova is a virtual assistant, made in python
https://github.com/arne-vl/nova

Last synced: 2 months ago
JSON representation

Nova is a virtual assistant, made in python

Awesome Lists containing this project

README

        

# Nova

## What can Nova do?
- Delete everything in your downloads folder
- Create a note in Notion
- Create an event in Google Calendar

## Installation

### Set up .env file
Create a .env file by copying the .env.template file and fill in your data.
- Notion api key = key of database to make todo's

### Set up a Python Virtual Environment

1. Create a virtual environment (replace 'venv' with your preferred name)
```
python -m venv venv
```
2. Activate the virtual environment
- On Windows
```
venv\Scripts\activate
```
- On Unix or MacOS
```
source venv/bin/activate
```
3. Install required packages
```
pip install -r requirements.txt
```

## Run
1. Activate venv
- On Windows
```
venv\Scripts\activate
```

- On Unix or MacOS
```
source venv/bin/activate
```

2. Run nova.py
```
python src/nova.py
```