Ecosyste.ms: Awesome
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 2 months ago
JSON representation
Source code for the book Practical Math for Programmers
- Host: GitHub
- URL: https://github.com/j2kun/pmfp-code
- Owner: j2kun
- License: other
- Created: 2019-04-28T16:55:37.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-05T18:08:43.000Z (about 2 months ago)
- Last Synced: 2024-11-05T19:20:51.503Z (about 2 months ago)
- Topics: mathematics
- Language: Python
- Homepage: https://pmfpbook.org
- Size: 6.59 MB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 at least Python 3.10.
```
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
```