PythonNote

Python 笔记

PyCoder’s Weekly 中文翻译

每个 Python 程序员都要知道的日志实践
Python 魔术方法指南
初学者必知的Python中优雅的用法
Python高级编程

《Python Cookbook》 3rd Edition 翻译 - 字符串开头或结尾匹配
Python正则表达式

Window 下安装 Python 和 pip

安装 Python

安装 pip

如果系统已经安装的 python 版本 是 python2 >= 2.7.9 ,则默认已经包含了 pip,但是要作如下设置
下载 https://bootstrap.pypa.io/get-pip.py 到任意一个目录
运行自动安装脚本程序

1
python get-pip.py

并将路径 C:\Python27\Scripts 添加到 PATH 系统环境变量

https://pip.pypa.io/en/stable/installing/


Window 下安装 PySide

GitHub - PySide

1
pip install -U PySide

https://pypi.python.org/pypi/PySide/1.2.4#installing-pyside-on-a-windows-system


问题分析

使用php调用python程序使用日志打印日志文件错误,因为运行php的文件夹和没有写权限导致

1
$result = shell_exec('python /data/home/yzhang/CoamServer/Python/logger.py');
1
2
# handler = logging.FileHandler('tester.log')
handler = logging.FileHandler('/data/home/yzhang/CoamServer/Python/tester.log')

参考 Python Logging Impeding Call from PHP Script

文章目录
  1. 1. Python 笔记
    1. 1.0.1. Window 下安装 Python 和 pip
      1. 1.0.1.1. 安装 Python
      2. 1.0.1.2. 安装 pip
    2. 1.0.2. Window 下安装 PySide
      1. 1.0.2.1. 问题分析