Re: No more Redirect page.

Lawrence D’Oliveiro <[email protected]> Wed, 29 Jul 2026 23:36:45 -0000 (UTC)
Newsgroups comp.lang.python,alt.comp.software.firefox
Organization A noiseless patient Spider
Message-ID <[email protected]>
On Sat, 25 Jul 2026 15:59:03 GMT, Gilmeh Serda wrote:

> On Sat, 25 Jul 2026 04:33:42 -0000 (UTC), Lawrence D’Oliveiro wrote:
>
>> I often copy and paste links into the following script for this
>> reason.
>
> Why not use pyperclip? Then you can just use clipboard:

And then have to install a bunch of extra dependencies. My existing
script relies on nothing other than the standard Python library:

    import sys
    import re
    from urllib import \
        parse as urlparse
    import getopt

That’s it.