Metadata-Version: 1.1
Name: python-facepp
Version: 0.1.0a4
Summary: Library for communicating with a Face++ facial recognition service
Home-page: https://github.com/yanminhui/python-facepp
Author: yanminhui
Author-email: yanminhui163@163.com
License: MIT License
Description: Python-FacePP
        ==============
        
        Python-FacePP is a library for communicating with a `Face++ <https://www.faceplusplus.com>`__
        facial recognition service. Face++ exposes some of it's data via `Web API
        <https://console.faceplusplus.com/documents/6329584>`__ for which Python-FacePP provides
        a simple but powerful Pythonic API inspired by a well-known `Django ORM
        <https://docs.djangoproject.com/en/dev/topics/db/queries/>`__:
        
        `Example: <https://www.faceplusplus.com/scripts/demoScript/images/demo-pic6.jpg>`_
        
        .. code-block:: python
        
           >>> from facepplib import FacePP
        
           >>> facepp = FacePP(api_key='eFWami68yL25RPrSuG0oi0lFfYRle26L', 
           ...                 api_secret='Zf_obifstMlZTPmejoY1MHNKyioD_Jtz')
           >>> image = facepp.image.get(image_url='https://www.faceplusplus.com/scripts/demoScript/images/demo-pic6.jpg', 
           ...                          return_attributes=['smiling', 'age'])
        
           >>> image.image_id
           '8g2nrvINBnpyFseprStfyA=='
        
           >>> len(image.faces)
           3
        
           >>> image.faces
           <facepplib.resultsets.ResourceSet object with Face resources>
        
           >>> image.faces[0]
           <facepplib.resources.Face "f149db9d57149d538f386d390d6d8c5e">
        
           >>> image.faces[0].age['value']
           32
        
           >>> image.faces[0].smile
           {'threshold': 50.0, 'value': 100.0}
        
        *More example in* `__main__.py <https://github.com/yanminhui/python-facepp/blob/master/facepplib/__main__.py>`__
        
        Features
        --------
        
        * Supports Python 2.7, 3.4 - 3.7
        * Supports different request engines
        * Extendable via custom resources and custom request engines
        * Provides ORM-style Pythonic API
        * And many more...
        
        Installation
        ------------
        
        The recommended way to install is from Python Package Index (PyPI) with `pip <http://www.pip-installer.org>`__:
        
        .. code-block:: bash
        
           $ pip install python-facepp
        
        Check **facepplib**:
        
        .. code-block:: bash
        
           $ python -m facepplib
        
        Contacts
        --------------------
        
        If you have questions regarding the library, I would like to invite you to `open an issue at GitHub <https://github.com/yanminhui/python-facepp/issues/new>`__. 
        Opening an issue at GitHub allows other users and contributors to this library to collaborate.
        
        License
        ---------------------
        
        The class is licensed under the `MIT License <http://opensource.org/licenses/MIT>`__:
        
        Copyright (c) 2019 `颜闽辉 <mailto:yanminhui163@163.com>`__
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        
        Changelog
        ---------
        
        0.1.0a4 (2019-02-25)
        ++++++++++++++++++++
        
        **Bugfixes**:
        
        - `isinstance(fp, file)` file is undefined in python 3
        
        0.1.0a1 (2019-02-24)
        ++++++++++++++++++++
        
        - Initial
        
Keywords: face++ faceplusplus facepp python-facepp facepplib
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
