fabricgov

(★ 15)

No description available.

File Explorer

  • .env-example
  • .gitignore
  • CHANGELOG.md
  • LICENSE
  • mkdocs.yml
  • pyproject.toml
  • pytest.ini
  • README.en.md
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

poetry add

View Details ▼

Add required packages to the `pyproject.toml` file in Poetry.
See also: `asdf`.

poetry add {{package_name}}

Add required packages:

poetry add {{package_name}} --group {{group_name}}

Add required packages to a specific group of dependencies:

poetry add {{package_name}}=={{version}}

Add a specific version of a package:

// repository documentation