Switch README to using 'python' rather than 'python3' just because i'm on that now

This commit is contained in:
benjamin melançon 2021-05-25 15:50:25 -04:00
parent ca5417ae93
commit 91141a41b7

View file

@ -12,13 +12,13 @@ Pmodoro Prompt is extremely simplistic, and only has a description field and aut
mkdir -p ~/Projects/agaric/python
git clone git@gitlab.com:agaric/python/parse-timelogs-for-upload.git
cd parse-timelogs-for-upload
python3 -m pip install --user -r requirements.txt
python -m pip install --user -r requirements.txt
```
## Usage
```bash
python3 pomodoro_to_harvest.py
python pomodoro_to_harvest.py
```
## Background notes
@ -33,7 +33,7 @@ If project doesn't exist it will create a new project.
Rather than having to type out all 40 plus lines of data processing, you can also run the whole script in the interactive shell and play with it:
After typing `python3` to get the interactive Python shell in this directory, you can do this line:
After typing `python` to get the interactive Python shell in this directory, you can do this line:
```python
exec(open('pomodoro_to_harvest.py').read())