Warning

Documentation website under active development. This is not a stable release.

Usage#

Overview#

For casual users, the installation instructions allow quick setup and testing of basic functionality.

See also

For those who want to contribute, see Development

Installation#

Install as a Python package#

For Python regular users, install the latest package deploy to a Python 3 environment via pip:

python -m pip install losalamos

Or any desired branch or version via github url:

python -m pip install git+https://github.com/iporepos/losalamos.git@main

Guides#

For those seeking practical guidance on using the tools available in the repo, relevant resources are provided.

Examples#

Develop examples here

A basic script#

from losalamos import module
v = module.add(num1=3, num2=4)
print(v)
# [out]: 7

Advanced script#

Develop examples here