Metadata-Version: 2.4
Name: feasytools
Version: 0.1.3
Summary: A package of some useful tools
Author: fmy-xfk
License-Expression: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# FEasyTools: Some useful components

### TimeFunc: Data provider as time functions
Calculate an array of data conveniently like a function! A variant of RangeList is also provided to maintain increasing num-pairs.

### ArgChecker: Argument parser with type checking
ArgParser is one of the best argument parser in Python, but it is not good at type checking. To solve this, ArgChecker in this package is developed for better type checking purpose.

### Geometry: Python implemented geometry handler for Points, Segments, and KDTree
In order to deal with large amount of points and segments with labels, this module is included. A mappable KDTree based EdgeFinder is developed, to find segments quickly.

### PQ: Encapsulation of buffered priority queue and heap
Sometimes a priority queue with an extra waiting pool or queue is needing. This module is designed for this.

### Table: A helper for CSV & binary table
Table helper for the CSV, SDT & SDT.GZ format.
Introduction to the SDT format: [Link](/docs/sdt_intro.md)

### ProbDist: A helper for probability distribution
Provide the encapsulation of several common PDF, make it conveniently to create from XML node.

### KDTree
An implementation for 2D Tree.

### UnionFindSet
An implementation for union find set.