• Stars
    star
    128
  • Rank 279,386 (Top 6 %)
  • Language
    Python
  • License
    BSD 3-Clause "New...
  • Created about 10 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple and easy-to-use implementation of a Genetic Algorithm library in Python

pyeasyga

PyPI Build Status Coverage Status Downloads

Introduction

A simple and easy-to-use implementation of a Genetic Algorithm library in Python.

pyeasyga provides a simple interface to the power of Genetic Algorithms (GAs). You don't have to have expert GA knowledge in order to use it.

Installation

At the command line, simply run:

$ pip install pyeasyga

Or clone this repository and run python setup.py install from within the project directory. e.g.:

$ git clone https://github.com/remiomosowon/pyeasyga.git
$ cd pyeasyga
$ python setup.py install

For alternative install methods, see the INSTALL file or the Installation section in the documentation.

Examples

See the Usage section in the documentation for examples. The example files can be found in the examples directory.

Note

  • Currently under active development