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
- Host: GitHub
- URL: https://github.com/arne-vl/nova
- Owner: arne-vl
- License: mit
- Created: 2024-03-11T16:44:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-05T14:00:04.000Z (about 1 year ago)
- Last Synced: 2025-01-17T15:48:06.278Z (4 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```