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
- Host: GitHub
- URL: https://github.com/j2kun/pmfp-code
- Owner: j2kun
- License: other
- Created: 2019-04-28T16:55:37.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2025-04-21T19:46:52.000Z (about 1 year ago)
- Last Synced: 2025-04-21T20:43:20.261Z (about 1 year ago)
- Topics: mathematics
- Language: Python
- Homepage: https://pmfpbook.org
- Size: 6.7 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Practical Math for Programmers
[](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
```