GitHub repository

Usage#

Overview#

For casual users, the installation instructions allow quick setup and testing of basic functionality. Additional resources, including example Jupyter notebooks and live interactive versions, are available to explore features and usage patterns in detail.

See also

For those who want to contribute, see Development

Installation#

For causal users, intall copyme to a Python 3 environment via terminal:

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

Guides#

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

Example Jupyter notebooks are available in the repository’s examples folder, along with live, interactive versions on platforms such as Google Colab. These resources illustrate the project’s features, demonstrate typical usage patterns, and allow experimentation with the functionality directly.

Examples#

Develop examples here

A basic script#

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

Advanced script#

Develop examples here