Metadata-Version: 2.2
Name: paradata
Version: 0.1.7
Summary: A analysis tool for Blaise paradata.
Home-page: https://github.com/WillSkywalker/paradata-GGS
Author: Xu Xiao
Author-email: cxbats@gmail.com
License: Apache 2.0
Keywords: paradata survey ggp blaise
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: user_agents
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-dist
Dynamic: summary

# paradata-GGS
A package for analyzing paradata from the Generations &amp; Gender Surveys.

## Installation

Install the package through ```pip```:

```sh
pip install paradata
```

## Usage
To use the package, you can run the main script:

```sh
paradata [-h] [-s SEP] [-m {simple,switches}] [-t | --tablet | --no-tablet] input_filename output_filename
```

You can also import the package in your own scripts:

```py
from paradata import parser

# Example usage
data = parser.parse('path/to/your/data.csv')
```
