Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

easyTX

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easyTX

Module to exchange data in any form (video or string) from one PC to another over the same network.

  • 2.0
  • PyPI
  • Socket score

Maintainers
1

easyTX 2.0

  • "easyTX" 2.0 is the ultimate module to exchange data in any form (video or string) from one PC to another.
  • It works on the basis of udp broadcasting.
  • The Server has the data that is continuously shared on the LAN.
  • Any number of Clients can access the data from the Server.

Installation

pip install easyTX

The following convention is used here:

  • the server is transmitting data
  • the client is receiving data

Usage

server.py
from easyTX import Server
socket = Server(5000)
socket.conn()
socket.send_frame()
client.py
from easyTX import Client
import cv2
socket = Client(5000)
socket.conn()
while True:
	frame = socket.recv_frame()
	cv2.imshow('frame', frame)
	if cv2.waitKey(1) & 0xFF == ord('q'):
		print('Disconnecting..')
		break

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc