├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── __init__.py ├── main.py ├── moso.py ├── requirements.txt └── tools.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubadly/Mosoteach/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | venv/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubadly/Mosoteach/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubadly/Mosoteach/HEAD/main.py -------------------------------------------------------------------------------- /moso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubadly/Mosoteach/HEAD/moso.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | parsel 2 | requests 3 | -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubadly/Mosoteach/HEAD/tools.py --------------------------------------------------------------------------------