https://github.com/andrewpetrochenkov/pgrep.py
:id: pgrep python wrapper
https://github.com/andrewpetrochenkov/pgrep.py
python
Last synced: about 2 months ago
JSON representation
:id: pgrep python wrapper
- Host: GitHub
- URL: https://github.com/andrewpetrochenkov/pgrep.py
- Owner: andrewpetrochenkov
- License: unlicense
- Created: 2018-10-01T18:05:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-03T21:11:33.000Z (over 4 years ago)
- Last Synced: 2024-10-11T17:39:14.281Z (8 months ago)
- Topics: python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://pypi.org/project/pgrep/)
[](https://unlicense.org/)
[](https://github.com/andrewp-as-is/pgrep.py/actions)### Installation
```bash
$ [sudo] pip install pgrep
```#### Examples
```python
>>> import pgrep
>>> pgrep.pgrep("Finder")
[322]>>> pgrep.pgrep("bash")
[416, 434, 30681, 30918]>>> pgrep.pgrep("not-existing-process")
[]
```