python
洁身-斯坦姬
这个作者很懒,什么都没留下…
展开
-
python类的定义以及__dict__和__new()__作用
python类的定义以及__dict__和__new()__作用 定义一个类可以用下面三种方法: #Classes without an inheritance list inherit, by default, from the base class object #1.默认继承object class Foo: pass #2. class Foo(): pass #3可以继承...原创 2019-07-15 11:00:35 · 1191 阅读 · 0 评论 -
使用supervisor管理python web服务
概述 supervisor就是用Python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台daemon,并监控进程状态,异常退出时能自动重启。 编写的Python web 程序在centos6.5上可以通过python3 app.py执行,但是退出ssh登陆之后,进程也随之结束。通过安装并配置supervisor就可以把命令行程序变成“deamon”随系统自动运行。 supervi...原创 2019-07-16 09:18:17 · 458 阅读 · 0 评论