patrick330602 / grewritingpool

🕷 Python Web Spider for GRE Writing Pool, because why not?

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Helper for GRE Writing Pool

pypi

Because why not?

Install

pip install grewritingpool

or install from source: python3 setup.py install

Usage

As a API

get_list(writing_type='default')

Return a json list of articles. Input can be all, issue or argument, default to all.

Returned json format:

[
    {
        'type': <writing type>,
        'first': <first part of the question>,
        'second': <first part of the question, might not exist>,
        'instruc': <instruction>
    },
    ...
]

get_random(writing_type='default')

Return a random json string from the json list of articles. Input can be all, issue or argument, default to all.

Returned json format:

{
    'type': <writing type>,
    'first': <first part of the question>,
    'second': <first part of the question, might not exist>,
    'instruc': <instruction>
}

As a executable

grewriting [all|issue|argument]

License

GPLv3.

About

🕷 Python Web Spider for GRE Writing Pool, because why not?

License:GNU General Public License v3.0


Languages

Language:Python 97.2%Language:Batchfile 2.8%