32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# PyConES17
|
|
|
|
[EN] Workshop: Flask-wallapop-watcher (Application to monitor prices in Wallapop)
|
|
|
|
[ES] Taller: Flask-wallapop-watcher (Aplicación para vigilar precios en Wallapop)
|
|
|
|
## Demo
|
|
|
|
[EN] Currently implemented on a real site:
|
|
|
|
[ES] Actualmente esta implementado en un sitio real:
|
|
|
|
[wallaviso.com](http://wallaviso.com)
|
|
|
|
## Run
|
|
|
|
[EN] For the impatient, you can play with the finished exercise. You should download the code and execute the following commands.
|
|
|
|
[ES] Para los impacientes, podéis jugar con el ejercicio acabado. Debéis descargar el código y ejecutar los siguientes comandos.
|
|
|
|
```bash
|
|
cd flask-wallapop-watcher
|
|
pip3 install virtualenv
|
|
virtualenv --python=python3 .venv
|
|
source .venv/bin/activate
|
|
pip3 install -r requirements.txt
|
|
python3 app.py
|
|
````
|
|
|
|
[EN] Then open in your favorite browser, which will possibly be the fantastic Firefox, a new tab with [http://127.0.0.1:5000](http://127.0.0.1:5000)
|
|
|
|
[ES] Después abrir en tu navegador favorito, que posiblemente será el fantástico Firefox, una pestaña nueva con [http://127.0.0.1:5000](http://127.0.0.1:5000) |