extras_require_demos.requirements_txt_subpackage

This is an example of defining requirements in a requirements.txt file.

It was created with the following code:

.. extras-require:: extra_a
    :file: requirements_txt_subpackage/requirements.txt

Attention

This module has the following additional requirements:

numpy>=1.18.4
pandas!=1.0.0,>=0.25.0
scipy==1.4.1

These can be installed as follows:

python -m pip install extras-require-demos[extra_a]

Functions:

function_a(arg1[, arg2, arg3])

This function does something

function_a(arg1, arg2=0, arg3='abc')[source]

This function does something

Parameters
  • arg1 (any) – An argument

  • arg2 (int) – An integer argument. Default 0.

  • arg3 (str) – A string argument. Default 'abc'.