一、在开头处声明Python使用UTF-8编码显示字符

#/usr/bin/env python
# -*- coding: UTF-8 -*-

如果你要将中文字符存储在文件中,或者写入到数据库中,需要加入:

import sys
reload(sys)
sys.setdefaultencoding('utf-8')

用以改变系统默认编码 

 第一行必须加,因为是Linux环境。

二、运行.py 文件时,出现关于SSL的错误

可以尝试运行:

pip uninstall pyOpenSSL cryptography
sudo pip install pyOpenSSL cryptography

三、crontab定时任务

crontab -e进入定时任务列表,添加任务

添加模板为

0 3 * * * python /root/msg.py

 模板语法为:

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed

 

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐