A simple web-based clipboard sharing server that allows you to access your clipboard content through a web interface.
- Web interface for viewing and modifying clipboard content
- Secure authentication with randomly generated token
- Easy to use API for clipboard operations
- Cross-platform compatibility
pip install wclipSimply run the clipserver command:
clipserverOr run as a module:
python -m clipserverclipserver [--port PORT] [--no-browser]
--port PORT Specify the port to run the server on (default: 8080)
--no-browser Don't automatically open the browser
--help Show this help message
from clipserver import start_server
# Start with default settings
start_server()
# Or with custom settings
start_server(port=9090, open_browser=False)- The server generates a random 8-character password on startup
- Authentication uses username "clipboard" and the generated password
- Only authenticated users can access clipboard data
- Sessions are maintained using secure cookies
- Python 3.6+
- pyperclip
MIT License - see the LICENSE file for details.