Skip to content

Instantly share code, notes, and snippets.

@geek-at
Created August 10, 2020 00:33
Show Gist options
  • Save geek-at/83408cc72816c39914c47cf5e11bf9b1 to your computer and use it in GitHub Desktop.
Save geek-at/83408cc72816c39914c47cf5e11bf9b1 to your computer and use it in GitHub Desktop.
Python example for nsfw-categorize.it
import requests
import json
url = 'https://nsfw-categorize.it/api/upload'
files = {'image':('1.jpg', open('1.jpg', 'rb'))}
r = requests.post(url, files=files)
result = json.loads(r.content)
if(result["status"]=='OK'):
print("This image is classified as "+str(result["data"]["classification"]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment