Metadata-Version: 2.1
Name: br4nch
Version: 2.3.3
Summary: Data Structure Tree Builder for Python.
Home-page: https://github.com/TRSTN4/br4nch
Author: TRSTN4
Author-email: <tristan@trstn4.com>
License: GNU General Public License v3.0
Download-URL: https://github.com/TRSTN4/br4nch/archive/refs/tags/2.3.3.tar.gz
Keywords: br4nch,python,python3,data,structure,tree,builder,generate,algorithm
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

![logo](https://raw.githubusercontent.com/TRSTN4/br4nch/2.0/assets/images/logo_20.png)

`br4nch` is a Data Structure Tree Builder for Python. It is built in 100%/Pure Python, which means it does not use 3rd party libraries. We **listen** to our users in [issues](https://github.com/TRSTN4/br4nch/issues), Discord [channel](https://discord.gg/gKASxGEEUC) *and all over the Internet* to create a **fast**, **flexible** and **friendly** Data Structure Tree Builder.

## 👀 Example

If you want to see more code examples and guide, please visit our [documentation](https://docs.br4nch.com).

```python
>>> br4nch.create.Tree(tree="Ukraine", header="Ukraine <3")

>>> br4nch.create.Node(tree="Ukraine", node=["Cities", "Information"])
>>> br4nch.create.Node(tree="Ukraine", node=["Donetsk Oblast", "Kiev Oblast"], parent="Cities")
>>> br4nch.create.Node(tree="Ukraine", node="Mariupol", parent="Donetsk")
>>> br4nch.create.Node(tree="Ukraine", node=["Bucha", "Tsjernobyl"], parent="Kiev")
>>> br4nch.create.Node(tree="Ukraine", node=["President", "Area", "Population"], parent="Information")
>>> br4nch.create.Node(tree="Ukraine", node="Zelensky", parent="President")
>>> br4nch.create.Node(tree="Ukraine", node="603.628 km2", parent="Area")
>>> br4nch.create.Node(tree="Ukraine", node="44 Million", parent="Population")

>>> br4nch.display.Tree(tree="Ukraine")
Ukraine <3
┣━ Cities
┃  ┣━ Donetsk Oblast
┃  ┃  ┗━ Mariupol
┃  ┗━ Kiev Oblast
┃     ┣━ Bucha
┃     ┗━ Tsjernobyl
┗━ Information
   ┣━ President
   ┃  ┗━ Zelensky
   ┣━ Area
   ┃  ┗━ 603.628 km2
   ┗━ Population
      ┗━ 44 Million
```

## ⚙️ Installation

Install `br4nch` with the `pip install` command:

```
pip install br4nch
```

## 🎯 Features

- [Create](https://docs.br4nch.com/functions/create)
- [Duplicate](https://docs.br4nch.com/functions/duplicate)
- [Move](https://docs.br4nch.com/functions/move)
- [Replace](https://docs.br4nch.com/functions/replace)
- [Delete](https://docs.br4nch.com/functions/delete)
- [Set](https://docs.br4nch.com/functions/set)
- [Reset](https://docs.br4nch.com/functions/reset)
- [Load](https://docs.br4nch.com/functions/load)
- [Export](https://docs.br4nch.com/functions/export)
- [Get](https://docs.br4nch.com/functions/get)
- [Display](https://docs.br4nch.com/functions/display)

## 👍 Contribute

If you want to say **thank you** and/or support the active development of `br4nch`:

1. Add a [GitHub Star](https://github.com/TRSTN4/br4nch/stargazers) to the project.
2. Tweet about the project [on your Twitter](https://twitter.com/intent/tweet?text=br4nch%3A%20Data%20Structure%20Tree%20Builder%20for%20Python.%20br4nch%20is%20built%20on%20pure%20%23python.%20That%20means%20that%20it%20does%20not%20require%20any%20other%20libary.%20Its%20designed%20to%20ease%20things%20up%20for%20fast%20data%20structure%20development%F0%9F%9A%80%20https%3A%2F%2Fgithub.com%2FTRSTN4%2Fbr4nch%20%20).
3. Support the project by donating a [cup of coffee](https://www.buymeacoffee.com/TRSTN4).

## ☕ Support

`br4nch` is an open source project that runs on donations to pay the bills e.g. our domain name. If you want to support `br4nch`, you can ☕ [**buy a coffee here**](https://www.buymeacoffee.com/TRSTN4).

##  ‍💻 Code Contributors

Help in testing, development, documentation and other tasks is highly appreciated and useful to the project. There are tasks for contributors of all experience levels. 

To get started with developing `br4nch`, see [CONTRIBUTING](https://github.com/TRSTN4/br4nch/blob/release/CONTRIBUTING.md).

## ⚠️ License

`br4nch` is free and open-source software licensed under the [GPL-3.0 License](https://github.com/TRSTN4/br4nch/blob/release/LICENSE).


