Add production-ready scraper with README

This commit is contained in:
Flash
2026-04-10 15:29:44 +00:00
commit 75f51121ea
1882 changed files with 350270 additions and 0 deletions

8
venv/bin/fastapi Executable file
View File

@@ -0,0 +1,8 @@
#!/home/danil/.openclaw/workspace/gisp-scraper/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from fastapi.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())