pyenet
pyenet copied to clipboard
A python wrapper for the ENet library
how can i set the `enet_crc32` ?
When using pyenet in a python project on repl.it a peer will stay connecting forever. ```python import enet host = enet.Host(None, 1, 0, 0, 0) peer = host.connect(enet.Address(b"35-225-183-118.noodlecakegames.net", 42775), 1)...
hello, how do i set `enet_host_compress_with_range_coder` and `enet_crc32` in my code? trying to recreate a Growtopia 'proxy' in python.
https://pypi.python.org/pypi/pyenet/1.3.13.1 The pyenet package seems to no longer exist
This allows you to get notified when enet is done with the packet, i.e. it has been transmitted successfully.
Hi, it's me again. I finally have had some time to try and mess with this some more. The following code, however, fails to work properly. Know of any reason...
during the creation of https://github.com/piqueserver/piqueserver/pull/361, I noticed that the enet callbacks swallow any exceptions in python space silently.
I am unable to get pyenet to compile under windows due to linking errors. Some instructions would be greatly appreciated.
When Address is being created with an argument which is not an instance of `bytes`, pyenet will through and error. Because of the following: https://github.com/aresch/pyenet/blob/master/enet.pyx#L226 bytes() only takes in 1...
Hi, I just looked at this as someone asked me for help setting up a Python coding environment, and it doesn't appear that there's any wheels on Pypi. What are...