/usr/share/doc/python-pywapi/examples/pywapi-cities-example.py is in python-pywapi 0.2.2-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | #!/usr/bin/env python
import pywapi
import pprint
pp = pprint.PrettyPrinter(indent=4)
cities = pywapi.get_cities_from_google('fr', 'de') # or (country = 'fr', hl = 'de')
pp.pprint(cities)
|