api/ImageSimilarity/deployment/app.py [161:170]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    '''
    This method will get the closest neighbors to an image provided as a URL
    '''
    if request.method == 'POST':
        try:
    
            request_data = json.loads(request.data.decode('utf-8'))
            log("type")
            log(request_data)
            urlInput = request_data['urlInput'] 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



api/ImageSimilarity/deployment/app.py [186:195]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    '''
    This method will get the closest neighbors to an image provided as a URL
    '''
    if request.method == 'POST':
        try:
    
            request_data = json.loads(request.data.decode('utf-8'))
            log("type")
            log(request_data)
            urlInput = request_data['urlInput'] 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



