Metadata-Version: 2.1
Name: iosock
Version: 0.0.19
Summary: Simple I/O Socket
Project-URL: Homepage, https://github.com/chorong8883/iosock
Author-email: Chor <chorong8883@gmail.com>
License-File: LICENSE
Keywords: epoll,iosock,kqueue,socket
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# iosock
Simple I/O Socket
Working on.

```python
import iosock
server = iosock.EpollServer()
server.listen('localhost', 0000)
server.start()
recv_data = server.recv()
if recvdata['type'] == 'accept':
elif recvdata['type'] == 'debug':
server.join()
```
