├── .gitignore ├── LICENSE ├── README.md ├── _version.py ├── command.py ├── how.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/README.md -------------------------------------------------------------------------------- /_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/_version.py -------------------------------------------------------------------------------- /command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/command.py -------------------------------------------------------------------------------- /how.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/how.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | commonmark 2 | huepy 3 | requests 4 | tenacity 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/how/HEAD/setup.py --------------------------------------------------------------------------------