├── .gitignore ├── .vscode └── launch.json ├── 00-前期的准备工作.md ├── 01-数据结构.md ├── 02-函数与流程控制.md ├── 03-模块的使用.md ├── 04-文件处理.md ├── 05-第一阶段总结.md ├── 06-pandas.md ├── 07-Web3开发最小原子基础知识点.md ├── 08-web3py.md ├── 09-PyAutoGUI.md ├── 10-tampermonkey.md ├── 11-区块浏览器.md ├── LICENSE ├── README.md ├── file.py ├── hello.py ├── module.py ├── portfolio.py ├── requirements.txt ├── scroll.py ├── sybil.py ├── test.csv └── test.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /00-前期的准备工作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/00-前期的准备工作.md -------------------------------------------------------------------------------- /01-数据结构.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/01-数据结构.md -------------------------------------------------------------------------------- /02-函数与流程控制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/02-函数与流程控制.md -------------------------------------------------------------------------------- /03-模块的使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/03-模块的使用.md -------------------------------------------------------------------------------- /04-文件处理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/04-文件处理.md -------------------------------------------------------------------------------- /05-第一阶段总结.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/05-第一阶段总结.md -------------------------------------------------------------------------------- /06-pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/06-pandas.md -------------------------------------------------------------------------------- /07-Web3开发最小原子基础知识点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/07-Web3开发最小原子基础知识点.md -------------------------------------------------------------------------------- /08-web3py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/08-web3py.md -------------------------------------------------------------------------------- /09-PyAutoGUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/09-PyAutoGUI.md -------------------------------------------------------------------------------- /10-tampermonkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/10-tampermonkey.md -------------------------------------------------------------------------------- /11-区块浏览器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/11-区块浏览器.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/README.md -------------------------------------------------------------------------------- /file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/file.py -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/hello.py -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/module.py -------------------------------------------------------------------------------- /portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/portfolio.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/requirements.txt -------------------------------------------------------------------------------- /scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/scroll.py -------------------------------------------------------------------------------- /sybil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/sybil.py -------------------------------------------------------------------------------- /test.csv: -------------------------------------------------------------------------------- 1 | key, value 2 | BTC, 60000 3 | ETH, 2250 -------------------------------------------------------------------------------- /test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepy/0x-Python/HEAD/test.json --------------------------------------------------------------------------------