aboutsummaryrefslogtreecommitdiff
path: root/prototyping/main.py
diff options
context:
space:
mode:
authorLionel <lionel.miquel46@gmail.com>2018-10-31 12:20:09 +0100
committerLionel <lionel.miquel46@gmail.com>2018-10-31 12:20:09 +0100
commit6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7 (patch)
tree580db1d39ca84a9a75163082c004bea80903f15a /prototyping/main.py
parent687df02d8a8711342d9061b60d06266cc01b0c35 (diff)
downloadrandopitons-6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7.tar.gz
randopitons-6f8af4d10fa7e0d4a7bd4a6e5c958527e8cd5ed7.zip
Cleaning up the repo
Diffstat (limited to 'prototyping/main.py')
-rw-r--r--prototyping/main.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/prototyping/main.py b/prototyping/main.py
deleted file mode 100644
index 56f04d6..0000000
--- a/prototyping/main.py
+++ /dev/null
@@ -1,46 +0,0 @@
-import os
-import inputs as io
-
-import colorcode as clc
-foldernames=["Cirque de Cilaos","Cirque de Mafate","Cirque de Salazie","Est","Nord","Ouest","Sud","Volcan","Ailleurs","All"]
-webregionnames=[]
-for i in range(9):
- try:
- leftside=foldernames[i].split(' ')[0].lower()+"-"
- rightside=foldernames[i].split(' ')[2].lower()
- webregionnames.append(leftside+rightside)
- except IndexError,ierr:
- oneside=foldernames[i].split(' ')[0].lower()
- webregionnames.append(oneside)
- pass
-import foldercreating as fdc
-basicfilename=""
-
-print clc.bold+"*************************************************************************************************************"
-print clc.bold+"* Welcome ! *"+clc.endc
-print clc.bold+"* With this script, you will be able to download gpx,trk and kml traces for hitchiking on the Reunion Isle. *"+clc.endc
-print clc.bold+"*************************************************************************************************************"
-zonechoice=io.regioninput()
-zoneptr=zonechoice-1
-maptype=io.mapfileinput()
-MAIL=io.loginmail()
-PSW=io.loginpass()
-
-
-
-if maptype==1:
- basicfilename="f.gpx"
-elif maptype==2:
- basicfilename="f.trk"
-elif maptype==3:
- basicfilename="f.kml"
-
-fdc.mainfolder()
-if zonechoice == 10:
- fdc.mkallfolder(MAIL,PSW,webregionnames,foldernames,maptype,basicfilename)
-else:
- fdc.mkfolder(MAIL,PSW,webregionnames,foldernames,maptype,zoneptr,basicfilename)
-
-
-
-