spiwork/spider/request.py
2022-03-19 22:04:16 +08:00

14 lines
232 B
Python

from typing import List, Dict
class Requests:
def __init__(
self,
url: str,
group: List[str],
method: str,
):
self.root = url
self.method = method
self.group = group