Metadata-Version: 2.4
Name: citric
Version: 2.1.3
Summary: A client to the LimeSurvey Remote Control API 2, written in modern Python.
Project-URL: Documentation, https://citric.readthedocs.io
Project-URL: Funding, https://github.com/sponsors/edgarrmondragon
Project-URL: Homepage, https://github.com/edgarrmondragon/citric
Project-URL: Issue Tracker, https://github.com/edgarrmondragon/citric/issues
Project-URL: Repository, https://github.com/edgarrmondragon/citric
Author-email: Edgar Ramírez-Mondragón <edgarrm358@gmail.com>
Maintainer-email: Edgar Ramírez-Mondragón <edgarrm358@gmail.com>
License-Expression: MIT
License-File: AUTHORS.md
License-File: LICENSE
Keywords: json-rpc,limesurvey
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: Free Threading :: 4 - Resilient
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: backports-strenum>=1.3.1; python_version < '3.11'
Requires-Dist: requests>=2.25.1
Requires-Dist: typing-extensions>=4.6; python_version < '3.12'
Description-Content-Type: text/markdown

<div align="center">

# Citric

<table>
  <tbody>
    <tr>
      <td>Project Health</td>
      <td>
        <a href="https://buy.polar.sh/polar_cl_q4XE5nfuUOK8JwiUz3iuDDVN7nxxNiMpNzgGF2diFeP">
          <img src="https://img.shields.io/badge/polar.sh-Support%20My%20Work-black"/>
        </a>
        <a href="https://citric.readthedocs.io/en/latest/?badge=latest">
          <img alt="Documentation Status" src="https://readthedocs.org/projects/citric/badge/?version=latest"/>
        </a>
        <a href="https://codecov.io/gh/edgarrmondragon/citric">
          <img alt="codecov" src="https://codecov.io/gh/edgarrmondragon/citric/branch/main/graph/badge.svg"/>
        </a>
      </td>
    </tr>
    <tr>
      <td>Packaging</td>
      <td>
        <a href="https://pypi.org/project/citric">
          <img alt="PyPI version" src="https://img.shields.io/pypi/v/citric.svg?logo=pypi&logoColor=FFE873&color=blue"/>
        </a>
        <a href="https://pypi.org/project/citric">
          <img alt="Python versions" src="https://img.shields.io/pypi/pyversions/citric.svg?logo=python&logoColor=FFE873"/>
        </a>
        <a href="https://pypi.org/project/citric">
          <img alt="PyPI - Downloads" src="https://img.shields.io/pypi/dm/citric?color=blue"/>
        </a>
        <a href="https://anaconda.org/conda-forge/citric">
          <img alt="Conda Version" src="https://img.shields.io/conda/vn/conda-forge/citric.svg"/>
        </a>
    </tr>
    <tr>
      <td>Misc</td>
      <td>
        <a href="https://github.com/astral-sh/uv">
          <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json" alt="uv" style="max-width:100%;">
        </a>
        <a href="https://github.com/astral-sh/ruff">
          <img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json" alt="Ruff" style="max-width:100%;">
        </a>
        <a href="https://github.com/wntrblm/nox">
          <img alt="Nox" src="https://img.shields.io/badge/%F0%9F%A6%8A-Nox-D85E00.svg"/>
        </a>
        <a href="https://github.com/edgarrmondragon/citric/blob/main/LICENSE">
          <img alt="License" src="https://img.shields.io/github/license/edgarrmondragon/citric"/>
        </a>
        <a href="https://zenodo.org/doi/10.5281/zenodo.10216279">
          <img src="https://zenodo.org/badge/223537606.svg" alt="DOI">
        </a>
        <br />
        <a href="https://www.bestpractices.dev/projects/8144">
          <img src="https://www.bestpractices.dev/projects/8144/badge">
        </a>
      </td>
    </tr>
  </tbody>
</table>

*A client to the [LimeSurvey Remote Control API 2](https://manual.limesurvey.org/RemoteControl_2_API), written in modern Python.*

</div>

<!-- begin-short -->

## Features

- Supports the full RPC API via the [`Session` class](https://citric.readthedocs.io/en/latest/_api/citric/session/index.html#citric.session.Session).
- Best effort to implement all the RPC methods in the [`Client` class](https://citric.readthedocs.io/en/stable/_api/citric/index.html#citric.Client). See the [API coverage page](https://citric.readthedocs.io/en/stable/rpc_coverage.html) for details.
- Easily export survey data to CSV files, [Pandas DataFrames](https://citric.readthedocs.io/en/stable/how-to.html#export-responses-to-a-pandas-dataframe) and [DuckDB databases](https://citric.readthedocs.io/en/stable/how-to.html#export-responses-to-a-duckdb-database-and-analyze-with-sql).
- Easily [download survey files](https://citric.readthedocs.io/en/stable/how-to.html#get-files-uploaded-to-a-survey-and-move-them-to-s3) (e.g. images, audio, etc.) to a local directory.
- Tested against LimeSurvey 6.0.0+ and 5.0.0+ versions.
- Experimental support for the new [REST API](https://manual.limesurvey.org/REST_API).

## Installation

```sh
# PyPI
pip install citric
```

```sh
# or conda
conda install -c conda-forge citric
```

## Usage

```python
from citric import Client

# Connect to your LimeSurvey instance
client =  Client(
    "https://mylimesite.limequery.com/admin/remotecontrol",
    "myusername",
    "mypassword",
)

# Print the LimeSurvey version
print(client.get_server_version())

# Print every survey's title
for survey in client.list_surveys():
    print(survey["surveyls_title"])
```

<!-- end-short -->

## Documentation

Code samples and API documentation are available at [citric.readthedocs.io](https://citric.readthedocs.io/).

## Contributing

If you'd like to contribute to this project, please see the [contributing guide](https://citric.readthedocs.io/en/stable/contributing/getting-started.html).

## Credits

- The [LimeSurvey][limesurvey-site] team for providing a great survey platform.
- [Markus Opolka][martialblog] for maintaining a very robust set of [LimeSurvey Docker images](https://github.com/martialblog/docker-limesurvey/).
- [Claudio Jolowicz][claudio] and [his amazing blog post][hypermodern].

[claudio]: https://twitter.com/cjolowicz/
[hypermodern]: https://cjolowicz.github.io/posts/hypermodern-python-01-setup/
[limesurvey-site]: https://www.limesurvey.org/
[martialblog]: https://github.com/martialblog/
