README.rst 1.2 KB

1234567891011121314151617181920212223242526272829
  1. .. image:: https://img.shields.io/pypi/v/six.svg
  2. :target: https://pypi.org/project/six/
  3. :alt: six on PyPI
  4. .. image:: https://travis-ci.org/benjaminp/six.svg?branch=master
  5. :target: https://travis-ci.org/benjaminp/six
  6. :alt: six on TravisCI
  7. .. image:: https://readthedocs.org/projects/six/badge/?version=latest
  8. :target: https://six.readthedocs.io/
  9. :alt: six's documentation on Read the Docs
  10. .. image:: https://img.shields.io/badge/license-MIT-green.svg
  11. :target: https://github.com/benjaminp/six/blob/master/LICENSE
  12. :alt: MIT License badge
  13. Six is a Python 2 and 3 compatibility library. It provides utility functions
  14. for smoothing over the differences between the Python versions with the goal of
  15. writing Python code that is compatible on both Python versions. See the
  16. documentation for more information on what is provided.
  17. Six supports Python 2.7 and 3.3+. It is contained in only one Python
  18. file, so it can be easily copied into your project. (The copyright and license
  19. notice must be retained.)
  20. Online documentation is at https://six.readthedocs.io/.
  21. Bugs can be reported to https://github.com/benjaminp/six. The code can also
  22. be found there.