├── .gitignore ├── README.md ├── acsJson ├── README.md └── acsJson.py ├── mtao └── mtao_api.py ├── sellerID ├── README.md ├── getSellerID.py └── image │ └── 20190430183105.png ├── tbBuyerOrder ├── README.md └── getBuyerOrder.py ├── tbSellerOrder ├── README.md └── getSellerOrder.py ├── tbtmSeller ├── .gitignore ├── GetCookie.py ├── README.md └── getAllGoods.py ├── tbtmStore ├── README.md ├── htmlWeb.py ├── id ├── image │ ├── 20190417213809.png │ ├── 20190417214141.png │ ├── 20190417214401.png │ ├── 20190417214616.png │ └── 20190417214804.png ├── static │ └── css │ │ └── bootstrap.min.css └── templates │ └── index.html └── tbtmcomment └── tbtmcomment.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/README.md -------------------------------------------------------------------------------- /acsJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/acsJson/README.md -------------------------------------------------------------------------------- /acsJson/acsJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/acsJson/acsJson.py -------------------------------------------------------------------------------- /mtao/mtao_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/mtao/mtao_api.py -------------------------------------------------------------------------------- /sellerID/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/sellerID/README.md -------------------------------------------------------------------------------- /sellerID/getSellerID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/sellerID/getSellerID.py -------------------------------------------------------------------------------- /sellerID/image/20190430183105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/sellerID/image/20190430183105.png -------------------------------------------------------------------------------- /tbBuyerOrder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbBuyerOrder/README.md -------------------------------------------------------------------------------- /tbBuyerOrder/getBuyerOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbBuyerOrder/getBuyerOrder.py -------------------------------------------------------------------------------- /tbSellerOrder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbSellerOrder/README.md -------------------------------------------------------------------------------- /tbSellerOrder/getSellerOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbSellerOrder/getSellerOrder.py -------------------------------------------------------------------------------- /tbtmSeller/.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__ 2 | -------------------------------------------------------------------------------- /tbtmSeller/GetCookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmSeller/GetCookie.py -------------------------------------------------------------------------------- /tbtmSeller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmSeller/README.md -------------------------------------------------------------------------------- /tbtmSeller/getAllGoods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmSeller/getAllGoods.py -------------------------------------------------------------------------------- /tbtmStore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/README.md -------------------------------------------------------------------------------- /tbtmStore/htmlWeb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/htmlWeb.py -------------------------------------------------------------------------------- /tbtmStore/id: -------------------------------------------------------------------------------- 1 | 586919663297 -------------------------------------------------------------------------------- /tbtmStore/image/20190417213809.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/image/20190417213809.png -------------------------------------------------------------------------------- /tbtmStore/image/20190417214141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/image/20190417214141.png -------------------------------------------------------------------------------- /tbtmStore/image/20190417214401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/image/20190417214401.png -------------------------------------------------------------------------------- /tbtmStore/image/20190417214616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/image/20190417214616.png -------------------------------------------------------------------------------- /tbtmStore/image/20190417214804.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/image/20190417214804.png -------------------------------------------------------------------------------- /tbtmStore/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /tbtmStore/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmStore/templates/index.html -------------------------------------------------------------------------------- /tbtmcomment/tbtmcomment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTyb/WechatPublic/HEAD/tbtmcomment/tbtmcomment.py --------------------------------------------------------------------------------