You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ A minimalist [Flask](https://github.com/pallets/flask) extension that serves as
19
19
- Set a script that runs on a succesful POST request to an endpoint of your choice. See[Example code](examples/run_script.py).
20
20
- Map a base command to an endpoint and pass dynamic arguments to it. See[Example code](examples/basic.py).
21
21
- Can also process multiple uploaded files in one command. See[Example code](examples/multiple_files.py).
22
-
- This is useful for internal docker-to-docker communications if you have different binaries distributed in micro-containers. See[real-life example](https://github.com/intelowlproject/IntelOwl/blob/master/integrations/static_analyzers/app.py).
22
+
- This is useful for internal docker-to-docker communications if you have different binaries distributed in micro-containers. See[real-life example](https://github.com/intelowlproject/IntelOwl/blob/master/integrations/malware_tools_analyzers/app.py).
23
23
- You can define a callback function/ use signals to listen for process completion. See[Example code](examples/with_callback.py).
24
24
- Maybe want to pass some additional context to the callback function ?
25
25
- Maybe intercept on completion and update the result ? See[Example code](examples/custom_save_fn.py)