12 lines
201 B
Python
12 lines
201 B
Python
from xspider.app import TemplateCrawlerApp, configure_logging
|
|
|
|
|
|
def main() -> None:
|
|
configure_logging()
|
|
app = TemplateCrawlerApp()
|
|
app.run_forever()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|