Introduction

_images/logo.png

Python Project vectorize

GitHubWorkflow Read the Docs GitHub GitHub release PyPI Version PyPI - Python Version PyPI Downloads

Introduction

To import the project simply type

>>> from vectorizeit import vectorize

after installation and use vectorize as a decorator to iterate over arguments of list type.

>>> @vectorize(keys=['a', 'b'])
... def foo(a, b):
...     return a, b

>>> foo((1, 2), ['a', 'b'])
(((1, 'a'), (1, 'b')), ((2, 'a'), (2, 'b')))

Install

The latest stable version can always be installed or updated via pip:

$ pip install vectorizeit

License

Code and documentation are available according to the license (see LICENSE file in repository).