rekognition-wrapper
Moderating image content through AWS Rekognition SDK
Prerequisites
Installation
Use either npm or yarn to
install rekognition-wrapper.
npm i @sqwid/rekognition-wrapper
or
yarn add @sqwid/rekognition-wrapper
Usage
const RekognitionWrapper = require("@sqwid/rekognition-wrapper");
const config = {
accessKeyId: "your-aws-access-key-id",
secretAccessKey: "your-aws-secret-access-key",
region: "region-closest-to-your-server-location-for-minimum-latency",
};
const verifier = new RekognitionWrapper(config);
verifier.detectExplicitContent({
url: "https://img.huffingtonpost.com/asset/6197f71f20000047aa8d3089.jpeg?cache=dLXWffeF86&ops=scalefit_720_noupscale",
})
.then(result => {
console.log(result);
})
.catch(error => {
console.log(error);
});
For more examples, see examples
Contributing
Pull requests are welcome. For major changes, please open an issue first to
discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT