🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

wclip

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wclip

A web-based clipboard sharing server

0.1.2
PyPI
Maintainers
1

Webclipboard

A simple web-based clipboard sharing server that allows you to access your clipboard content through a web interface.

Features

  • Web interface for viewing and modifying clipboard content
  • Secure authentication with randomly generated token
  • Easy to use API for clipboard operations
  • Cross-platform compatibility

Installation

pip install wclip

Usage

Command Line

Simply run the webclipboard command:

webclipboard

Or run as a module:

python -m webclipboard

Options

webclipboard [--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

As a Library

from webclipboard import start_server

# Start with default settings
start_server()

# Or with custom settings
start_server(port=9090, open_browser=False)

Security

  • 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

Requirements

  • Python 3.6+
  • pyperclip

License

MIT License - see the LICENSE file for details.

Keywords

clipboard

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