case-conversion
case-conversion copied to clipboard
Python package ported from Davis Clark's CaseConversion Sublime Plugin
The Usage section of the readme is somewhat outdated: ```python >>> import case_conversion >>> case_conversion.snake("fooBarHTTPError") 'foo_bar_h_t_t_p_error' # ewwww :( >>> case_conversion.snake("fooBarHTTPError", acronyms=['HTTP']) 'foo_bar_http_error' # pretty :) ``` The current API...
This package fills a unique void, left by other packages. Namely it does two things: - many string conversions - acronym detection Hence it would be useful to make it...
The current implementation of the string conversion logic does not strike me as optimal. Albeit it is working, I wonder whether using an approach to detect string case, acronyms and...
What can be borrowed from John Gruber's? How relevant is this for other cases than title case? Explanation from https://daringfireball.net/2008/05/title_case: - It knows about small words that should not be...