├── README.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-39.pyc ├── mongo.cpython-37.pyc └── mysql.cpython-39.pyc ├── main.py ├── mongo.py ├── mysql.py ├── requirements-mongo.txt ├── requirements-mysql.txt ├── resource.py └── settings.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/mongo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/__pycache__/mongo.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/mysql.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/__pycache__/mysql.cpython-39.pyc -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/main.py -------------------------------------------------------------------------------- /mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/mongo.py -------------------------------------------------------------------------------- /mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/mysql.py -------------------------------------------------------------------------------- /requirements-mongo.txt: -------------------------------------------------------------------------------- 1 | pymongo 2 | pyquery 3 | requests -------------------------------------------------------------------------------- /requirements-mysql.txt: -------------------------------------------------------------------------------- 1 | PyMySQL 2 | pyquery 3 | requests -------------------------------------------------------------------------------- /resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/resource.py -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kevin0z0/yyeTs-resource-spider/HEAD/settings.json --------------------------------------------------------------------------------