Skip to main content

Distributed Evolutionary Algorithms in Python

Project description

DEAP

Build status Download Join the chat at https://gitter.im/DEAP/deap Build Status Documentation Status

DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas. It seeks to make algorithms explicit and data structures transparent. It works in perfect harmony with parallelisation mechanisms such as multiprocessing and SCOOP.

DEAP includes the following features:

  • Genetic algorithm using any imaginable representation
    • List, Array, Set, Dictionary, Tree, Numpy Array, etc.
  • Genetic programing using prefix trees
    • Loosely typed, Strongly typed
    • Automatically defined functions
  • Evolution strategies (including CMA-ES)
  • Multi-objective optimisation (NSGA-II, NSGA-III, SPEA2, MO-CMA-ES)
  • Co-evolution (cooperative and competitive) of multiple populations
  • Parallelization of the evaluations (and more)
  • Hall of Fame of the best individuals that lived in the population
  • Checkpoints that take snapshots of a system regularly
  • Benchmarks module containing most common test functions
  • Genealogy of an evolution (that is compatible with NetworkX)
  • Examples of alternative algorithms : Particle Swarm Optimization, Differential Evolution, Estimation of Distribution Algorithm

Downloads

Following acceptance of PEP 438 by the Python community, we have moved DEAP's source releases on PyPI.

You can find the most recent releases at: https://pypi.python.org/pypi/deap/.

Documentation

See the DEAP User's Guide for DEAP documentation.

In order to get the tip documentation, change directory to the doc subfolder and type in make html, the documentation will be under _build/html. You will need Sphinx to build the documentation.

Notebooks

Also checkout our new notebook examples. Using Jupyter notebooks you'll be able to navigate and execute each block of code individually and tell what every line is doing. Either, look at the notebooks online using the notebook viewer links at the botom of the page or download the notebooks, navigate to the you download directory and run

jupyter notebook

Installation

We encourage you to use easy_install or pip to install DEAP on your system. Other installation procedure like apt-get, yum, etc. usually provide an outdated version.

pip install deap

The latest version can be installed with

pip install git+https://github.com/DEAP/deap@master

If you wish to build from sources, download or clone the repository and type

python setup.py install

Build Status

DEAP build status is available on Travis-CI https://travis-ci.org/DEAP/deap.

Requirements

The most basic features of DEAP requires Python2.6. In order to combine the toolbox and the multiprocessing module Python2.7 is needed for its support to pickle partial functions. CMA-ES requires Numpy, and we recommend matplotlib for visualization of results as it is fully compatible with DEAP's API.

Since version 0.8, DEAP is compatible out of the box with Python 3. The installation procedure automatically translates the source to Python 3 with 2to3.

Example

The following code gives a quick overview how simple it is to implement the Onemax problem optimization with genetic algorithm using DEAP. More examples are provided here.

import random
from deap import creator, base, tools, algorithms

creator.create("FitnessMax", base.Fitness, weights=(1.0,))
creator.create("Individual", list, fitness=creator.FitnessMax)

toolbox = base.Toolbox()

toolbox.register("attr_bool", random.randint, 0, 1)
toolbox.register("individual", tools.initRepeat, creator.Individual, toolbox.attr_bool, n=100)
toolbox.register("population", tools.initRepeat, list, toolbox.individual)

def evalOneMax(individual):
    return sum(individual),

toolbox.register("evaluate", evalOneMax)
toolbox.register("mate", tools.cxTwoPoint)
toolbox.register("mutate", tools.mutFlipBit, indpb=0.05)
toolbox.register("select", tools.selTournament, tournsize=3)

population = toolbox.population(n=300)

NGEN=40
for gen in range(NGEN):
    offspring = algorithms.varAnd(population, toolbox, cxpb=0.5, mutpb=0.1)
    fits = toolbox.map(toolbox.evaluate, offspring)
    for fit, ind in zip(fits, offspring):
        ind.fitness.values = fit
    population = toolbox.select(offspring, k=len(population))
top10 = tools.selBest(population, k=10)

How to cite DEAP

Authors of scientific papers including results generated using DEAP are encouraged to cite the following paper.

@article{DEAP_JMLR2012, 
    author    = " F\'elix-Antoine Fortin and Fran\c{c}ois-Michel {De Rainville} and Marc-Andr\'e Gardner and Marc Parizeau and Christian Gagn\'e ",
    title     = { {DEAP}: Evolutionary Algorithms Made Easy },
    pages    = { 2171--2175 },
    volume    = { 13 },
    month     = { jul },
    year      = { 2012 },
    journal   = { Journal of Machine Learning Research }
}

Publications on DEAP

  • François-Michel De Rainville, Félix-Antoine Fortin, Marc-André Gardner, Marc Parizeau and Christian Gagné, "DEAP -- Enabling Nimbler Evolutions", SIGEVOlution, vol. 6, no 2, pp. 17-26, February 2014. Paper
  • Félix-Antoine Fortin, François-Michel De Rainville, Marc-André Gardner, Marc Parizeau and Christian Gagné, "DEAP: Evolutionary Algorithms Made Easy", Journal of Machine Learning Research, vol. 13, pp. 2171-2175, jul 2012. Paper
  • François-Michel De Rainville, Félix-Antoine Fortin, Marc-André Gardner, Marc Parizeau and Christian Gagné, "DEAP: A Python Framework for Evolutionary Algorithms", in !EvoSoft Workshop, Companion proc. of the Genetic and Evolutionary Computation Conference (GECCO 2012), July 07-11 2012. Paper

Projects using DEAP

  • Ribaric, T., & Houghten, S. (2017, June). Genetic programming for improved cryptanalysis of elliptic curve cryptosystems. In 2017 IEEE Congress on Evolutionary Computation (CEC) (pp. 419-426). IEEE.
  • Ellefsen, Kai Olav, Herman Augusto Lepikson, and Jan C. Albiez. "Multiobjective coverage path planning: Enabling automated inspection of complex, real-world structures." Applied Soft Computing 61 (2017): 264-282.
  • S. Chardon, B. Brangeon, E. Bozonnet, C. Inard (2016), Construction cost and energy performance of single family houses : From integrated design to automated optimization, Automation in Construction, Volume 70, p.1-13.
  • B. Brangeon, E. Bozonnet, C. Inard (2016), Integrated refurbishment of collective housing and optimization process with real products databases, Building Simulation Optimization, pp. 531–538 Newcastle, England.
  • Randal S. Olson, Ryan J. Urbanowicz, Peter C. Andrews, Nicole A. Lavender, La Creis Kidd, and Jason H. Moore (2016). Automating biomedical data science through tree-based pipeline optimization. Applications of Evolutionary Computation, pages 123-137.
  • Randal S. Olson, Nathan Bartley, Ryan J. Urbanowicz, and Jason H. Moore (2016). Evaluation of a Tree-based Pipeline Optimization Tool for Automating Data Science. Proceedings of GECCO 2016, pages 485-492.
  • Van Geit W, Gevaert M, Chindemi G, Rössert C, Courcol J, Muller EB, Schürmann F, Segev I and Markram H (2016). BluePyOpt: Leveraging open source software and cloud infrastructure to optimise model parameters in neuroscience. Front. Neuroinform. 10:17. doi: 10.3389/fninf.2016.00017 https://github.com/BlueBrain/BluePyOpt
  • Lara-Cabrera, R., Cotta, C. and Fernández-Leiva, A.J. (2014). Geometrical vs topological measures for the evolution of aesthetic maps in a rts game, Entertainment Computing,
  • Macret, M. and Pasquier, P. (2013). Automatic Tuning of the OP-1 Synthesizer Using a Multi-objective Genetic Algorithm. In Proceedings of the 10th Sound and Music Computing Conference (SMC). (pp 614-621).
  • Fortin, F. A., Grenier, S., & Parizeau, M. (2013, July). Generalizing the improved run-time complexity algorithm for non-dominated sorting. In Proceeding of the fifteenth annual conference on Genetic and evolutionary computation conference (pp. 615-622). ACM.
  • Fortin, F. A., & Parizeau, M. (2013, July). Revisiting the NSGA-II crowding-distance computation. In Proceeding of the fifteenth annual conference on Genetic and evolutionary computation conference (pp. 623-630). ACM.
  • Marc-André Gardner, Christian Gagné, and Marc Parizeau. Estimation of Distribution Algorithm based on Hidden Markov Models for Combinatorial Optimization. in Comp. Proc. Genetic and Evolutionary Computation Conference (GECCO 2013), July 2013.
  • J. T. Zhai, M. A. Bamakhrama, and T. Stefanov. "Exploiting Just-enough Parallelism when Mapping Streaming Applications in Hard Real-time Systems". Design Automation Conference (DAC 2013), 2013.
  • V. Akbarzadeh, C. Gagné, M. Parizeau, M. Argany, M. A Mostafavi, "Probabilistic Sensing Model for Sensor Placement Optimization Based on Line-of-Sight Coverage", Accepted in IEEE Transactions on Instrumentation and Measurement, 2012.
  • M. Reif, F. Shafait, and A. Dengel. "Dataset Generation for Meta-Learning". Proceedings of the German Conference on Artificial Intelligence (KI'12). 2012.
  • M. T. Ribeiro, A. Lacerda, A. Veloso, and N. Ziviani. "Pareto-Efficient Hybridization for Multi-Objective Recommender Systems". Proceedings of the Conference on Recommanders Systems (!RecSys'12). 2012.
  • M. Pérez-Ortiz, A. Arauzo-Azofra, C. Hervás-Martínez, L. García-Hernández and L. Salas-Morera. "A system learning user preferences for multiobjective optimization of facility layouts". Pr,oceedings on the Int. Conference on Soft Computing Models in Industrial and Environmental Applications (SOCO'12). 2012.
  • Lévesque, J.C., Durand, A., Gagné, C., and Sabourin, R., Multi-Objective Evolutionary Optimization for Generating Ensembles of Classifiers in the ROC Space, Genetic and Evolutionary Computation Conference (GECCO 2012), 2012.
  • Marc-André Gardner, Christian Gagné, and Marc Parizeau, "Bloat Control in Genetic Programming with Histogram-based Accept-Reject Method", in Proc. Genetic and Evolutionary Computation Conference (GECCO 2011), 2011.
  • Vahab Akbarzadeh, Albert Ko, Christian Gagné, and Marc Parizeau, "Topography-Aware Sensor Deployment Optimization with CMA-ES", in Proc. of Parallel Problem Solving from Nature (PPSN 2010), Springer, 2010.
  • DEAP is used in TPOT, an open source tool that uses genetic programming to optimize machine learning pipelines.
  • DEAP is also used in ROS as an optimization package http://www.ros.org/wiki/deap.
  • DEAP is an optional dependency for PyXRD, a Python implementation of the matrix algorithm developed for the X-ray diffraction analysis of disordered lamellar structures.
  • DEAP is used in glyph, a library for symbolic regression with applications to MLC.

If you want your project listed here, send us a link and a brief description and we'll be glad to add it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deap-1.3.1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

deap-1.3.1-cp310-cp310-win_amd64.whl (114.3 kB view details)

Uploaded CPython 3.10Windows x86-64

deap-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

deap-1.3.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (160.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

deap-1.3.1-cp310-cp310-macosx_10_15_x86_64.whl (109.1 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

deap-1.3.1-cp39-cp39-win_amd64.whl (109.0 kB view details)

Uploaded CPython 3.9Windows x86-64

deap-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (159.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

deap-1.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (159.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

deap-1.3.1-cp39-cp39-manylinux2010_x86_64.whl (159.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

deap-1.3.1-cp39-cp39-manylinux1_x86_64.whl (159.9 kB view details)

Uploaded CPython 3.9

deap-1.3.1-cp39-cp39-macosx_10_15_x86_64.whl (109.1 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

deap-1.3.1-cp39-cp39-macosx_10_14_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

deap-1.3.1-cp38-cp38-win_amd64.whl (109.0 kB view details)

Uploaded CPython 3.8Windows x86-64

deap-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (159.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

deap-1.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (160.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

deap-1.3.1-cp38-cp38-manylinux2010_x86_64.whl (157.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

deap-1.3.1-cp38-cp38-manylinux1_x86_64.whl (157.4 kB view details)

Uploaded CPython 3.8

deap-1.3.1-cp38-cp38-macosx_10_15_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

deap-1.3.1-cp38-cp38-macosx_10_14_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

deap-1.3.1-cp38-cp38-macosx_10_13_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

deap-1.3.1-cp37-cp37m-win_amd64.whl (108.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

deap-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (160.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

deap-1.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (160.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

deap-1.3.1-cp37-cp37m-manylinux2010_x86_64.whl (158.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp37-cp37m-manylinux1_x86_64.whl (158.0 kB view details)

Uploaded CPython 3.7m

deap-1.3.1-cp37-cp37m-macosx_10_15_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

deap-1.3.1-cp37-cp37m-macosx_10_14_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

deap-1.3.1-cp37-cp37m-macosx_10_13_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

deap-1.3.1-cp36-cp36m-win_amd64.whl (108.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

deap-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (159.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

deap-1.3.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (160.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

deap-1.3.1-cp36-cp36m-manylinux2010_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp36-cp36m-manylinux1_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.6m

deap-1.3.1-cp36-cp36m-macosx_10_14_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

deap-1.3.1-cp36-cp36m-macosx_10_13_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.6mmacOS 10.13+ x86-64

deap-1.3.1-cp35-cp35m-win_amd64.whl (109.2 kB view details)

Uploaded CPython 3.5mWindows x86-64

deap-1.3.1-cp35-cp35m-manylinux2010_x86_64.whl (156.8 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp35-cp35m-manylinux1_x86_64.whl (156.8 kB view details)

Uploaded CPython 3.5m

deap-1.3.1-cp34-cp34m-manylinux2010_x86_64.whl (156.6 kB view details)

Uploaded CPython 3.4mmanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp34-cp34m-manylinux1_x86_64.whl (156.6 kB view details)

Uploaded CPython 3.4m

deap-1.3.1-cp27-cp27mu-manylinux2010_x86_64.whl (155.9 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp27-cp27mu-manylinux1_x86_64.whl (155.9 kB view details)

Uploaded CPython 2.7mu

deap-1.3.1-cp27-cp27m-win_amd64.whl (111.4 kB view details)

Uploaded CPython 2.7mWindows x86-64

deap-1.3.1-cp27-cp27m-manylinux2010_x86_64.whl (155.9 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

deap-1.3.1-cp27-cp27m-manylinux1_x86_64.whl (155.9 kB view details)

Uploaded CPython 2.7m

deap-1.3.1-cp27-cp27m-macosx_10_14_x86_64.whl (109.4 kB view details)

Uploaded CPython 2.7mmacOS 10.14+ x86-64

deap-1.3.1-cp27-cp27m-macosx_10_13_x86_64.whl (109.3 kB view details)

Uploaded CPython 2.7mmacOS 10.13+ x86-64

File details

Details for the file deap-1.3.1.tar.gz.

File metadata

  • Download URL: deap-1.3.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.17

File hashes

Hashes for deap-1.3.1.tar.gz
Algorithm Hash digest
SHA256 11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f
MD5 ee30a9db17042ba15b7819d3d2713648
BLAKE2b-256 851e5f707798f8f05616c03079f02b63568b2b91f8136891a2eeffd9f78f6d8b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 114.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for deap-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aa259d927e228bb9c71f200b3a8a441791eb8c21cd3e9dfcd44cb8750f8228d4
MD5 b750d19a366db1fc980c078bb77e5da7
BLAKE2b-256 7d9fef65371acc07081327a2329b861d615722a78587b0590163a361c35ffac7

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d714852bb236c38ade099ccf49802ead2205b4f685b92622e744d0b236c51a8c
MD5 ab14cd31234c9dafa1018d40ded2c138
BLAKE2b-256 0baa6ef26e5eb0a0f197dbc29100b0c027848f7dea707e5d84191cabbc948a48

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 51e10643e773b3962baf6397888d253ae1e468fae6ed30e5cf3be108e21fc017
MD5 f6f9830f3c073bfc5efc4ea12e6fff38
BLAKE2b-256 c177810ef543179000813d7bd611716fceb0ec2b382391be7ece99fcdf5d5529

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6eabd21f8a4c2213a99b61fbd26f819825083d5bf8de091a2d45df35c0d93a57
MD5 efb6487dec08337c28865a5bc9e66111
BLAKE2b-256 59a6fa620c69939d08b9e3890ba2ea9d698a3f9f0d699a020284dbb8d4640954

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 109.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for deap-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 47ef982c4ad26a1b5f45cf8c82b262d46b90c39e9686ba3cb831f9fcdcbdc88b
MD5 5bfcab99b35a0ac89c42819032820e33
BLAKE2b-256 89f0ccab8a34fe9a2f7738d33ad785be23078bfc218edab0dc5b831e6d99124d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75d8d1fae7602662387aba859f05dc960e7d20e4ab7c2d14783080cf8fc839ca
MD5 a23edfaf89fc2dff51eb224f87959cb9
BLAKE2b-256 2e4708e46de6f2e74f719c135abd3589a3048fe6a2efecfd0ae5bd603a3e37d9

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4e977d8246cc84283a7f7fc9dfdbb7cb9a580025bc32b89bf2e357dee92906d8
MD5 c631ce4f80cd70534acbdd31e75a1af1
BLAKE2b-256 28a151f1f8c67748d798f5eea05fffc8478ec23b787edc5109a41ffa8e9c21cb

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 159.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for deap-1.3.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 53a70b3f07a06ad6693e5b7e0c4a4387147ed0113e0eeda7ac33cfc516487f89
MD5 e4811f0eadb56e09f9811e2f54036167
BLAKE2b-256 53e2a4de7e4d4bd9b0ef59f34b32ef1a10c47a548cfc2ad2be39d52c0b7b3a91

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 159.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for deap-1.3.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bc58673b26c8c417e3d479701eca2b9fc3bfd9f646067036a06f7bbadabf8bba
MD5 6968061e6d86a2f61b77a6624dec404c
BLAKE2b-256 9baf0fe377851f675cfcc64fba5e6ffa2dada30dee52e50ee6bfc56a51b7a88b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb3cb0547d1a9f7eb161e25d73ca402973ebdf3006d3b92e437dc16c159d7af6
MD5 e8009f5a722a9095ab968f6be6b9a600
BLAKE2b-256 df9fc718935791d21445fdb2260cd9b114c6998f97c13e3506fc386d0beebf7d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0

File hashes

Hashes for deap-1.3.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 38ef2defe7d9e32c9552173ace5e99ff2b29599877f7dc0420baa747475837df
MD5 40057adaff8db3e00cc89fe8acb179d0
BLAKE2b-256 22656d5101a2acfe7f24905313c5b702403d76225f83ac08a321ca3001f0318b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 109.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for deap-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 794acffc3a2da2213bd184be8d6a751b0df03bdf2271bb57da7414201c4afb28
MD5 36a5428161649d860755f3eb6b068ec2
BLAKE2b-256 440215e49029de831598d605cfce05ab941fdb7fafe26fc0904b8f792b9fd0a8

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 700150c49916c8e9a9c4c3441d941d037a043b8fe27cbec0eb453d41f46cca14
MD5 a752e44d4305f5de488f23597eec54e2
BLAKE2b-256 bc0d6ef3f9c31533e4a655904dfa886226728190b20f51ada280d7331a35cdc0

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3365a217e30865e69a74a06e1ea772bf109aedcc5ccf84d3076dec1bac75025e
MD5 741ee8b02ea81b55848a9b2eac023b68
BLAKE2b-256 5ce7b0e3770209df2e463bc166f37627006502a5fa01696509dfc7d8c5fedcf2

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1eac7020de9d3995173bbe30ea04cdc995830a52c97c8b4dd2d01cf6a818799d
MD5 962335185539e63667ca5fc84f34237b
BLAKE2b-256 534a5ac1423a098c09de6b37b94ef08b59995f29ede2ad2bc487dd5191f6ee0b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8d41226849f01f4bbcff8db7037d4e8063d7f3a5b5e090c0ea59e9aa8ec3fca9
MD5 5bbc4491c28efb5abab254e4cb6a75c6
BLAKE2b-256 6320fe815d572489a1096437c354b3a7e95b5400cd1f36acfdf3a59e59f59f00

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb383daf4bb05f936ee6dde4960e36b108cc0561ec228aca745ea2c8961dfb23
MD5 e2a7fa71e1f3661fa539e4484fd3c847
BLAKE2b-256 dc41de5df3b9d7186508ff1befd8212e6bbad15eb8f7120392b4a9a38e12c7f0

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for deap-1.3.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 26a1d10fd8b5f5dc128abea43f17b626e0e2123d5de09ee26f591ab66117e751
MD5 e46bb13d90e14c51f6f7618df9ad5c9b
BLAKE2b-256 bc48c3d0000908add70f85a298278bf35b2678f7a6c3e0a291152ffe8d3f2ca2

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for deap-1.3.1-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 827d278d77d42aa499404e02817de8a02c5303c8cb6dde51033fa2783c6a0ea5
MD5 e30026722c31fb80d0ed3c04aa285494
BLAKE2b-256 765311455b7709a3cf091c7b7756a18d0aff7c40bfe57a23bbad0a9ba3e1fd8e

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 108.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 faa6a761368fcaa4459d45557a803fc3dc610c2aef37a2f62dfbddcbfabd29a3
MD5 4eeb7b23f4330517b8a0a260d52f750c
BLAKE2b-256 d70e9fb49b3b410d7aeb12c9d25f53dee801c1a6640fa01dd35a7c8bebeeaf0d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c68e59f669ec22533c095d9cd4ed5188eaf8ff0dd402fc1c5f4cdd180c1db3d6
MD5 376da9184ee92a9e4eff9d476a31f1e5
BLAKE2b-256 b330ac9c58e8c54a74a74fdde4c63b44b6110c89a0a53930ce73be90863c75ab

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a9d2e8e4603ab7151a501a669545344ee1875941c2b21a7fe8df436df29f28a2
MD5 9c6225fcb64107c5a74d19215294e8fc
BLAKE2b-256 d7b30020b70efe79bd69b24c2b0680a3f6639f4144296b16ad92cc2a2f2d9854

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 158.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0283b29ab47d841cd33c19fed547d18c15b95b2876223de42799dc61c0453080
MD5 575003b01276f8fd4654bd1f03aad052
BLAKE2b-256 99d1803c7a387d8a7e6866160b1541307f88d534da4291572fb32f69d2548afb

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 158.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9e330449160ebe18929e7db2595c2a6931f5132a323e4096d36ef26d0802bd14
MD5 2423cff1d65246ad886c289ef248c115
BLAKE2b-256 2bbab93da4ab1c8d6ee7fed360f93b573c07e0dd7d90c593c838ade265e31f13

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1e1148f73ffbaea5cbdc4a0b27c46d8de3bd4e9b2cf99a242bf63d5031a4717e
MD5 1218c7bd3de9256d8e257c0ad2815d43
BLAKE2b-256 d83a819f360b3b3133ee4216ca2629c0c3b17f468239ed6fe78087e1288c7675

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for deap-1.3.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 809534e155c76a4f46d480f6d73dc347f2bc90324d9e3546a68bdbf33164d165
MD5 74112aef42fdd9c08c05e0a9966d9c4e
BLAKE2b-256 303225dd2045f5d5ebbbc34daa3dad396a7be837a168abae9c8aea0cec2c80fe

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 354d629e0d1605c493e4eee3587a7e3503343864b9967d5b2d83c0026307346c
MD5 53d99a74e7f73f82096eda75413879b4
BLAKE2b-256 1e6a834ed9d2facc29b8da256b788286a75f9364f07a52179fb1cb35475d84c8

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 108.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.8

File hashes

Hashes for deap-1.3.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6365452dce08f6df9daee7255671972184c5e5da11391232e874cccc36d02366
MD5 2e17afb14b775b51ab517c6df5604910
BLAKE2b-256 760e720e5b453876b5cf97b4e19716fc61ff941d355083d2d20ace7e061d7116

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23083349c7eb1331eeee2fde3fd71545f3d5c8896d292f3e37a49930210f5669
MD5 4cdf956b750911d536b91d98047e377b
BLAKE2b-256 ace67f685eaae067d8194c5a1d153ca0535d37cb67bfab537dd7ce7d2252edfc

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for deap-1.3.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a8dee866f9a427f3284f25b7bb988dbc2f8383ad007df8b081c6784f148c754a
MD5 cfa7c1cd525e2ab452f134a096b348c9
BLAKE2b-256 28dac9e9ba58afb22df85b54c4ebc54194771761ad2d1ed57ac1286964c2193e

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ead42f533c07e929ba02a4b3b9e04c274eb64689edd9c0fe42e4f63620b24385
MD5 46bd108b0fc738758695b55a9d107eb5
BLAKE2b-256 0aeb2bd0a32e3ce757fb26264765abbaedd6d4d3640d90219a513aeabd08ee2b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3113e31e7f9e6e2d0d3e9d41168541ca9469b3e796c03cfb5d81bd170af096fa
MD5 35116aad8d56112ce69e7f65237665d6
BLAKE2b-256 eb0084e60274a4bdd5475fd45b3be3f969bb328862ca2a68b13e4c07d8597389

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12

File hashes

Hashes for deap-1.3.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 657a038e69937e292fac3daf6641243a7ebd87e8424e8bdf930e5ef74e638776
MD5 359701d34a48fdcc78e243cf52b6d3d8
BLAKE2b-256 18edfc3abcfa9c26a03f17ef5c2b0d7bfaec8f14ae7eb219cafd41c13b60444b

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.10

File hashes

Hashes for deap-1.3.1-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e071b3a5ffeeb760a3d7e606a81122c2f192c9ebe9317116131a9d6624bfdf49
MD5 afd27d687a0a26be298bf9a435e9ca05
BLAKE2b-256 f4600b667760f9ac3ba9215cc3bf39a9ceeae2b32a9ba52750e1f3f22bfc4f0d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 109.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.5.4

File hashes

Hashes for deap-1.3.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 a1fb86ed6ef2ebf4e9e938b87fdcbc10cad1c147cd9ec9311957d6ec583e9d49
MD5 261b726a94203b0b51752a339e45536c
BLAKE2b-256 cea16479be8e01278823f6c5215a56a23e9923007a4d88cd9065a35940a1a235

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 156.8 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d2d481ec28f947d9c3d838909a49c5e09bbdc8110cca366b544fb0d5afbdd95
MD5 6bfbe3e5cb17e2b72d3db05ab043091e
BLAKE2b-256 92b17b1705e567c41160c4409b7ddebe861d2fb3ab7f5a6de322c67eff528518

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 156.8 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2f2f9373e23dfbd6cdda2ff0c05f2fc7f9a96d0f03d9a3814bae4790067339ed
MD5 9fd5ba469b6e6d5e30ed500898c06729
BLAKE2b-256 99baef42d6756ac56bc1c3ac716de93a075a46b35fc0236fdfc2f2ec52a1e39c

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.4m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4fcf65d04420bd8d7b2ee4f165c562db6671746c1cdf599d82ec59f71be7188e
MD5 90453df3cf2cdc04f16aa8ebb2f33b84
BLAKE2b-256 8dd1d1ea8fcefe561a0d8a1832e7d94cf4811c8a0b67b118adda3efceabf7070

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dd9d2b5c65814930084b4c781ced6bb6906fabf708e4c94b97c5fce9432a088a
MD5 ab0fbefea9040ea891401e17e4c410f5
BLAKE2b-256 51f79fc5e6daeef61509ae648ea346cd9baad59f9de04c2513d9658e08cb9c51

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 50d4c817b3b17ab705a15e99a03384d588735a966ba170a1d42aa45a59288dc7
MD5 85d94c9674dc0047f1b8681ed9038133
BLAKE2b-256 27c55bd992d1cc402cc09dd97c59a66276e8975c986134a9791ba171d16ec9c7

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 49a21b4f21f5e429c3dfa2d7e448cd1a80963ca4f4b71653d1a78d4ae10c9d70
MD5 5bbfa7aef4b78822dd8876d9fd68cff6
BLAKE2b-256 a0b52adca2bac5727549e8ce36d9851a129c51629ae62323bc31b940ffdb977a

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 111.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.17

File hashes

Hashes for deap-1.3.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 b11bf90dc6ddc454f47977d4d3f2c32f48d5fb3bd200120827c4d55206b3c110
MD5 410ae62cf66d123b651112464c63e1c6
BLAKE2b-256 360d12c06601ea64502eb2224339cf2507473f3b4c14612b9e25676e34c0b126

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ef1e150be601a2fa94eca9a82a089036830c47c7cc0c67e92ec8ebca64c19b50
MD5 21919366b40758a440f20a5354d4981e
BLAKE2b-256 8f71eeec69e2e4e0f1f355d66dcd58ccffd7e684806d0abfaa66e33d514f3612

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/43.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6

File hashes

Hashes for deap-1.3.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86a4b98fb7b46e53125f48e8b5572b3c8021c9d31e7edc15e1b2b59c21209d03
MD5 4985f57b7336b24ad4d97934606d0645
BLAKE2b-256 869642d328284912d243591c003b9ec1ce12c427448a80f0f9e6ccf3201fd71d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.6.1 requests/2.25.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/2.7.18

File hashes

Hashes for deap-1.3.1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8fd13bee65a91b77bbf999befdebe471c102b6b26581ea92bbd6fa4e4d55efd3
MD5 99e4e43f5b5168b7ac5bece8f7ca9f69
BLAKE2b-256 da3c80d59342d3b64a1f0ea3670b4e18b93a9568de71c27f80e333d72346882d

See more details on using hashes here.

File details

Details for the file deap-1.3.1-cp27-cp27m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: deap-1.3.1-cp27-cp27m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 109.3 kB
  • Tags: CPython 2.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/2.7.17

File hashes

Hashes for deap-1.3.1-cp27-cp27m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 937548989075ddbc30294e0a5d96432000217c83421dad28afc8bc373723cb82
MD5 114f1c216f0106113068c7f318a861aa
BLAKE2b-256 dc6cca25773da65348fea4c6cff5aa8c7463a156a4be6c44ab1498f0762ab2d2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page