Created
August 10, 2020 00:33
-
-
Save geek-at/83408cc72816c39914c47cf5e11bf9b1 to your computer and use it in GitHub Desktop.
Revisions
-
geek-at created this gist
Aug 10, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ 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"]))