Skip to main content

A python wrapper for the ENet library

Project description

# pyenet

pyenet is a python wrapper for the ENet library by Lee Salzman,
http://enet.bespin.org

It was originally written by Scott Robinson <scott@tranzoa.com> and is
currently maintained by Andrew Resch <andrewresch@gmail.com>

This fork is being maintained by the piqueserver team for purposes of including
patches for bugs found while developing piqueserver, and to provide a package
on pypi.

## License

pyenet is licensed under the BSD license, see LICENSE for details.
enet is licensed under the MIT license, see http://enet.bespin.org/License.html

## Dependencies

Building pyenet requires all the same dependencies as enet plus Cython and,
obviously, Python.

## Installation

### From pypi

```
pip install pyenet
```

### Manually from git

Note: the enet sources are automatically downloaded from http://enet.bespin.org/
by `setup.py`.

This version of pyenet requires enet 1.3.

Run the setup.py build:

```
$ python setup.py build
```

Once that is complete, install the new pyenet module:

```
# python setup.py install
```

## Packaging notes

- update package version in `setup.py`

- set up the venv:

```bash
python3 -m venv venv
source venv/bin/activate
pip install -r dev-requirements.txt
```

- build the sdist: `python setup.py sdist`
- build the bdist wheel:
- ```
sudo docker run -i -t -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /bin/bash
# from in docker container:
cd /io
/opt/python/cp36-cp36m/bin/pip install -r dev-requirements.txt
```
- upload to pypi: `twine upload dist/*`
- once successful: commit, tag, push to github

## Usage

Once you have installed pyenet, you only need to import the enet module to
start using enet in your project.

Example server:
```
>>> import enet
>>> host = enet.Host(enet.Address("localhost", 33333), 1, 0, 0)
>>> event = host.service(0)
```
Example client:
```
>>> import enet
>>> host = enet.Host(None, 1, 0, 0)
>>> peer = host.connect(enet.Address("localhost", 33333), 1)
```
More information on usage can be obtained from:
http://enet.bespin.org/Tutorial.html


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

pyenet-1.3.13.post6.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distributions

pyenet-1.3.13.post6-cp36-cp36m-win_amd64.whl (82.4 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

pyenet-1.3.13.post6-cp36-cp36m-manylinux1_x86_64.whl (376.1 kB view hashes)

Uploaded CPython 3.6m

pyenet-1.3.13.post6-cp35-cp35m-manylinux1_x86_64.whl (370.3 kB view hashes)

Uploaded CPython 3.5m

pyenet-1.3.13.post6-cp34-cp34m-manylinux1_x86_64.whl (379.3 kB view hashes)

Uploaded CPython 3.4m

pyenet-1.3.13.post6-cp33-cp33m-manylinux1_x86_64.whl (352.9 kB view hashes)

Uploaded CPython 3.3m

pyenet-1.3.13.post6-cp27-cp27mu-manylinux1_x86_64.whl (339.3 kB view hashes)

Uploaded CPython 2.7mu

pyenet-1.3.13.post6-cp27-cp27m-manylinux1_x86_64.whl (339.3 kB view hashes)

Uploaded CPython 2.7m

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