Skip to main content

Qualtrics

Start with the documentation, first-report tutorial, or guide to parsing an export again. The docs cover command-line use without Python code, reports, and Power BI.

Preview the Material for MkDocs site from this repository:

uv run --group docs mkdocs serve

Open http://127.0.0.1:8000 in your browser. Build the site with uv run --group docs mkdocs build --strict. See documentation setup and plugin choices and publishing to GitHub Pages for details, and the entity model and DBML contract for analytical relationships.

Python Ruff Coverage PyPI Tests

qualtrics is a typed Python SDK and Typer CLI for the Qualtrics API and offline survey data. It can:

  • list and update surveys through Qualtrics API v3;
  • import and export survey responses;
  • parse CSV or response-export ZIP files, with or without survey definitions;
  • preserve questions, concrete fields, answer options, and survey blocks;
  • write normalized JSON, CSV, or Parquet entities; and
  • generate an interactive HTML report with data-quality and question analytics.

Install

uv add qualtrics

Install Parquet support when needed:

uv add "qualtrics[parquet]"

For development from this repository:

uv sync --all-groups --extra parquet

Configure the API

Create a .env file or export the same variables in your shell:

QUALTRICS_API_TOKEN=your-token
QUALTRICS_DATA_CENTER=ca1

Use QUALTRICS_BASE_URL instead of QUALTRICS_DATA_CENTER when your account requires a custom API base URL. Explicit QualtricsClient(...) arguments take precedence over environment settings.

Export, parse, and report

The complete example accepts a survey ID, downloads its definition and responses, extracts the original CSV, creates Parquet entities, and renders an HTML report:

uv run python examples/export_parse_and_report.py SV_123
uv run python examples/export_parse_and_report.py SV_123 SV_456

It creates:

data/
└── SV_123/
    ├── definition.qsf
    ├── export.zip
    ├── responses.csv
    ├── report.html
    └── entities/
        ├── surveys.parquet
        ├── sections.parquet
        ├── questions.parquet
        ├── question_fields.parquet
        ├── question_catalog.parquet
        ├── question_field_catalog.parquet
        ├── answer_options.parquet
        ├── responses.parquet
        └── response_answers.parquet

Parquet is the default. Select another entity format with --format json or --format csv; export coded values with --codes.

Parse existing exports

Parse a CSV and matching survey definition:

uv run qualtrics build responses.csv \
  --qsf definition.qsf \
  --output entities \
  --format parquet

Response-export ZIP files can be parsed directly:

uv run qualtrics build export.zip \
  --qsf definition.qsf \
  --output entities \
  --format parquet

When the response file and definition share a filename stem, the definition is discovered automatically. For example, SV_123.zip matches SV_123.qsf.

Python usage:

from qualtrics import parse_survey, render_report, write_entities

entities = parse_survey("responses.csv", "definition.qsf")
write_entities(entities, "entities", format="parquet")
render_report(entities, "report.html")

Wildcards support multiple surveys and lakehouse-style layouts:

entities = parse_survey("/lakehouse/default/Files/qualtrics/run-1/*/*.csv")

Why the survey definition matters

A Qualtrics CSV commonly starts with three header rows:

  1. the exported field name;
  2. the question and field text; and
  3. metadata such as {"ImportId":"QID30_4_TEXT"}.

One logical question can produce many concrete CSV fields for choices, matrix rows, loops, or text entries. The parser retains the complete field name, ImportId, suffix, and column index instead of collapsing fields by normalized question text.

A QSF or API survey definition is optional but recommended. It supplies the survey name, question types, choices, blocks, and other metadata that cannot be reliably reconstructed from response headers alone.

Entity model

Entity Purpose
surveys Survey identity and metadata
sections Survey blocks and display order
questions Survey-local questions, types, and block membership
question_fields Concrete CSV fields and ImportIds
answer_options Options defined for response questions
responses Respondent and response metadata
response_answers Values linked to responses, questions, and fields
question_catalog Canonical questions shared across surveys
question_field_catalog Canonical fields shared across surveys

The primary relationship is:

response_answer
  → (survey_id, response_id)
  → (survey_id, question_id, field_id)
  → question_catalog_id / question_field_catalog_id

Pipeline lineage such as an ingestion run ID belongs in the surrounding data platform, not in the parser entities.

Each responses row contains the stable response metadata exported by Qualtrics: status, IP address, progress, duration, recipient details, external reference, distribution channel, language, and browser/device information. Browser Meta Info fields are promoted to the response row and are not repeated as answers. Repeating Timing fields remain in response_answers, where their question and concrete field identities are preserved.

SDK and CLI

from qualtrics import QualtricsClient

with QualtricsClient() as client:
    for survey in client.surveys.iter():
        print(survey.id, survey.name)

    definition = client.survey_definitions.get("SV_123")

Common CLI commands:

uv run qualtrics api surveys
uv run qualtrics api export SV_123 --output exports --labels
uv run qualtrics api import SV_123 responses.csv
uv run qualtrics entities combine exports/run-1 exports/run-2 --output combined
uv run qualtrics report --folder entities --output report.html
uv run qualtrics report --folder data --output combined-report.html

entities combine accepts entity directories, survey directories containing an entities/ directory, and batch roots containing multiple <survey-id>/entities/ directories. Inputs may mix JSON, CSV, and Parquet files. Combined output uses Parquet by default; select another format with --format json or --format csv.

The report command accepts repeated --folder options. It also discovers the <survey-id>/entities/ directories created by the complete export example when its shared data/ root is supplied.

client.surveys covers survey CRUD. client.survey_definitions handles survey structure, client.survey_quotas reads quota progress and definitions, and client.responses handles imports, exports, progress, and saved response filters.

with QualtricsClient() as client:
    page = client.survey_quotas.list("SV_123")
    for quota in client.survey_quotas.iter("SV_123"):
        print(quota.name, quota.count, quota.quota)

Development

uv sync --all-groups --extra parquet
uv run pre-commit install --hook-type pre-commit --hook-type pre-push
uv run poe check
uv run poe build

CI tests Python 3.11–3.14. Ruff checks formatting and linting, ty checks types, and pytest enforces at least 75% branch-aware coverage.

Releases are prepared through the Prepare Release GitHub workflow. See release-notes.md for version history and examples/ for runnable API and parsing examples.

Acknowledgements

The workflow guidance was informed by the Qualtrics Report Generator. Consult the official Qualtrics API documentation for features enabled on your account.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qualtrics-0.3.0.tar.gz (53.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

qualtrics-0.3.0-py3-none-any.whl (70.7 kB view details)

Uploaded Python 3

File details

Details for the file qualtrics-0.3.0.tar.gz.

File metadata

  • Download URL: qualtrics-0.3.0.tar.gz
  • Upload date:
  • Size: 53.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qualtrics-0.3.0.tar.gz
Algorithm Hash digest
SHA256 e229be4b880c3efc9d1dd0c0d9e1d61984c3af6b5f5c426b0f45e17d69ce43be
MD5 00cb35f3cb2fa590bbc70a7f11baa7ae
BLAKE2b-256 e731a9e8153f5a250da323646f73b565a2761ba9a288ceffd9d6d67a91aa408b

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualtrics-0.3.0.tar.gz:

Publisher: publish.yml on Luanee/qualtrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qualtrics-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: qualtrics-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for qualtrics-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5e544a7facc1d438d741108ee36536933ba083de97d64e4539e595eddc2fbfbb
MD5 14baa0c8ad0d412cf20fa8be1c7d7da0
BLAKE2b-256 8549013a9983034b6c407d6e34cbe0bd7aee443fa6a0dbe464915bdf36cab4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qualtrics-0.3.0-py3-none-any.whl:

Publisher: publish.yml on Luanee/qualtrics

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page