six==1.17.0
# Python 2 and 3 compatibility utilities
$ pip install six
downloads/wk
0
license
MIT
version
1.17.0
python
!=3.0.*,!=3.1.*,!=3.2.*,>=2.7
What is six?
Six is a Python library that provides compatibility utilities for writing code that works across both Python 2 and Python 3. Developers use it to handle differences between the two versions—such as renamed modules, changed built-in functions, and different string handling—without maintaining separate codebases. It abstracts away version-specific details so the same code can run on both Python versions.
Author
Benjamin Peterson