## Development


**flask web ui操作;**

```
python main.py server
python mian.py server --config xx
```

**命令行模式:**

```
# 校花网
python main.py shell --extractor xiaohua --cmd crawl

# 
python main.py shell --extractor xiaohua --cmd crawl




```

**打包exe:**
```
virtualenv .venv 

pip install -r requirements.txt

pip install pyinstaller
pyinstaller -F -c -i launch200.ico main.py
```