Metadata-Version: 2.1
Name: access-client
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://accessai.co/
Author: ConvexHull Technology Private Limited
Author-email: support@accessai.co
Maintainer: Majeed Khan
Maintainer-email: majeed.khan@accessai.co
License: Apache 2.0
Description: # Access Client
        
        Python client to interact with acessai's various applications/services like access-face-vision
        
        ### Installation
        ```bash
        pip install access-cleint
        ```
        
        ### Usage
        ```python
        from access_client.face_vision.client import AFV
        
        #instantiate by giving the host and port of the access-face-vision server
        afv = AFV("http://localhost:5001")
        ```
        
        Now we need to create a face-group. This is will be our face-index.
        ```python
        afv.create_face_group(face_group_name="celebrities")
        
        #Pass in the directory and face group name
        afv.add_faces_to_face_group(dir="./samples/celebrities", face_group="celebrities")
        
        # Directory structure
        # **/Images/
        #          A/
        #           A_K_01.jpg
        #           A_K_02.jpg
        #          B/
        #           B_S_01.jpg
        #           B_S_02.jpg
        ```
        
        Once faces are indexed we can run inference on it. 
        ```python
        afv.parse(img_path="./samples/celebrities/Bill Gates/Bill_Gates.jpg", face_group="celebrities")
        ```
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
