Metadata-Version: 2.1
Name: in1
Version: 0.9.2
Summary: Sobolt's client for in1.
Home-page: https://in1.ai
Author: Sobolt
Author-email: info@sobolt.com
License: MIT
Description: # in1 client library
        This is the Python client library for the [in1](https://in1.ai) service. It allows super resolving Sentinel-2 raster straight from Python.
        
        ## Installation
        Use a Python package manager to install in1.
        
        ```shell
        pip install in1
        ```
        
        ## Usage
        Consult the online [documentation](https://docs.in1.ai/) for details.
        
        ```python
        import in1
        
        lores = "/path/to/lores.tif"
        in1_api_key = "<IN1_API_KEY>"
        
        hires, profile, metrics = in1.sisr(lores, api_key=in1_api_key)
        in1.write(hires, "/path/to/outdir/hires.tif", profile)
        ```
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
