Skip to main content

Library for replacing emails and urls in plain text messages

To parse your text use urlreplacer.urls or/and urlreplacer.emails. They will only find urls and emails which has a known TLD; meaning example.com will match but example.ujh will not.

Installation:

$ pip install urlreplacer

Usage

from urlreplacer import urls, emails

message = """Hi!
Please try example.com/one.html, test.com or test.com/a/?b=1.
Or email me john@example.com! Bye.
"""

# This will only parse for urls, emails will be left alone.
parsed_message = urls(message)

print(parsed_message)
>>> Hi!
>>> Please try <example.com/one.html>, <test.com> or <test.com/a/?b=1>.
>>> Or email me john@example.com! Bye.

# Now parse for emails, urls will be left alone.
parsed_message = emails(parsed_message)

print(parsed_message)
>>> Hi!
>>> Please try <example.com/one.html>, <test.com> or <test.com/a/?b=1>.
>>> Or email me <john@example.com>! Bye.

Custom marker function

By default it will surround all urls and emails with <>. But you can also supply your own marker function to both urls() and emails().

Example:

def marker(a, b):
    return u'<a href="{}">{}</a>'.format(a, b)

parsed_message = urls('Is this the website: example.com?', marker)
print(parsed_message)
>>> Is this the website: <a href="http://example.com">example.com</a>?

Contributing

There is a makefile setup:

  • $ make install - installs all requirements.

  • $ make test - runs all tests under coverage

  • $ make clean - cleans caches/.pyc etc.

There is also a script for updating the list with known TLDs.

  • $ make update_tlds

This will update the urlreplacer/tlds.py file with the latest list.

LICENSE

The MIT License (MIT)

Copyright (c) [2015] [Tictail]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Release files for urlreplacer 0.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for urlreplacer 0.1.1
File Size Uploaded
urlreplacer-0.1.1.tar.gz 9.7 kB Details

Release files / urlreplacer-0.1.1.tar.gz

Download URL urlreplacer-0.1.1.tar.gz
Size 9.7 kB
Tags Source
SHA-256 checksum
How to use checksums
baf7c9af2a1a4f21c9533ba911d2bd6a804a6e746d09f3809c5230e310c23ddc
BLAKE2b-256 checksum
How to use checksums
8248049e3dde975f544f436574f44c9141f3db5768fbcd6c95a5c59fe2830633
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

This release

0.1.1 This release

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page