Metadata-Version: 2.1
Name: openpy
Version: 0.0.2
Summary: Open files for humans
Home-page: https://github.com/orenovadia/openpy
Author: Oren Ovadia
Author-email: orenovad@gmail.com
License: MIT
Download-URL: https://github.com/orenovadia/openpy/tarball/0.0.2
Description: # openpy
        
        author: Oren Ovadia
        
        ## Overview
        
        Just open files, local filesystem, s3 or online.
        Decompresses any format automatically (currently only `gzip` is supported😀)
        
        ## Installation
        ```
        pip install openpy
        ```
        
        or: 
        
        ```
        pip install git+git://github.com/orenovadia/openpy.git#egg=master
        ```
        
        ## Examples
        ```python
        from openpy import read
        
        # local files, uncompressed:
        with read('data.gz') as f:
            print(f.read())
        
        # s3:
        with read('s3://bucket/path/to/file.gz') as f:
            print(f.read())
         
        ```
        
        ## Upload to pypi:
        ```
        ./publish.sh
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
