Metadata-Version: 2.1
Name: miniMinio
Version: 2.4.1
Summary: Exposing file sharing system
Home-page: https://github.com/pypa/sampleproject
Author: Fruitjeus
Author-email: jeu1993@gmail.com
License: UNKNOWN
Description: # miniMinio
        
        A thin python helper get either 1) local files or 2) Minio objects. 1) Heavily relies on the default os library while 2) is built off [minio-py](https://github.com/minio/minio-py). The package is designed to provide a seamless switch between testing file operations locally/over a file system and interacting with a minio server when in deployment.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install miniMinio.
        
        ```bash
        pip install miniMinio
        ```
        
        ## Quick Start
        
        ```python
        from miniMinio import Minio
        
        # For connecting to minio s3
        mc = Minio(type="minio").config(hostname='host',
                                        access_key='minio',
                                        secret_key='minio',
                                        secure=False
                                        )
        mc.ls('bucket/dir/')
        
        # For connecting to local filesystem
        mc = Minio(type="local").config()
        mc.ls('.')
        ```
        
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/) 
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
