Skip to content

phungthienphuoc/pygentest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pygentest - Python Test Generators

pygentest is a Python library supporting several data generators.

With pygentest, you can generate several type of data, from the simple like random character or string, to the more complex such as graph, tree, convex lattice polygon.

You are very welcome to:

  • Install and use pygentest.
  • Give feedbacks.
  • Report issues and bugs.
  • Provide ideas to improve this library.

Installation

You can simply install pygentest with pip.

pip install pygentest

Other information

Currently, documentation is written for every function and class in pygentest. You can access it by using Python built-in help function. You can also read the documentation here.

Detailed instruction has not been written yet, and it will be completed soon.

In the future, I will write a document that analyzes intuition, complexity, and efficiency of each generator.

The inspiration of this personal project comes from my task as an Algorithm Collaborator in Code Mely: prepare problems for a contest and generate tests for each problem. I decided to write a Python library that could help generate complex structures, instead of rewrite the code many times.

Resources