Metadata-Version: 2.1
Name: gdalinfo
Version: 0.0.3
Summary: PyPy-compatible wrapper for GDALINFO() to read GIS metadata
License: MIT
Author: Daniel Holth
Author-email: dholth@gmail.com
Keywords: gdal,pypy,cffi
Classifier: Programming Language :: Python :: 3
Home-Page: https://github.com/dholth/gdalinfo/
Requires-Dist: cffi


gdalinfo
========

A cffi-based wrapper for just the GDALInfo() function from GDAL.

Returns GIS metadata from a filename as JSON.

On pypy, ``import sqlite3`` may conflict with ``import gdalinfo``, 
they both use a version of the sqlite library. Use ``pypy -m _sqlite3_build``
to build the extension against system sqlite3, and replace the one that
came with the pypy distribution.