We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ced25 commit a3e0754Copy full SHA for a3e0754
README.md
@@ -140,7 +140,10 @@ job_id = enqueue_response.job.id
140
# Reading the callback data will vary greatly depending on your HTTP server.
141
# This is therefore beyond the scope of this example.
142
143
-local_response = LocalResponse(request.body.string)
+local_response = LocalResponse(request.body())
144
+
145
+# You can also use a File object as the input.
146
+# local_response = mindee_client.source_from_path("path/to/my/file.ext);
147
148
# Optional: verify the HMAC signature
149
if not local_response.is_valid_hmac_signature(my_secret_key, "some signature"):
0 commit comments