Welcome to Custom Firmware For Phones!

CFWForPhones has its wiki hosted on Read the Docs! CFW For Phones is a wiki that is dedicated to teaching you how to install custom firmware onto your phone!

What is custom firmware?

Custom firmware (“CFW”) is a full software modification to your phone, comparable to “administrator access” on a computer. It allows you to do anything that the phone is physically capable of doing, rather than being limited by whatever the phone company allows you to do.

Note

This project is under active development.

Contents

Usage

Installation

To use Lumache, first install it using pip:

(.venv) $ pip install lumache

Creating recipes

To retrieve a list of random ingredients, you can use the lumache.get_random_ingredients() function:

lumache.get_random_ingredients(kind=None)

Return a list of random ingredients as strings.

Parameters:

kind (list[str] or None) – Optional “kind” of ingredients.

Raises:

lumache.InvalidKindError – If the kind is invalid.

Returns:

The ingredients list.

Return type:

list[str]

The kind parameter should be either "meat", "fish", or "veggies". Otherwise, lumache.get_random_ingredients() will raise an exception.

exception lumache.InvalidKindError

Raised if the kind is invalid.

For example:

>>> import lumache
>>> lumache.get_random_ingredients()
['shells', 'gorgonzola', 'parsley']

API

lumache

Lumache - Python library for cooks and food lovers.