https://github.com/eldesh/basic_iter.py
Basic functions on sequcences for Python
https://github.com/eldesh/basic_iter.py
Last synced: 3 months ago
JSON representation
Basic functions on sequcences for Python
- Host: GitHub
- URL: https://github.com/eldesh/basic_iter.py
- Owner: eldesh
- License: mit
- Created: 2022-04-24T08:56:40.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-04T10:19:45.000Z (about 3 years ago)
- Last Synced: 2025-01-26T20:47:10.607Z (4 months ago)
- Language: Python
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```sh
$ pip install basic_iter
```## Develop
## Install dependencies for developing
```sh
basic_iter$ poetry install --no-root
```### Generate documents
To generate documents:
```sh
basic_iter$ make doc
```This will generate documentation under `./docs/build/html`.
## Format Checking
For format checking by black:
```sh
basic_iter$ make format_check
```## Type Checking
For type checking by mypy:
```sh
basic_iter$ make type_check
```## Unit Test
For executing unit tests:
```sh
basic_iter$ make test
```