A beginner-friendly library for clean, format-friendly copy-pasting.
Copying and pasting text is one of the most commonly-used functionalities we have on our computers. But sometimes, there are formatting issues in the text you're copying that a simple 'paste without formatting' can't fix.
Enter prettycopy.
PrettyCopy will help you clean up the text on your clipboard before you paste it. Just copy text, run a PrettyCopy function, and you'll be able to paste it with corrections already in place!
If you already have Python, just run:
pip install prettycopy
Copy a piece of text. Run a PrettyCopy function. Now, when you paste, the text will already by corrected. That's all!
For added flexibility:
You can enter the text as an argument to the function, and PrettyCopy will automatically copy the corrected text to your clipboard. Plus, if you're using PrettyCopy functions through code, the functions return the corrected text as a string.
prettycopy.nonewlines(optional_text)
: Removes all line breaks from the text.
prettycopy.nobullets(optional_text)
: Removes all bullet symbols (•) and replaces them with line breaks.
prettycopy.bullettopar(optional_text)
: Removes all line breaks and bullet symbols (•) and replaces them with spaces, returning a single paragraph.
prettycopy.simplequote(optional_text)
: Adds quotation marks around the text.
prettycopy.quote(optional_end_punctuation, optional_text)
: Adds quotation marks around the text, ending in a punctuation mark. The default is a comma.
Example: this is a test --> prettycopy.quote() --> "this is a test,"
Example: this is a test --> prettycopy.quote('!') --> "this is a test!"
prettycopy.betterbullets(docID)
: If you enter the document ID of an editable Google Doc (the long string of letters and numbers in the URL), this function will copy the text in your clipboard to the end of the document, replacing all bullet symbols (•) with correctly-formatted bullet points. Still under construction.