Install Plugins#
API-24SEA provides a plugin system that allows users to extend its functionality by adding new features. Plugins can be developed by anyone and can be easily installed and managed using the Python namespace packages system.
Available plugins#
Currently, there are two plugins available:
Fatigue Extra#
Adds cycle-count metrics analysis capabilities to the package by leveraging the py-fatigue and swifter packages.
pip install api-24sea[fatigue]
pip install 'api-24sea[fatigue]'
For usage instructions, see the fatigue analysis how-to.
AI Extra#
Integrates AI functionalities into the package leveraging the 24SEA AI models API. The package can be installed from PyPI.
pip install api-24sea[ai]
pip install 'api-24sea[ai]'
Installing all plugins#
To install both plugins, run the following command in your terminal:
pip install api-24sea[fatigue,ai]
pip install 'api-24sea[fatigue,ai]'