Skip to main content

Extension providing a basic networking protcol implementations as a Python module using mainly C-Extenstions.

Project description

# networkinglib Python Networking Module

## How to use

### TCP Client #### Opening socket and connecting to server `Python from networkinglib import tcp socket = tcp.connect('127.0.0.1', 7777) if not socket: print("Could not connect!") `

#### Sending packet `Python socket.send("Hello Server!") `

#### Receiving Packets `Python print(socket.receive()) `

#### Closing connection `Python socket.close() `

### UDP Client #### Opening socket `Python from networkinglib import udp socket = udp.open() if not socket: print("An unexpected error occured!") `

#### Sending packet `Python socket.send("Hello Server!", "127.0.0.1", 7777) # or socket.send("Hello Server!", "127.0.0.1:7777") `

#### Receiving Packets `Python print(socket.receive()) `

#### Closing connection `Python socket.close() `

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

networkinglib-0.2.1.tar.gz (1.7 kB view hashes)

Uploaded Source

Built Distribution

networkinglib-0.2.1-py3-none-any.whl (2.1 kB view hashes)

Uploaded Python 3

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