Metadata-Version: 2.1
Name: thin_osm_api_wrapper
Version: 0.0.1
Summary: thin wrapper of https://wiki.openstreetmap.org/wiki/API
Home-page: https://github.com/matkoniecz/thin_osm_api_python_wrapper
Author: Mateusz Konieczny
License: UNKNOWN
Description: See also [osm_bot_abstraction_layer](https://github.com/matkoniecz/osm_bot_abstraction_layer) and [osmapi](https://github.com/metaodi/osmapi) 
        
        This is intended as a minimal wrapper over OSM Editing API, to make easy to understand what is going on.
        
        It contains thin wrapper only for parts that I needed so far.
        
        Sister of [taginfo equivalent](https://github.com/matkoniecz/taginfo_api_wrapper_in_python).
        
        # Usage examples
        
        ```
        import thin_osm_api_wrapper
        
        object_type = "way"
        id = 10101010
        print(thin_osm_api_wrapper.api.history_json(object_type, object_id))
        ```
        
        # Run tests
        
        ```
        python3 -m unittest
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
