Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rsnlabs/rsn-filter

A comprehensive NSFW image detection npm package, equipped with advanced algorithms to ensure the safety and integrity of online platforms by swiftly identifying and filtering explicit content
https://github.com/rsnlabs/rsn-filter

nsfw-classifier nsfw-detection nsfw-recognition

Last synced: 14 days ago
JSON representation

A comprehensive NSFW image detection npm package, equipped with advanced algorithms to ensure the safety and integrity of online platforms by swiftly identifying and filtering explicit content

Awesome Lists containing this project

README

        


RsnFilter


Advanced NSFW Image Detection Package

DigitalOcean Referral Badge

A comprehensive NSFW image detection npm package, equipped with advanced algorithms to ensure the safety and integrity of online platforms by swiftly identifying and filtering explicit content

## Installation

**Installation**

```bash
npm i rsn-filter
```

# APIKEY

Discord : [https://discord.gg/r5QWdKfQxr](https://discord.gg/r5QWdKfQxr)

Join discord server and create account with **/new** slash command and get your apikey with **/key** slash command for free!

## Usage Filter

```javascript
const { RsnFilter } = require("rsn-filter");

const rsnfilter = new RsnFilter("rsnai_××××××××××××××××××××××");

(async () => {
const imageUrl = "";

try {
const response = await rsnfilter.filter(imageUrl);

if (response.result === true) {
console.log(response.message);
}

if (response.result === false) {
console.log(response.message);
}
} catch (error) {
console.error("RsnFilter Error:", error);
}
})();
```