> For the complete documentation index, see [llms.txt](https://jona-projects.gitbook.io/kiwicalc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jona-projects.gitbook.io/kiwicalc/basics/usage.md).

# Usage

### Importing

There are several ways to import the library. Either import the whole thing and abbreviate it:

```python
import kiwicalc as kw
                
```

Or import specific elements from the library:

```python
 from kiwicalc import [your-item]
                
```

Or import everything like that:

```python
from kiwicalc import *
                    
```
