zync
zync is a utility tool for python operations.

INSTALLATION
pip install zyncify
Usage
1. IMPORT
from zync import *
2. FUNCTIONS
logger
logger takes in a string and logs it with an INFO level.
from zync import logger
logger("info message")
message = "info message"
logger(message)
bugger
bugger takes in a string and logs it with a DEBUG level.
from zync import bugger
bugger("debug message")
message = "debug message"
bugger(message)
wegger
wegger takes in a string and logs it with an ERROR level.
from zync import wegger
wegger("error message")
message = "error message"
wegger(message)
Slugger
Slugger converts a string to slug while maintaining capitalization.
from zync import Slugger
Slugger("Test String")
string = "Test String"
Slugger(string)
slugger
slugger converts a string to a slug with no capitalization.
from zync import slugger
slugger("Test String")
string = "Test String"
slugger(string)
3. TAIL LOG FILE
tail -f ./.zync.log
Author
TJ Bredemeyer
twitter: @tjbredemeyer