Giter VIP home page Giter VIP logo

neuralhashapi's Introduction

NeuralHashApi

Public api site
Basic http api to run neural hash on a given image and return the result

The point of this is to allow me to utilize a python implementation of neuralhash without needing to do it locally in other projects.

This is a WIP

Run it yourself

I package a docker image at registry.gitlab.com/kikkia/neuralhashapi:latest

You can use a docker compose file to spin up your own like so:

version: '3.7'
services:
  api:
    image: registry.gitlab.com/kikkia/neuralhashapi:latest
    restart: always
    container_name: neuralhashApi
    environment: 
     - SERVER_PORT=80
    ports:
      - 80:80

Configurable env variables

SERVER_PORT - Sets the port for the webserver. Default: 80
DD_ENABLE - Enable Datadog tracing. (DD Agent on server required, may need to set network_mode to host in docker) Default: False

neuralhashapi's People

Contributors

kikkia avatar

Stargazers

 avatar Ed Cynth3tik avatar Christian W. avatar

Watchers

James Cloos avatar  avatar

neuralhashapi's Issues

Invalid file with accepted extension Internal Server Error

Providing a file with extension png, jpg, or jpeg that is not a valid image returns 500 response.

Found by createing file called image (2).png and writing the plan text value ayylmao within it.

if allowed_file(file.filename):
return {"hash": get_hash(Image.open(file.file).convert('RGB'))}
else:
raise HTTPException(status_code=400, detail="Provided file is not a supported format (Supported: " +
str(ALLOWED_EXTENSIONS) + ")")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.