Skip to content

uolter/PythonOsmApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PythonOsmApi

open street map python client with http proxy support

this is basically a fork of the official Open Street Map python client where I added the possibility to use it going through a standard http proxy This could be a very common needed when you are in a corporate network.

The official documentation and source code is available at this url: http://wiki.openstreetmap.org/wiki/PythonOsmApi

When you want to set the http proxy just set host (or ip) and port in the object constructor like in the example below:

MyApi = OsmApi.OsmApi(
            api = "http://www.openstreetmap.org",
            proxy_host = 'myproxy',
            proxy_port = 8080
        )

        node = MyApi.NodeGet(123)

        print node

This software is available under the Open Database License and this is the copyright page

About

open street map python client with http proxy support

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published