mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-10 22:32:16 +02:00
feat(native-connector): added google maps places & reviews scrapers
This commit is contained in:
parent
cc99bc4cae
commit
7185079bd6
114 changed files with 4688 additions and 425 deletions
|
|
@ -12,10 +12,10 @@ our enterprise targets). Regexes are compiled once at import (hot-path hygiene).
|
|||
"""
|
||||
|
||||
import re
|
||||
from enum import Enum
|
||||
from enum import StrEnum
|
||||
|
||||
|
||||
class BlockType(str, Enum):
|
||||
class BlockType(StrEnum):
|
||||
"""Coarse label for what a fetched page represents."""
|
||||
|
||||
OK = "ok" # usable content, no challenge detected
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue