Skip to main content
# 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... ...

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 details)

Uploaded Source

File details

Details for the file python-pid-2.2.0.tar.gz.

File metadata

  • Download URL: python-pid-2.2.0.tar.gz
  • Upload date:
  • Size: 2.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for python-pid-2.2.0.tar.gz
Algorithm Hash digest
SHA256 a2aec49a09ebedd7255b890788bdb7d6ee5f4abfc77e4d8077ab0080bb6cbd41
MD5 9912b69ca57096cad4ad63e51c9ea678
BLAKE2b-256 5cb34ab4a9a9f547c70bbde165e5bbea01a6ac9e3e6218707975efb3d3fe39c0

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.2.0 This release

1 file

2.1

1 file

2.0

1 file

1.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page