-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4ade86
commit 83cded4
Showing
3 changed files
with
31 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
Brett Alistair Kromkamp - [email protected] | ||
Xiaming Chen - [email protected] | ||
Holger Bast - [email protected] | ||
# Contributors | ||
|
||
and other committers etc. | ||
* Brett Alistair Kromkamp ([email protected]): Post basic idea online. | ||
* Xiaming Chen ([email protected]): Finished primary parts and made the library freely public. | ||
* Holger Bast ([email protected]): Replaced list with `dict` for fast node index and optimized the performance. | ||
* Ilya Kuprik ([email protected]): Added ZIGZAG tree-walk algorithm to tree traversal. | ||
|
||
and other committers etc. | ||
|
||
Thank you all. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
treelib | ||
------- | ||
# treelib | ||
|
||
Tree implementation in python: simple for you to use. | ||
|
||
|
@@ -16,38 +15,24 @@ Tree implementation in python: simple for you to use. | |
[![GitHub pull-requests](https://img.shields.io/github/issues-pr/caesar0301/treelib.svg)](https://GitHub.com/caesar0301/treelib/pulls) | ||
[![GitHub pull-requests closed](https://img.shields.io/github/issues-pr-closed/caesar0301/treelib.svg)](https://GitHub.com/caesar0301/treelib/pulls?q=is%3Apr+is%3Aclosed) | ||
|
||
## Quick Start | ||
|
||
pip install -U treelib | ||
|
||
|
||
Quick Start | ||
----------- | ||
|
||
sudo easy_install -U treelib | ||
|
||
install with pip by pip install treelib | ||
|
||
Documentation | ||
------------- | ||
## Documentation | ||
|
||
For installation, APIs and examples, see http://treelib.readthedocs.io/en/latest/ | ||
|
||
Update | ||
------- | ||
## Code Style | ||
|
||
* 2017-08-10: Abandon supporting Python 3.2 since v1.4.0. | ||
* 2012-07-07: First published. | ||
`treelib` complies with [black](https://github.com/psf/black) formatter and | ||
specific [flake8 validations](https://github.com/caesar0301/treelib/blob/master/scripts/flake8.sh). | ||
Before creating a pull request, please make sure you pass the local validation | ||
with `scripts/flake8.sh`. | ||
|
||
## Contributors | ||
|
||
Contributors | ||
------------ | ||
|
||
> Brett Alistair Kromkamp ([email protected]): Post basic idea online. | ||
> | ||
> Xiaming Chen ([email protected]): Finished primary parts and made the library freely public. | ||
> | ||
> Holger Bast ([email protected]): Replaced list with `dict` for fast node index and optimized the performance. | ||
> | ||
> Ilya Kuprik ([email protected]): Added ZIGZAG tree-walk algorithm to tree traversal. | ||
Thank you all, | ||
[committers](https://github.com/caesar0301/treelib/graphs/contributors). | ||
|
||
[![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/Naereen/) | ||
|