|
Static methods defined here:
- counter()
- Provide counter collection
:return: collections.Counter
- is_less(arg1, arg2)
- Compare two numbers (< less)
:param int arg1: right version
:param int arg2: left version
:return: bool
- is_more(arg1, arg2)
- Compare two numbers (great >)
:param int arg1: right version
:param int arg2: left version
:return: bool
- list()
- Provide dictionary collection
:return: dict
- parse_url(url)
- Parse url
:param str url: input url
:return: dict
- percent(counter, total)
- Return percentage
:param int counter: current value
:param int total: total value
:return: str
- to_json(data, sort=True, indents=4)
- Json pretty print
:param dict data: mixed data params
:param bool sort: use sort
:param int indents: space indents
:return: str
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
|