Skip to main content

A lightweight Python library for managing packages and versions across different Python environments

Project description

feu :fire:

CI Nightly Tests Nightly Package Tests Codecov
Documentation Documentation
Code style: black Doc style: google Ruff Doc style: google
PYPI version Python BSD-3-Clause
Downloads Monthly downloads

Overview

feu (French word for "fire" 🔥) is a lightweight Python library designed to help manage Python packages and their versions across different Python environments.

Key Features

  • Check package availability: Verify if packages and modules are installed
  • 🔄 Version-aware installation: Install packages with automatic version compatibility checks
  • 🎯 Smart version resolution: Find the closest valid package version for your Python environment
  • 📋 Package registry: Built-in compatibility information for popular packages (numpy, pandas, torch, etc.)
  • 🖥️ CLI tools: Command-line interface for package management tasks
  • 🪶 Lightweight: Minimal dependencies (only packaging required for core functionality)

Quick Example

from feu.imports import is_package_available
from feu.package import find_closest_version
from feu.version import get_package_version

# Check if a package is available
if is_package_available("numpy"):
    version = get_package_version("numpy")
    print(f"NumPy {version} is installed!")

# Find the closest valid version for your Python version
version = find_closest_version(
    pkg_name="numpy", pkg_version="2.0.2", python_version="3.10"
)
print(f"Closest valid version: {version}")

Why feu?

Managing Python package versions across different Python versions can be challenging. Different Python versions support different package versions, and manually tracking compatibility can be error-prone. feu solves this by:

  1. Automating version selection: Automatically finds compatible package versions for your Python environment
  2. Preventing installation failures: Validates versions before installation to avoid runtime errors
  3. Simplifying multi-version support: Makes it easy to support multiple Python versions in your projects
  4. Providing graceful fallbacks: Check package availability and provide alternatives when packages aren't installed

Documentation

Quick Links

Installation

We highly recommend installing a virtual environment. feu can be installed from pip using the following command:

pip install feu

To make the package as slim as possible, only the minimal packages required to use feu are installed. To include all the dependencies, you can use the following command:

pip install feu[all]

Please check the get started page to see how to install only some specific dependencies or other alternatives to install the library. The following is the corresponding feu versions and supported dependencies.

feu packaging python click* gitpython* requests*
main >=21.0,<27.0 >=3.10 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.6.2 >=21.0,<27.0 >=3.10 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.6.1 >=21.0,<26.0 >=3.10 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.6.0 >=21.0,<26.0 >=3.10 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.5.0 >=21.0,<26.0 >=3.10,<3.15 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.4.2 >=21.0,<26.0 >=3.10,<3.15 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.4.1 >=21.0,<26.0 >=3.10,<3.15 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0
0.4.0 >=21.0,<26.0 >=3.9,<3.14 >=8.1,<9.0 >=3.1.41,<4.0 >=2.30,<3.0

* indicates an optional dependency

older versions
feu packaging python click* gitpython* fire* requests*
0.3.5 >=21.0,<26.0 >=3.9,<3.14 >=8.1,<9.0 >=3.1.41,<4.0
0.3.4 >=21.0,<26.0 >=3.9,<3.14 >=8.1,<9.0 >=3.1.41,<4.0
0.3.3 >=21.0,<26.0 >=3.9,<3.14 >=8.1,<9.0 >=3.1.41,<4.0
0.3.2 >=21.0,<25.0 >=3.9,<3.14 >=8.1,<9.0
0.3.1 >=21.0,<25.0 >=3.9,<3.14 >=8.1,<9.0
0.3.0 >=21.0,<25.0 >=3.9,<3.14 >=8.1,<9.0
0.2.4 >=21.0,<25.0 >=3.9,<3.13 >=8.1,<9.0
0.2.3 >=21.0,<25.0 >=3.9,<3.13 >=8.1,<9.0
0.2.2 >=21.0,<25.0 >=3.9,<3.13 >=8.1,<9.0
0.2.1 >=21.0,<25.0 >=3.9,<3.13 >=8.1,<9.0
0.2.0 >=21.0,<25.0 >=3.9,<3.13 >=8.1,<9.0
0.1.1 >=21.0,<25.0 >=3.9,<3.13 >=0.6.0,<1.0
0.1.0 >=21.0,<25.0 >=3.9,<3.13 >=0.6.0,<1.0
0.0.7 >=21.0,<25.0 >=3.9,<3.13
0.0.6 >=21.0,<25.0 >=3.9,<3.13
0.0.5 >=21.0,<25.0 >=3.9,<3.13
0.0.4 >=21.0,<25.0 >=3.9,<3.13
0.0.3 >=21.0,<25.0 >=3.9,<3.13
0.0.2 >=22.0,<24.0 >=3.9,<3.13
0.0.1 >=22.0,<23.3 >=3.9,<3.13

Contributing

Please check the instructions in CONTRIBUTING.md.

Suggestions and Communication

Everyone is welcome to contribute to the community. If you have any questions or suggestions, you can submit Github Issues. We will reply to you as soon as possible. Thank you very much.

API stability

:warning: While feu is in development stage, no API is guaranteed to be stable from one release to the next. In fact, it is very likely that the API will change multiple times before a stable 1.0.0 release. In practice, this means that upgrading feu to a new version will possibly break any code that was using the old version of feu.

License

feu is licensed under BSD 3-Clause "New" or "Revised" license available in LICENSE file.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

feu-0.7.0a2.tar.gz (33.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

feu-0.7.0a2-py3-none-any.whl (48.2 kB view details)

Uploaded Python 3

File details

Details for the file feu-0.7.0a2.tar.gz.

File metadata

  • Download URL: feu-0.7.0a2.tar.gz
  • Upload date:
  • Size: 33.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for feu-0.7.0a2.tar.gz
Algorithm Hash digest
SHA256 70fa4fa3d2159861dcaf7a50f04bc6bceae9bcd311d7b138d01d3bed4fa34b6b
MD5 347ad1379918753d15955800f8f6b1ff
BLAKE2b-256 3cbfc5b3bc886b7c453922fb3e967a4992a9b04344f3eb6b3f2971784a45979a

See more details on using hashes here.

File details

Details for the file feu-0.7.0a2-py3-none-any.whl.

File metadata

  • Download URL: feu-0.7.0a2-py3-none-any.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for feu-0.7.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 9d0c36b805cf71f7d1a0697622ee4e20c0ec0ee6f301c602a0335d6943402863
MD5 07edba88e107bb37ac91b7224bd8f1d9
BLAKE2b-256 4ec039a5aa15d3ff8f2ac08cdfb92c87b6fb5af5d17ad56b5b498d3742d570cc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page