April 2019
Intermediate to advanced
646 pages
16h 48m
English
The Python Package Index can display the project's README file or the value of long_description on the package page in the PyPI portal. PyPI is able to interpret the markup used in the long_description content and render it as HTML on the package page. The type of markup language is controlled through the long_description_content_type argument of the setup() call. For now, there are the following three choices for markup available:
Markdown and reStructuredText are the most popular choices among Python developers, but some might still want to use ...