All Projects → labtocat → Beautifier

labtocat / Beautifier

Licence: mit
Simple library to cleanup and prettify url patterns and emails

Programming Languages

python
139335 projects - #7 most used programming language
python3
1442 projects
python2
120 projects

Projects that are alternatives of or similar to Beautifier

Nginx Config Formatter
nginx config file formatter/beautifier written in Python.
Stars: ✭ 222 (+73.44%)
Mutual labels:  beautifier
comment-box.nvim
✨ Clarify and beautify your comments using boxes and lines.
Stars: ✭ 91 (-28.91%)
Mutual labels:  beautifier
Plugin Php
Prettier PHP Plugin
Stars: ✭ 1,243 (+871.09%)
Mutual labels:  beautifier
xcbeautify
A little beautifier tool for xcodebuild
Stars: ✭ 687 (+436.72%)
Mutual labels:  beautifier
codeblock-beautifier
💅 A chrome extension for highlighting codes of Medium Articles
Stars: ✭ 118 (-7.81%)
Mutual labels:  beautifier
Latexindent.pl
Perl script to add indentation (leading horizontal space) to LaTeX files. It can modify line breaks before, during and after code blocks; it can perform text wrapping and paragraph line break removal. It can also perform string-based and regex-based substitutions/replacements. The script is customisable through its YAML interface.
Stars: ✭ 415 (+224.22%)
Mutual labels:  beautifier
Powershell Beautifier
A whitespace reformatter and code cleaner for Windows PowerShell and PowerShell Core
Stars: ✭ 213 (+66.41%)
Mutual labels:  beautifier
Atom Beautify
📣 Help Wanted - Looking for Maintainer: https://github.com/Glavin001/atom-beautify/issues/2572 | 💄 Universal beautification package for Atom editor (⚠️ Currently migrating to https://github.com/Unibeautify/ and have very limited bandwidth for Atom-Beautify Issues. Thank you for your patience and understanding ❤️ )
Stars: ✭ 1,501 (+1072.66%)
Mutual labels:  beautifier
tag-picker
Better tags input interaction with JavaScript.
Stars: ✭ 27 (-78.91%)
Mutual labels:  beautifier
Typeset
自动修正中文、英文、代码混合排版中的全半角、空格等问题
Stars: ✭ 63 (-50.78%)
Mutual labels:  beautifier
Git-Beautify-For-MacOS-Terminal
An easy-to-use set of config files to beautify Git in your MacOS or OS X terminal. If you find it hard to parse a jumble of mono-colored type on your command line, this set-up can help you tame the ugly bash beast.
Stars: ✭ 127 (-0.78%)
Mutual labels:  beautifier
vscode-liquid
💧Liquid language support for VS Code
Stars: ✭ 137 (+7.03%)
Mutual labels:  beautifier
Unibeautify
One Beautifier to rule them all, One Beautifier to clean them, One Beautifier to bring them all and in the darkness sheen them
Stars: ✭ 466 (+264.06%)
Mutual labels:  beautifier
Mbeautifier
MBeautifier is a MATLAB source code formatter, beautifier. It can be used directly in the MATLAB Editor and it is configurable.
Stars: ✭ 248 (+93.75%)
Mutual labels:  beautifier
Kodeweave
HTML/CSS/JS and Markdown Playground For Web Designers and Developers
Stars: ✭ 87 (-32.03%)
Mutual labels:  beautifier
Pp sql
Rails ActiveRecord SQL queries log beautifier
Stars: ✭ 223 (+74.22%)
Mutual labels:  beautifier
Xcbeautify
A little beautifier tool for xcodebuild
Stars: ✭ 372 (+190.63%)
Mutual labels:  beautifier
Prettydiff
Beautifier and language aware code comparison tool for many languages. It also minifies and a few other things.
Stars: ✭ 1,635 (+1177.34%)
Mutual labels:  beautifier
Codeblock Beautifier
A chrome extension for highlighting codes of Medium Articles
Stars: ✭ 109 (-14.84%)
Mutual labels:  beautifier
Go Mod Outdated
Find outdated dependencies of your Go projects. go-mod-outdated provides a table view of the go list -u -m -json all command which lists all dependencies of a Go project and their available minor and patch updates. It also provides a way to filter indirect dependencies and dependencies without updates.
Stars: ✭ 474 (+270.31%)
Mutual labels:  beautifier

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' ]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].