This commit is contained in:
Flik
2025-10-17 17:24:16 +08:00
commit 952c90e537
24 changed files with 1721 additions and 0 deletions

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
from xspider.app import TemplateCrawlerApp, configure_logging
def main() -> None:
configure_logging()
app = TemplateCrawlerApp()
app.run_forever()
if __name__ == "__main__":
main()