An open API service indexing awesome lists of open source software.

https://github.com/j2kun/pmfp-code

Source code for the book Practical Math for Programmers
https://github.com/j2kun/pmfp-code

mathematics

Last synced: about 1 year ago
JSON representation

Source code for the book Practical Math for Programmers

Awesome Lists containing this project

README

          

# Practical Math for Programmers

[![Coverage Status](https://coveralls.io/repos/github/j2kun/pmfp-code/badge.svg?branch=main)](https://coveralls.io/github/j2kun/pmfp-code?branch=main)

This is the source code respository for the book, Practical Math for Programmers.

## Running tests

Requires Python 3.12.

```
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
```

To run the test suite:

```
pytest

# with code coverage
pytest --cov-report html:cov_html --cov-report annotate:cov_annotate --cov
```