├── .gitignore ├── README.md ├── parser ├── __init__.py └── answer_module.py ├── requirements.txt ├── sky_api ├── __init__.py └── skysmart_api.py ├── template.py ├── utils ├── __init__.py ├── api_variables.py └── config.py ├── vercel.json └── web ├── main.py ├── static ├── main.css └── script.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/README.md -------------------------------------------------------------------------------- /parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parser/answer_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/parser/answer_module.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/requirements.txt -------------------------------------------------------------------------------- /sky_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sky_api/skysmart_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/sky_api/skysmart_api.py -------------------------------------------------------------------------------- /template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/template.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/api_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/utils/api_variables.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/utils/config.py -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/vercel.json -------------------------------------------------------------------------------- /web/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/web/main.py -------------------------------------------------------------------------------- /web/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/web/static/main.css -------------------------------------------------------------------------------- /web/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/web/static/script.js -------------------------------------------------------------------------------- /web/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xartd0/Skysmart-Answers/HEAD/web/templates/index.html --------------------------------------------------------------------------------