├── .gitignore ├── README.md ├── helper ├── api.py ├── protobuf.py └── sm3.py ├── main.py ├── test ├── api_test.py ├── res │ ├── get_token.req │ ├── log.req │ ├── log.resp │ ├── register.req │ ├── report.req │ └── report.resp ├── test_common.py ├── test_reg.py └── test_sdi.py └── utils └── pb.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/README.md -------------------------------------------------------------------------------- /helper/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/helper/api.py -------------------------------------------------------------------------------- /helper/protobuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/helper/protobuf.py -------------------------------------------------------------------------------- /helper/sm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/helper/sm3.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/main.py -------------------------------------------------------------------------------- /test/api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/api_test.py -------------------------------------------------------------------------------- /test/res/get_token.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/get_token.req -------------------------------------------------------------------------------- /test/res/log.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/log.req -------------------------------------------------------------------------------- /test/res/log.resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/log.resp -------------------------------------------------------------------------------- /test/res/register.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/register.req -------------------------------------------------------------------------------- /test/res/report.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/report.req -------------------------------------------------------------------------------- /test/res/report.resp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/res/report.resp -------------------------------------------------------------------------------- /test/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/test_common.py -------------------------------------------------------------------------------- /test/test_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/test_reg.py -------------------------------------------------------------------------------- /test/test_sdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/test/test_sdi.py -------------------------------------------------------------------------------- /utils/pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RanbuKyoka/tk-dy-test/HEAD/utils/pb.py --------------------------------------------------------------------------------