lookyloo/bin/async_capture.py

36 lines
893 B
Python
Raw Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import logging
from lookyloo.abstractmanager import AbstractManager
2021-03-12 16:49:04 +01:00
from lookyloo.helpers import set_running, unset_running, shutdown_requested
2019-01-30 14:30:01 +01:00
from lookyloo.lookyloo import Lookyloo
logging.basicConfig(format='%(asctime)s %(name)s %(levelname)s:%(message)s',
level=logging.INFO, datefmt='%I:%M:%S')
2020-11-05 14:14:33 +01:00
class AsyncCapture(AbstractManager):
2021-03-12 16:49:04 +01:00
def __init__(self, loglevel: int=logging.INFO):
super().__init__(loglevel)
self.lookyloo = Lookyloo()
def _to_run_forever(self):
2020-11-05 14:14:33 +01:00
set_running('async_capture')
2019-04-05 16:12:54 +02:00
while True:
2020-11-05 14:14:33 +01:00
url = self.lookyloo.process_capture_queue()
2019-04-05 16:12:54 +02:00
if url is None or shutdown_requested():
break
2020-11-05 14:14:33 +01:00
unset_running('async_capture')
def main():
2020-11-05 14:14:33 +01:00
m = AsyncCapture()
m.run(sleep_in_sec=1)
if __name__ == '__main__':
main()