Metadata-Version: 2.1
Name: grewritingpool
Version: 0.0.8
Summary: Helper for GRE Writing Pool
Home-page: https://github.com/patrick330602/grewritingpool
Author: callmepk
Author-email: wotingwu@live.com
License: MIT
Keywords: gre,writing
Platform: UNKNOWN
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: lxml
Requires-Dist: beautifulsoup4
Requires-Dist: requests

# Helper for GRE Writing Pool

Because why not?

## Install

`pip install grewritingpool`

or install from source:
`python3 setup.py install`

## Usage

Returned json by get_list():
```json
[
    {
        'type': <writing type>,
        'first': <first part of the question>,
        'second': <first part of the question, might not exist>,
        'instruc': <instruction>
    },
    ...
]
```

Returned json by get_random():
```json
{
    'type': <writing type>,
    'first': <first part of the question>,
    'second': <first part of the question, might not exist>,
    'instruc': <instruction>
}
```

As a API:
```python3
import grewritingpool as gwp
//returns a json list of arguments
list = gwp.get_list('arguement')
//returns a json of article from all article
list = gwp.get_random()
```

As a executable:
```bash
grewriting [all|issue|argument]
```

## License

MIT because I am lazy.

