Bug correction (with cwd) if not executed from its directory

This commit is contained in:
Phyks 2013-09-08 23:35:37 +02:00
parent 036b012e32
commit 82f555b884
2 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,9 @@ velib_stats.py NUMERO_DE_STATION
Pour trouver le numéro unique identifiant la station qui vous intéresse, rendez-vous sur le site de Vélib (http://www.velib.paris.fr/Plan-stations) et recupérez le numéro de la station qui vous intéresse dans l'infobulle.
## Pré-requis
Vous aurez besoin de python3 et du module urllib3 (à installer avec pip au besoin) pour utiliser ce script.
## License
Please, send me an email if you use or modify this program, just to let me know if this program is useful to anybody or how did you improve it :) You can also send me an email to tell me how lame it is ! :)

View File

@ -1,10 +1,16 @@
#!/usr/bin/python
import sys
import os
import datetime
import urllib3
import xml.etree.ElementTree as ET
# Change working directory if necessary
file_path = os.path.dirname(__file__)
if file_path != "":
os.chdir(file_path)
if len(sys.argv) != 2:
exit('Usage : velib_stats.py Station_number')