Metadata-Version: 2.1
Name: screensharing
Version: 0.0.2
Summary: sharing your screen with other users in realtime
Author: Vishal Sharma, Raj kumar
Author-email: vishalsharma659615@gmail.com, rky1524@gmail.com
License: MIT
Keywords: screen-sharing,screen-casting,casting,display-sharing,realtime-screensharing,realtime casting,video sharing
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Screensharing
Screenshare: Python module for sharing/casting your screen with others in realtime with
fast &amp; accurate casting. Works best when connected to same network  Copyright Â© 2024 Coder-wis
<vishalsharma659615@gmail.com>

## Coming updates :
<ol>
  <li> Mouse Controlling </li>
  <li> Voice Transfer features </li>
</ol>

## Installation of Library :
The pip command to install ttkinter videos library for use
<pre><code> pip install screensharing </code></pre>

## Usage :

### From Server-Side (sender) :
<pre lang='sh'>
from screensharing import server
import socket

host=socket.gethostname()
print(host)
ser=server(host)
ser.create()
</pre>

### From Client-Side (receiver) :
<pre lang='sh'>
from pypi.screensharing import server_receive
  
ser=server_receive(host="Dell",port=8080)
ser.connect()
</pre>

## Releases :
For the updated version <b><a href="">Latest</a></b> version.

## License :
Distributed under the MIT License. See <b><a href="https://github.com/Vishal24102002/screensharing/blob/main/LICENSE"> LICENSE </a></b>for more information.
