【Python茴香豆系列】之 PANDAS 修改 DataFrame 列名

Python Bean - modify name of pandas dataframe column

January 29, 2021 · 2 min · Dormouse Young

Python 与 JSON 共舞

本文主要尝试介绍如何在 Python 中使用 JSON 。

March 17, 2019 · 3 min · Dormouse Young

使用 Hexo 写博客

原来一直使用 Sphinx 写东西, 2018 想开始使用一个真正的博客系统来写一些博客, 于是选用了 Hexo 。我主要使用 Python 进行开发,那么为什么不选用 Pelican 之类的以 Python 为基础的博客系统呢?因为不够好看,不够方便。下面是我在安装及使用 Hexo 过程中的一些笔记。

June 29, 2018 · 2 min · Dormouse Young

Ifttt Note

IFTTT Maker A simple test: import os def test(): """ Test ifttt maker the command template is: curl -X POST -H "Content-Type:application/json" -d '{"value1":"第一个参数","value2":"第二个","value2":"第三个"}' 'https://maker.ifttt.com/trigger/test/with/key/your_key' :param: :return: """ key = 'csO7ZoutwPzCc_Your_key' arg1 = '第一' arg2 = '第二' arg3 = '一二三四五六七八九十' template = [ 'curl -X POST -H "Content-Type:application/json" -d ', "'{", '"value1":"{}","value2":"{}","value3":"{}"'.format(arg1,arg2,arg3), "}' ", 'https://maker.ifttt.com/trigger/test/with/key/', key ] os.system(''.join(template)) if __name__ == '__main__': test()

May 21, 2017 · 1 min · Me

PyQt5 Note

安装 PyQt5 及其文档 unbuntu plantform sudo apt-get install python3-pyqt5 pyqt5-doc pyqt5-examples sudo apt-get install python3-pyqt5* qtbase5-doc qttools5-dev-tools 示例所在目录:/usr/share/doc/pyqt5-examples/examples/qtdemo/qtdemo.py 文档所在目录: /usr/share/qt5/doc 安装更多: OSX plantform brew install python3 brew install pyqt5 文档和示例都在源代码中, download PyQt5 assistant /usr/local/Cellar/qt/5.9.0/libexec/Assistant.app /usr/local/Cellar/qt5/5.6.1-1/libexec/Assistant-qt5.app/Contents/MacOS/Assistant PyCharm 配置相关工具 Linux Mint qt5desinger: Program: /usr/lib/x86_64-linux-gnu/qt5/bin/designer Parameters: $FileName$ Working directory: $FileDir$ pyuic: Program: python3 Parameters: -m PyQt5.uic.pyuic $FileName$ -o $FileNameWithoutAllExtensions$_ui.py Working directory: $FileDir$ qt5assistant: Program: /usr/lib/x86_64-linux-gnu/qt5/bin/assistant 关于 model index 获得 model index: index = model....

May 15, 2017 · 1 min · Me