• Stars
    star
    138
  • Rank 263,732 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created over 8 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple library to cleanup and prettify url patterns and emails

Beautifier

Simple library to cleanup and prettify url patterns, domains and so on. Library helps to clean unicodes, special charecters and unnessesary redirection patterns from the urls and gives you clean date.

Documentation

Installation

pip install beautifier

Basic Usages

Email Function

EMAIL cleanup API's

from beautifier import Email
email = Email('[email protected]')

>>> email.domain
'imsach.in'

>>> email.username
 'me'

>>> email.is_free_email
 False

Url Function

URL cleanup API's

from beautifier import Url
url = Url('https://in.linkedin.com/in/sachinphilip?authtoken=887nasdadasd6hasdtg21&secret=98jy766yhhuhnjk')

>>> url.cleanup
'https://in.linkedin.com/in/sachinphilip'

>>> url.domain
 'in.linkedin.com'

>>> url.param
 ['authtoken': '887nasdadasd6hasdtg21',
  'secret': '98jy766yhhuhnjk' ]