Skip to content

Commit

Permalink
added shebang on script, changed README
Browse files Browse the repository at this point in the history
  • Loading branch information
sugayaa committed Mar 28, 2020
1 parent 3d55113 commit bf3fa81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Python script to show the menu from UFSCar's community restaurant from terminal.
First time setup:
```bash
pip install --user -r requirements.txt
chmod u+x cardapio
chmod u+x download.sh
```

Expand All @@ -14,21 +15,15 @@ curl
xrandr
```

if python 3 is your default:
Launch:
```bash
python cardapio.py
./cardapio
```

else:
```bash
python3 cardapio.py
```


## Others
If you've used the script before but you're wanting the menu from today on, just remove ru.html:
```bash
rm ru.html
rm /tmp/cardapio-ru/ru.html
```

### Accepting contributions!
2 changes: 2 additions & 0 deletions cardapio.py → cardapio
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import os
from html.parser import HTMLParser
from dateutil.parser import parse
Expand Down

0 comments on commit bf3fa81

Please sign in to comment.