Metadata-Version: 2.1
Name: pydelorean
Version: 1.5.3
Summary: A package to convert between markup documents and a forest data structure for efficient processing.
Home-page: http://github.com/kj3moraes/delorean
Author: Keane Moraes
Author-email: lordvader3002@gmail.com
License: Apache 2.0
Download-URL: https://github.com/kj3moraes/delorean/archive/1.5.3.zip
Platform: UNKNOWN
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE

<img style="float: left; padding:20px" src="media/image.svg" alt="pydelorean" width="75"/>

# delorean

A library to convert markup documents into tree data structures and
vice versa. There is greater functionality available to modify, prune,
add and delete parts of documents when there are in the MarkdownTree
structure.

The full list of features can be found in FEATURES.md or in the documentation.

## Install

Install via pip

```bash
   pip install pydelorean
```

You can find the library page here `here <nil>`__

## Quick Usage Guide

The library can be used to convert markdown documents into forest data strucutre. Using just the treeify command on the following text

```markdown
# Chikin Tales
Once there was a chikin.
## Chapter 1 : Chikin Fly
Chickens don't fly. They do only the following:
- waddle
- plop 
### Waddling
A waddle is what these birds do.
## Chapter 2 : Chikin Scream
### Plopping
Plopping involves three steps:
1. squawk
2. plop
3. repeat, unless ordered to squat
```

```python
   from pydelorean import treeify
   tree = treeify(text)
   print(tree)
```

```txt
                   Chikin Tales
                  /     \       \
                 /       \       \
           (Once th..)    |       \
                          |        \
                      Chapter 1     \
                      /     |     Chapter 2
                     /      |         |
           (Chickens do..)  |       Plopping
                            |         |
                         Waddling   (Plopping...)
                            |
                        (A waddle...)
```

For a usage guide, access the `samples/` directory or check out the
documentation page here - [nil](nil)

## Features

Some of the features of this library are:
- forest data structure for Markdown, reStructuredText, AsciiDoc, JSON, YAML and XML.
- 'cleaning' of documents to remove unwanted elements.
- document manipulation using the tree data structure. 

Refer to the FEATURES.md file for more information or you can visit the documentation page here - [nil](nil)

## License

This project is licensed under the Apache 2.0 License. A copy of the license can be found in the LICENSE file.


