# face_comparison **Repository Path**: shanexia/face_comparison ## Basic Information - **Project Name**: face_comparison - **Description**: Face comparison flask micro-service - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-07 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Face comparison micro-service ## Installation #### Requirements * Python 3.6+ #### Clone git clone https://github.com/guesswh0/compare_faces.git #### Install dependencies pip3 install -r requirements.txt ### Run Export `.env` environment variables (configure it before): export $(grep -v '^#' .env | xargs) and run flask app: flask run #### Deployment To _deploy_ see flask [deployment options](https://flask.palletsprojects.com/en/1.1.x/deploying/) ## **Sample Call:** ``` curl -X POST [host:port]/api/faces/compare \ -F source=@face_image1.jpg \ -F target=@face_image2.jpg ```