Skip to content

Latest commit

 

History

History
59 lines (33 loc) · 800 Bytes

README.md

File metadata and controls

59 lines (33 loc) · 800 Bytes

Basic Iterator Operators for Python

This package provides basic functions on sequences (now only list is supported). All these provided functions are defined in functional way and do not update given arguments, but return newly constructed values.

Install

$ pip install basic_iter

Develop

Install dependencies for developing

basic_iter$ poetry install --no-root

Generate documents

To generate documents:

basic_iter$ make doc

This will generate documentation under ./docs/build/html.

Format Checking

For format checking by black:

basic_iter$ make format_check

Type Checking

For type checking by mypy:

basic_iter$ make type_check

Unit Test

For executing unit tests:

basic_iter$ make test