Skip to main content

python pid manager

Project description

# python-pid

## 简单描述

一个关于python pid管理的模块,借助于fcntl来给锁文件加入状态.

[更多python-pid的介绍](http://xiaorui.cc)

本来是打算把进程名字和daemon都做进去的,但是考虑Pid本是个判断进程在不在的事事,没必要让别的逻辑参合进来.

## 安装方法

方法1.
```
pip install python-pid
```

方法2
```
git clone git@github.com:rfyiamcool/python-pid.git
cd python-pid
python setup.py install
```

## 使用方法

可以在你的主函数加一个装饰器,可以传递pidfile的文件路径.
```

#coding:utf-8
@PidFileDeco('my')
def main():
import time
time.sleep(1000)

```
或者是直接调用,acquire是锁定,release()是释放

```
import time
from python_pid import PidFile

f = PidFile("mydaemon")
f.acquire()
time.sleep(100)
f.release()
```

使用with关键词,调用__enter__ , __exit__
```
with PidFile("mydaemon"):
time.sleep(100)
print 'blog: xiaorui.cc'
```

END... ...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-pid-2.2.0.tar.gz (2.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page