Bug correction (with cwd) if not executed from its directory
This commit is contained in:
parent
036b012e32
commit
82f555b884
@ -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 ! :)
|
||||
|
||||
|
@ -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')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user