August Quint

Results 51 comments of August Quint

Hi, here I am. From what I understand: first I deliver the coordinates of the parking-lots given in the URL above. So this may look like: `static_data["City I"] = {'latitude':...

I've seen a lot of py-files. Looking at the code I found: - create a loop over all parking-lots (14 for WI) - search for the name (td-Element) - next...

Hi, I'm not only new to Python but also new to Github. I copied the whole project as a ZIP-file, expanded it and modified the file _Sample_city.geojson_ adding all the...

Hi, thanks for the link to 'hello world' on GitHub. I will look at it. Now I have the file _Wiesbaden.geojson_ ready I will check it again, polish it a...

playing with Python I got this result: my code: > table=soup.select('table') td = table[2].find_all("td") i=0 while i < len(td): print('name:',td[i+1].text.strip()) print('frei=', int(td[i+2].text.split()[0])) print('total=', int(td[i+2].text.split()[2])) i += 5 the result, first...

I added this to my code: > stand=soup.select('span') last_updated_date=stand[0].text.strip().split()[1] last_updated_time=stand[0].text.strip().split()[2] print("last updated=", last_updated_date, " ", last_updated_time) which results in this line: ('last updated=', u'07.04.2019', ' ', u'11:16')

I just added the files _Wiesbaden.geojson_ and _Wiesbaden.py_ but I'm not sure that I did it correctly. In the Python-script I added 4 TODOs which describe lines to look for:...

one error I made: I loaded the file Sample_city.geojson, replaced the contents with my file (Wiesbaden.geojson) and saved it as Wiesbaden.geojson. Instead I should have created a new file via...

what do I have to do now? Add a new Pull-request against the Wiesbaden-branch? Or do you handle this situation?

OK. I added the files _Wiesbaden.py_ and _Wiesbaden.geojson_ in the cities-directory of the Wiesbaden-branch and did a Pull-request. I hope this is correct now. Unfortunately I added the file _Wiesbaden.py_...