# Packages

## Default Packages

Many libraries are included by default, here are some examples:

* Pandas (<https://pandas.pydata.org/>)
* NumPy (<https://numpy.org/>)
* SciPy (<https://scipy.org/>)

Default packages can be imported like any other native Python package.

```python
import pandas as pd
import numpy as np 
import scipy
```

[Micropip](https://micropip.pyodide.org/en/stable/project/api.html) can be used to install additional Python packages that aren't automatically supported (and their dependencies).

```python
import micropip

# `await` is necessary to wait until the package is available
await micropip.install("faker")

# Import installed package
from faker import Faker

# Use the package!
fake = Faker()
fake.name()
```

This only works for packages that are either pure Python or for packages with C extensions that are built in Pyodide. If a pure Python package is not found in the Pyodide repository, it will be loaded from PyPI. [Learn more about how packages work in Pyodide](https://pyodide.org/en/stable/usage/loading-packages.html#loading-packages).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.quadratichq.com/python/packages.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
