Metadata-Version: 1.1
Name: cpyquickhelper
Version: 0.1.187
Summary: Module with C functions. No precise purpose yet.
Home-page: http://www.xavierdupre.fr/app/cpyquickhelper/helpsphinx/index.html
Author: Xavier Dupré
Author-email: xavier.dupre@gmail.com
License: MIT
Download-URL: https://github.com/sdpython/cpyquickhelper/
Description: .. image:: https://travis-ci.org/sdpython/cpyquickhelper.svg?branch=master
            :target: https://travis-ci.org/sdpython/cpyquickhelper
            :alt: Build status
        
        .. image:: https://ci.appveyor.com/api/projects/status/sia7wxgjv8e1fi5a?svg=true
            :target: https://ci.appveyor.com/project/sdpython/cpyquickhelper
            :alt: Build Status Windows
        
        .. image:: https://circleci.com/gh/sdpython/cpyquickhelper/tree/master.svg?style=svg
            :target: https://circleci.com/gh/sdpython/cpyquickhelper/tree/master
        
        .. image:: https://dev.azure.com/xavierdupre3/cpyquickhelper/_apis/build/status/sdpython.cpyquickhelper
            :target: https://dev.azure.com/xavierdupre3/cpyquickhelper/
        
        .. image:: https://badge.fury.io/py/cpyquickhelper.svg
            :target: https://pypi.org/project/cpyquickhelper/
        
        .. image:: https://img.shields.io/badge/license-MIT-blue.svg
            :alt: MIT License
            :target: http://opensource.org/licenses/MIT
        
        .. image:: https://requires.io/github/sdpython/cpyquickhelper/requirements.svg?branch=master
             :target: https://requires.io/github/sdpython/cpyquickhelper/requirements/?branch=master
             :alt: Requirements Status
        
        .. image:: https://codecov.io/github/sdpython/cpyquickhelper/coverage.svg?branch=master
            :target: https://codecov.io/github/sdpython/cpyquickhelper?branch=master
        
        .. image:: http://img.shields.io/github/issues/sdpython/cpyquickhelper.png
            :alt: GitHub Issues
            :target: https://github.com/sdpython/cpyquickhelper/issues
        
        .. image:: https://badge.waffle.io/sdpython/cpyquickhelper.png?label=to%20do&title=to%20do
            :alt: Waffle
            :target: https://waffle.io/cpyquickhelper/cpyquickhelper
        
        .. image:: http://www.xavierdupre.fr/app/cpyquickhelper/helpsphinx/_images/nbcov.png
            :target: http://www.xavierdupre.fr/app/cpyquickhelper/helpsphinx/all_notebooks_coverage.html
            :alt: Notebook Coverage
        
        .. _l-README:
        
        cpyquickhelper
        ==============
        
        *cpyquickhelper* is a template to create a module with
        C functions in different ways. It implements function
        *measure_time*:
        
        ::
        
            from cpyquickhelper.numbers import measure_time
            from math import cos
        
            res = measure_time("cos(x)", context=dict(cos=cos, x=5.))
            print(res)
        
        ::
        
            {'average': 3.909366205334663e-06, 'deviation': 6.238702219064397e-07,
             'min_exec': 3.635883331298828e-06, 'max_exec': 5.776062607765198e-06,
             'repeat': 10, 'number': 50, 'context_size': 240}
        
        On Windows, the following exception might happen:
        
        ::
        
            LINK : fatal error LNK1158: impossible d'exécuter 'rc.exe'
        
        Which might be resolved with the following line before building it:
        
        ::
        
            set PATH=%PATH%;C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x64
        
        **Links:**
        
        * `GitHub/cpyquickhelper <https://github.com/sdpython/cpyquickhelper/>`_
        * `documentation <http://www.xavierdupre.fr/app/cpyquickhelper/helpsphinx/index.html>`_
        * `Blog <http://www.xavierdupre.fr/app/cpyquickhelper/helpsphinx/blog/main_0000.html#ap-main-0>`_
        
        .. _l-HISTORY:
        
        =======
        History
        =======
        
        current - 2019-02-26 - 0.00Mb
        =============================
        
        * `11`: add parameter div_by_number to measure_time (2019-02-26)
        
        0.1.182 - 2019-02-16 - 0.17Mb
        =============================
        
        * `10`: fix binary location in the setup (2019-02-16)
        * `5`: implement a new pandas column type based on a C++ array type (2019-02-02)
        * `9`: add benchmark for branching (2019-01-17)
        * `1`: [REMOVED] prepare an example with C# (2018-08-05)
        * `6`: implements an ExtensionArray from pandas with a C++ type (2018-08-03)
        * `4`: implements a series with WeightedDouble (2018-08-03)
        * `3`: add an example based on pybind11 (2018-08-02)
        * `2`: add history (2018-04-01)
        
Keywords: cpyquickhelper,Xavier Dupré
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 5 - Production/Stable
