> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appsignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AppSignal Python-installatie

Deze documentatie loodst u door de stappen die nodig zijn om het AppSignal-pakket aan uw applicatie toe te voegen. Nieuw bij AppSignal? We raden aan om eerst onze [installatiehandleiding](/guides/new-application) te volgen.

## Vereisten

Voordat u AppSignal kunt draaien, dient u te controleren of het [besturingssysteem van uw applicatie wordt ondersteund](/support/operating-systems).

## Installatie

Eerst [meldt u zich aan](https://appsignal.com/users/sign_up) voor een AppSignal-account en voegt u het AppSignal voor Python-integratiepakket toe aan uw `requirements.txt`-bestand:

<CodeGroup>
  ```python Python theme={null}
  # requirements.txt
  appsignal
  ```
</CodeGroup>

Installeer vervolgens het pakket en voer onze geautomatiseerde installatietool uit, die een `__appsignal__.py`-bestand in uw project zal aanmaken:

<CodeGroup>
  ```bash Bash theme={null}
  pip install -r requirements.txt
  python -m appsignal install
  ```
</CodeGroup>

Als de uitvoerbare bestanden `pip` en `python` niet werken, gebruikt u in plaats daarvan de uitvoerbare bestanden `pip3` en `python3`.

### Handmatige installatie

U kunt ook de geautomatiseerde tool overslaan en het `__appsignal__.py`-bestand handmatig aanmaken:

<CodeGroup>
  ```python Python theme={null}
  from appsignal import Appsignal

  appsignal = Appsignal(
      name="My app name",
      push_api_key="my-push-api-key",
      active=True
  )
  ```
</CodeGroup>

### Instrumentatiepakketten installeren

Het AppSignal-pakket instrumenteert geen bibliotheken automatisch. AppSignal biedt ondersteuning voor een aantal populaire Python-bibliotheken; u kunt meer te weten komen over hoe u deze bibliotheken instrumenteert in onze Instrumentaties-documentatie:

* [Celery](/python/instrumentations/celery)
* [Django](/python/instrumentations/django)
* [FastAPI](/python/instrumentations/fastapi)
* [Flask](/python/instrumentations/flask)
* [Jinja2](/python/instrumentations/jinja2)
* [MySQL](/python/instrumentations/mysql)
* [PostgreSQL](/python/instrumentations/postgresql)
* [Redis](/python/instrumentations/redis)
* [Requests](/python/instrumentations/requests)
* [Starlette](/python/instrumentations/starlette)
* [WSGI/ASGI](/python/instrumentations/wsgi)

## Configuratie

Na het installeren van AppSignal en alle benodigde pakketten kunt u de [Configuratiedocumentatie](/python/configuration) lezen om te leren hoe u gegevens naar AppSignal rapporteert.

[Python language]: https://www.python.org/

[OpenTelemetry]: https://opentelemetry.io/
