clipboard


Nameclipboard JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/terryyin/clipboard
SummaryA cross platform clipboard operation library of Python. Works for Windows, Mac and Linux.
upload_time2014-05-22 12:49:08
maintainerNone
docs_urlNone
authorTerry Yin
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            clipboard
=========

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

Well, as I was trying to implement this, I realize that everything is included in pyperclip already: https://pypi.python.org/pypi/pyperclip/

But anyway, `clipboard` is a better name. You are free to choose:-) I might add more features to it.

Usage:

::

   import clipboard
   clipboard.copy("abc")  # now the clipboard content will be string "abc"
   text = clipboard.paste()  # text will have the content of clipboard
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/terryyin/clipboard",
    "name": "clipboard",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Terry Yin",
    "author_email": "terry@odd-e.com",
    "download_url": "https://files.pythonhosted.org/packages/8a/38/17f3885713d0f39994563029942b1d31c93d4e56d80da505abfbfb3a3bc4/clipboard-0.0.4.tar.gz",
    "platform": "any",
    "description": "clipboard\n=========\n\nA cross platform clipboard operation library of Python. Works for Windows, Mac and Linux.\n\nWell, as I was trying to implement this, I realize that everything is included in pyperclip already: https://pypi.python.org/pypi/pyperclip/\n\nBut anyway, `clipboard` is a better name. You are free to choose:-) I might add more features to it.\n\nUsage:\n\n::\n\n   import clipboard\n   clipboard.copy(\"abc\")  # now the clipboard content will be string \"abc\"\n   text = clipboard.paste()  # text will have the content of clipboard",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A cross platform clipboard operation library of Python. Works for Windows, Mac and Linux.",
    "version": "0.0.4",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "9653b546de6f0fdb81fbc9634500e432",
                "sha256": "a72a78e9c9bf68da1c3f29ee022417d13ec9e3824b511559fd2b702b1dd5b817"
            },
            "downloads": -1,
            "filename": "clipboard-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "9653b546de6f0fdb81fbc9634500e432",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1713,
            "upload_time": "2014-05-22T12:49:08",
            "upload_time_iso_8601": "2014-05-22T12:49:08.683348Z",
            "url": "https://files.pythonhosted.org/packages/8a/38/17f3885713d0f39994563029942b1d31c93d4e56d80da505abfbfb3a3bc4/clipboard-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2014-05-22 12:49:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "terryyin",
    "github_project": "clipboard",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "clipboard"
}
        
Elapsed time: 0.01815s