skillfed

clipboard

A cross platform clipboard operation library of Python. Works for Windows, Mac and Linux.

clipboard v0.0.4 513.2K downloads/30d#6,251 on PyPI88
Permissive license MIT Abandoned released

What it is and what it does

clipboard is a minimal wrapper around system clipboard operations for Python. It exposes two functions—copy() to write text to the clipboard and paste() to read it back—and claims to work across Windows, macOS, and Linux. The package has no runtime dependencies and is intentionally simple.

The author acknowledged in the original description that pyperclip already provided similar functionality but chose to publish clipboard anyway as a simpler alternative. However, the package has been abandoned since its single release in May 2014, with no updates to support modern Python versions or address any issues that may have arisen in the intervening years.

Use it for:

  • Automating copy-paste workflows in command-line tools or scripts that need to interact with the system clipboard.
  • Building desktop automation or testing utilities that verify or manipulate clipboard contents.
  • Integrating clipboard operations into cross-platform Python applications with minimal dependencies.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a simple interface to copy text to and paste text from the system clipboard on Windows, Mac, and Linux.

No. The package is abandoned (last release 2014, no maintenance since), supports only obsolete Python versions (2.7, 3.2, 3.3), and offers no advantages over actively maintained alternatives like pyperclip. High install friction and lack of any security or compatibility updates make it unsuitable for new projects.

Install

clipboard on PyPI

pip

pip install clipboard

uv

uv add clipboard

poetry

poetry add clipboard

Installing clipboard

Before you install

High install friction from a source distribution with no compiled dependencies listed. The package is abandoned—last release was 2014-05-22 and last commit 2023-08-15—so no maintenance or security updates should be expected.

License in practice

MIT license is permissive, allowing commercial and private use with minimal restrictions.

Quickstart

import clipboard
clipboard.copy("abc")
text = clipboard.paste()

Requires system clipboard support; behavior on headless or restricted environments is unverified.

Verify before relying

  • Whether the package works reliably on modern Python versions (classifiers list only 2.7, 3.2, 3.3).
  • Whether clipboard operations work in headless or sandboxed environments.
  • Compatibility with current versions of Windows, macOS, and Linux desktop environments.

Package facts

License MIT (permissive)
Python support not specified
Install friction high — source build required
Runtime dependencies none
Maintenance abandoned — 4,467 days since the last release
Last repo commit
First released
Downloads 513,162/month — #6,251 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: clipboard-0.0.4.tar.gz

Development Status :: 5 - Production/StableIntended Audience :: DevelopersIntended Audience :: End Users/DesktopLicense :: FreewareOperating System :: MacOS :: MacOS XOperating System :: Microsoft :: WindowsOperating System :: POSIXProgramming Language :: PythonProgramming Language :: Python :: 2.7Programming Language :: Python :: 3.2Programming Language :: Python :: 3.3Topic :: Software Development :: Quality Assurance

Tags

clipboard copy pastesystem clipboard accesscross-platform clipboardclipboard operations pythonread write clipboard
abandonedclipboard-access

More Quality Assurance packages