Skip to content

Commit

Permalink
Readme and version updated
Browse files Browse the repository at this point in the history
Emanuele Albini committed Aug 9, 2021
1 parent 00c6cab commit 66e7f83
Showing 3 changed files with 23 additions and 6 deletions.
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,30 @@
# Utility package to interact with Qualtrics (v3) API
# QualtrUtils - A package to create questions from templates with Qualtrics (v3) API

[![PyPI pyversions](https://img.shields.io/pypi/pyversions/qualtrutils.svg)](https://pypi.python.org/pypi/qualtrutils/)
[![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/emanuele-albini/qualtrutils/blob/master/LICENSE)
[![PyPI](https://badge.fury.io/py/qualtrutils.svg)](https://pypi.python.org/pypi/qualtrutils/)
[![GitHub commits](https://img.shields.io/github/commits-since/emanuele-albini/qualtrutils/v0.0.1)](https://github.com/emanuele-albini/qualtrutils/commit/)
[![Maintaner](https://img.shields.io/badge/maintainer-Emanuele-lightgrey)](https://www.emanuelealbini.com)

This package allows the creation of questions based on an existing template (i.e., a question created with the Qualtrics interface. The operations that this package supports are:

- Creating block
- Copying an existing question
- Replacing keywords
- Changing multiple choice answers
- Changing the initial position of the slider
- Changing a question JS code

## Installation

Simply run the following commands.
Simply run the following command.

```bash
pip install qualtrutils
```

#### For developers

To use the package in editable mode use instead the following.

```bash
git clone https://github.com/emanuele-albini/qualtrutils.git
4 changes: 2 additions & 2 deletions pypi.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pdoc --html --force --output-dir --template-dir docs/templates docs .
python -m build
python -m twine upload --repository testpypi dist/*
python -m twine upload --repository pypi dist/*
python -m twine upload --repository --skip-existing testpypi dist/*
python -m twine upload --repository --skip-existing pypi dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

setuptools.setup(
name="qualtrutils",
version="0.0.1",
version="0.0.2",
author="Emanuele Albini",
description="A simple package to interact with the Qualtrics API",
long_description=long_description,

0 comments on commit 66e7f83

Please sign in to comment.