├── .gitignore ├── README.md ├── __init__.py ├── config-template.yaml ├── main.py ├── mux.py ├── requirements.txt ├── sites ├── __init__.py ├── github │ ├── __init__.py │ ├── github_repo_adapter.py │ └── github_user_adapter.py └── model.py └── webpilot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/config-template.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/main.py -------------------------------------------------------------------------------- /mux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/mux.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | PyYaml 3 | requests -------------------------------------------------------------------------------- /sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sites/github/github_repo_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/sites/github/github_repo_adapter.py -------------------------------------------------------------------------------- /sites/github/github_user_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/sites/github/github_user_adapter.py -------------------------------------------------------------------------------- /sites/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/sites/model.py -------------------------------------------------------------------------------- /webpilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RockChinQ/WebwlkrPlugin/HEAD/webpilot.py --------------------------------------------------------------------------------