Metadata-Version: 2.1
Name: pastoke
Version: 0.1.1
Summary: paste jokes script
Home-page: https://github.com/streanger/pastoke
Author: streanger
Author-email: divisionexe@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pyperclip

Pastoke
===========
Script for log, clear or replace clipboard with using 'pyperclip'

Install
===========

.. code-block:: python

    pip install pastoke

Usage
===========

.. code-block:: python

    from pastoke import log_changes, clear_clipboard, replace_clipboard

    # log clipboard to log.txt file. Default path is python exe dir
    log_changes()

    # clear clipboard
    clear_clipboard()

    # replace clipboard with specified phrase
    replace_clipboard(search='test', thing='trick')


