Metadata-Version: 2.1
Name: biNNytree
Version: 0.1.1
Summary: Binary Tree Beauty Printer
Author: Abraham
Author-email: ibrohimjon.ismoilov.007@gmail.com
Keywords: Tree,Binary,Binary Tree,Beauty print,Beauty Binary Tree
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown

This package allows to print Binary Tree beautifully.To use you need to follow this steps:1. from BinaryTree.tree import *2. Set root: root = Node(1)3. Use this: while True:    value = int(input('Enter a number to add to the binary tree (0 to stop): ').lower())    if value == 0:        break    insert_node(root, value)OR: insert_node(root, 2),    insert_node(root, 4),    insert_node(root, value))
