fal is an easy-to-use Serverless Python Framework
Project description
fal
fal is a serverless Python runtime that lets you run and scale code in the cloud with no infra management.
With fal, you can build pipelines, serve ML models and scale them up to many users. You scale down to 0 when you don't use any resources.
Quickstart
First, you need to install the fal
package. You can do so using pip:
pip install fal
Then you need to authenticate:
fal auth login
You can also use fal keys that you can get from our dashboard.
Now can use the fal package in your Python scripts as follows:
import fal
@fal.function(
"virtualenv",
requirements=["pyjokes"],
)
def tell_joke() -> str:
import pyjokes
joke = pyjokes.get_joke()
return joke
print("Joke from the clouds: ", tell_joke())
A new virtual environment will be created by fal in the cloud and the set of requirements that we passed will be installed as soon as this function is called. From that point on, our code will be executed as if it were running locally, and the joke prepared by the pyjokes library will be returned.
Next steps
If you would like to find out more about the capabilities of fal, check out to the docs. You can learn more about persistent storage, function caches and deploying your functions as API endpoints.
Contributing
Installing in editable mode with dev dependencies
pip install -e 'projects/fal[dev]'
pip install -e 'projects/fal_client[dev]'
pip install -e 'projects/isolate_proto[dev]'
Running tests
pytest
Pre-commit
cd projects/fal
pre-commit install
Commit format
Please follow conventional commits specification for descriptions/messages.
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
Built Distribution
File details
Details for the file fal-1.5.7.tar.gz
.
File metadata
- Download URL: fal-1.5.7.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fba48effd7f0600fd9baf300536dbdbfd40937226ca175bac3c649c6f15d2544 |
|
MD5 | 3c355816fc63252398e260a25c81da4a |
|
BLAKE2b-256 | ff0e0974f748508676cdc1cf88dac4e3040e11cc080d82e13e9fd90938533825 |
File details
Details for the file fal-1.5.7-py3-none-any.whl
.
File metadata
- Download URL: fal-1.5.7-py3-none-any.whl
- Upload date:
- Size: 136.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e0842b011bd7917d5660e980c227da7914cdf16900050949f56a2d76dcabefe |
|
MD5 | ac20b1b3486ff58966f8cb8a5ee0fdc9 |
|
BLAKE2b-256 | 80b4d77b3e08ef4f0bc77397d604c8f989abf158b077002afef625e766abf4a8 |