Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewelse/pyxpcconnection
An XPC Wrapper for OS X
https://github.com/matthewelse/pyxpcconnection
Last synced: about 1 month ago
JSON representation
An XPC Wrapper for OS X
- Host: GitHub
- URL: https://github.com/matthewelse/pyxpcconnection
- Owner: matthewelse
- License: apache-2.0
- Created: 2015-08-28T21:02:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T21:37:35.000Z (over 5 years ago)
- Last Synced: 2023-08-02T14:56:17.327Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 25.4 KB
- Stars: 15
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pyxpcconnection
A Python wrapper for XPC in OS X.
pyxpcconnection is a port of node-xpc-connection by Sandeep Mistry to Python.
## Installation
> Most of the time, you won't need to install this package directly - you should install [bleep](https://github.com/matthewelse/bleep) instead.
All of pyxpcconnection's dependencies are included with OS X, so installation is simple:
```bash
git clone https://github.com/matthewelse/pyxpcconnection
cd pyxpcconnection
sudo python setup.py install
```If you are compiling and running using Python3 installed via HomeBrew run:
```bash
brew install boost-python --with-python3
ln -s /usr/local/lib/libboost_python3.a /usr/local/lib/libboost_python-py34.a
```If you want to work on the development of pyxpcconnection, use this instead:
```bash
git clone https://github.com/matthewelse/pyxpcconnection
cd pyxpcconnection
sudo python setup.py develop
```