Last updated:
0 purchases
beautifier 0.5.5
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```bashpip install beautifier```## Basic Usages#### Email FunctionEMAIL cleanup API's```pythonfrom beautifier import Emailemail = Email('[email protected]')>>> email.domain'imsach.in'>>> email.username 'me'>>> email.is_free_email False``` #### Url FunctionURL cleanup API's```pythonfrom beautifier import Urlurl = 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' ]```
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.