Skip to content

Commit b88d0a1

Browse files
Merge pull request #123 from regulaforensics/SP-21549/Upcoming_deprecation_webclient
SP-21549: Upcoming deprecation webclient
2 parents 601798e + 0c02242 commit b88d0a1

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
[![documentation](https://img.shields.io/badge/docs-en-f6858d?style=flat-square)](https://support.regulaforensics.com/hc/en-us/articles/115000916306-Documentation)
55
[![live](https://img.shields.io/badge/live-demo-0a8c42?style=flat-square)](https://faceapi.regulaforensics.com/)
66

7+
## ⚠️ Warning: Package Name Changed
8+
## Package name has been changed from `regula.facesdk.webclient` to `regula_facesdk_webclient`
9+
710
Face recognition as easy as reading two bytes.
811

912
If you have any problems with or questions about this client, please contact us
@@ -13,22 +16,22 @@ We are always thrilled to receive pull requests, and do our best to process them
1316
See [dev guide](./dev.md)
1417

1518
## Install package
16-
`regula.facesdk.webclient` is on the Python Package Index (PyPI):
19+
`regula_facesdk_webclient` is on the Python Package Index (PyPI):
1720

1821
```bash
19-
pip install regula.facesdk.webclient
22+
pip install regula_facesdk_webclient
2023
```
2124

2225
Or using `pipenv`
2326
```bash
24-
pipenv install regula.facesdk.webclient
27+
pipenv install regula_facesdk_webclient
2528
```
2629

2730
## Example
2831
Performing request:
2932

3033
```python
31-
from regula.facesdk.webclient import *
34+
from regula_facesdk_webclient import *
3235

3336
with open("face1.jpg", "rb") as f:
3437
face_1_bytes = f.read()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = fh.read()
88

99
setup(
10-
name="regula.facesdk.webclient",
10+
name="regula_facesdk_webclient",
1111
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "6.2dev"),
1212
python_requires=">=3.5",
1313
description="Regula's FaceSDK web python client",

0 commit comments

Comments
 (0)