Server to run ytclip.
Project description
pyjpgclipboard
Platform Unit Tests
Brief
Cross platform clipboard for handling copy/paste jpg in python
This libray is meant to do only one thing and one thing well: copy jpg's to and from the system clipboard.
Install
python -m pip install pyjpgclipboard
Ubuntu/Linux
The ubuntu lib uses xclip
sudo apt-get install xclip
If you are running in a headless display you'll need a dummy x-server running to use xclip. Please install it using this:
export DISPLAY=:0
sudo Xvfb -ac :0 -screen 0 1280x1024x24 > /dev/null 2>&1 &
Api
from pyjpgclipboard import clipboard_dump_jpg, clipboard_load_jpg
clipboard_load_jpg("myfile.jpg") # Clipboard now has jpg image
clipboard_dump_jpg("myfile2.jpg) # Clipboard image contents dumped to disk.
Testing
Make sure that tox
is installed on your system and run it at the root directory of this project.
Will pyjpgclipboard support more features?
Probably not. Unless it's really important.
We only support jpg images (and not any other formats or text) because manipulating the system
clipboard across different platforms is hard. As of the creation of this repo there really
isn't any library that allows users to copy / paste jpegs. There are a lot of libraries that
allow cross platform posting of text and binary data. So this library is intended to fill in that
gap. Libraries like pyclip
should, in the future, use pyjpgclipboard
to handle the missing jpg
clipboard manipulation.
What motivatated this library?
Selenium webdriver tests has a missing feature of taking an image and pasting it through it's api.
This is a problem if you are running a selenium test and you need to be able to test pasting an image as part of your test suite (hence the motivation to create this library).
Footguns
There is only one system clipboard. So running this library in different threads/processes will result in collisions. It's up to the application running this library to provide any necessary locking mechanism.
Versions
- 1.0.3: Ubuntu implemented and tested to work on headless display
- 1.0.2: Now installs on linux. Before it would error. But not all codepaths that include this library will actually use it.
- 1.0.1: Bug fix
- 1.0.0: Release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyjpgclipboard-1.0.3.tar.gz
.
File metadata
- Download URL: pyjpgclipboard-1.0.3.tar.gz
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c2ecd5b9cf6ddc9cd86be2209e5958576936d294b5137d817c2f4c7329c003a |
|
MD5 | 312b21538d310b3cacaa265a91117922 |
|
BLAKE2b-256 | 5e47a476846f7a1b9a0da51018675f38a9de4ae78d3c4517ff2665b247a08be3 |
File details
Details for the file pyjpgclipboard-1.0.3-py2.py3-none-any.whl
.
File metadata
- Download URL: pyjpgclipboard-1.0.3-py2.py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97ecf9f0766c36ec96f34dfdf088adedf79d63be30b3369df8c144f378fc2166 |
|
MD5 | 465e700131fca9c262701b70f7ec45e3 |
|
BLAKE2b-256 | 4543f8cac3331f8649e868f0908af25a0c153b7c55a442103afd0f568723e0c9 |