Metadata-Version: 2.1
Name: FastMlOps
Version: 0.0.1
Summary: a package that use for esay way for deploy ml model with fastapi
Home-page: UNKNOWN
Author: tao-isaman
Author-email: tao.isaman@gmail.com
License: UNKNOWN
Description: # FastMlOps
        esay to deploy your ml model 
        
        ## example
        ```python
        from FastMlOps import FastMlOps
        
        app = FastML()
        
        config = {
            "method" : "POST" ,
            "path" : "/getclass" ,
            "inputModel" : {
                "x" : int,
                "y" : int
            } , 
            "responseModel" : {
                "catagory" : str ,
                "confidence" : float
            },
            "model" : "model1.h5"
        }
        
        app.createAPI(config)
        ```
        - **method** : use for http method ex. **GET** , **POST**
        - **path** : url path for test server
        - **inputModel** : input of your ml model
        - **responseModel** : output of your ml model
        - **model** : path to your ml model ex. **"/path/ml.h5"**
        
        connect to 
        ```
        http://localhost:8000/docs#/
        ```
        ![Test Image 1](image.png)
        
        enjoy for ez API
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
