Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Python3 module for working with clipboard. Created because pyperclip is discontinued.
Python3 module for working with clipboard. Created because pyperclip is discontinued.
Mostly made for ✨ YTCON
import clipman
clipman.init() # Just initialize module
# Set text to clipboard
clipman.set("test")
# Get text from clipboard. So simple!:)
print(clipman.get())
Out: 'test'
Also you can use clipman.copy("ytcon")
and clipman.paste()
as from pyperclip!:)
clipman.exceptions.ClipmanBaseException
:import clipman
try:
clipman.init()
print(clipman.paste())
except clipman.exceptions.ClipmanBaseException as e:
print(e)
pip3 install clipman
• 🟩 Linux - FULL SUPPORT, native in KDE. In other cases, some additional dependencies are required
• 🟩 Android - FULL SUPPORT in Termux, some additional deps needed too
• 🟩 BSD Systems - Works on FreeBSD / GhostBSD and OpenBSD / FuguIta, deps same as Linux
• 🟩 Windows - Works natively
• 🟩 MacOS - Works on macOS HighSierra 10.13
Unstead zypper you need to use system package manager: pkg, apt, dnf, pacman, etc
- = - = -
The only minimum requirement is dbus, and an dbus-next
module, which will install with clipman as dependency
KDE Plasma 5 and KDE Plasma 6 is supported
- = - = -
xsel
or xclip
packageExample: sudo zypper install xsel OR sudo zypper install xclip
- = - = -
wl-clipboard
packageExample: sudo zypper install wl-clipboard
- = - = -
Clipboard works only in Termux. And you need install additional deps in it.
Termux:API
from F-Droidpkg install termux-api
termux-clipboard-get
This code is under Mozilla Public License Version 2.0.
📕 [!!] If you encouter an error, please read the error text very closely. The module is specially written so that errors give you a complete answer even if you a lamer
pip3 show clipman
) and error text with clipman.init(debug=True)
:)FAQs
Python3 module for working with clipboard. Created because pyperclip is discontinued.
We found that clipman demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.