HTTPFeedApiModule
To use the common HTTP Feed API logic, run the following:
def main():
feed_main(<FEED_NAME>)
from HTTPFeedApiModule import * # noqa: E402
if __name__ in ["builtins", "__main__"]:
main()
feed_main
is the main execution of the Feed API module. It can be extended or overriden in the integration main
function.
Note that the module expectes a feed_types
parameter to extract the indicator. This is similar to the configuration in minemeld.
See the module class docstring for an example.