Metadata-Version: 2.1
Name: wikitojson
Version: 0.0.3
Summary: Wikipedia(English) to json
Home-page: https://github.com/Klaifer/wikitojson
Author: Klaifer Garcia
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## WikiToJson

Convert a english wikipedia page to text, replicating the section hierarchy in json attributes.

## Instalation

    pip install wikitojson

## Basic Usage

    import wikitojson
    data = wikitojson.get("Computer")

    import json
    print(json.dumps(data, indent = 4))

