Skip to main content

Find and replace URLs in plain text messages

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

urlreplacer-0.1.1.tar.gz (9.7 kB view details)

Uploaded Source

File details

Details for the file urlreplacer-0.1.1.tar.gz.

File metadata

  • Download URL: urlreplacer-0.1.1.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for urlreplacer-0.1.1.tar.gz
Algorithm Hash digest
SHA256 baf7c9af2a1a4f21c9533ba911d2bd6a804a6e746d09f3809c5230e310c23ddc
MD5 b6227ce8c28163fdb08eb4020f06c3e5
BLAKE2b-256 8248049e3dde975f544f436574f44c9141f3db5768fbcd6c95a5c59fe2830633

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page