I have a test python application that can do the file search by name:
results = self.client.search(f_name, limit=200, offset=0)
but if I try to use query to look for the file by sha1 it just errors (or gives me any file that contains a number in the filename):
res = self.client.search("sha1=5c279fb05a2bd6d4886844c05b214fc88f71abd4", limit=200, offset=0)
Is this type of query not supported or did I just mess something up in the format?