Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpounsett/netmath
A python library containing useful networking math functions.
https://github.com/mpounsett/netmath
Last synced: about 1 month ago
JSON representation
A python library containing useful networking math functions.
- Host: GitHub
- URL: https://github.com/mpounsett/netmath
- Owner: mpounsett
- Created: 2017-03-26T15:58:56.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-19T17:33:52.000Z (about 3 years ago)
- Last Synced: 2024-12-01T16:59:56.652Z (about 2 months ago)
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Netmath
A native python library for doing network math
## Testing
You will need (at least) python 2.7, 3.4, 3.5, 3.6, and 3.7. The easiest way
to get these all installed is with
[pyenv](https://www.holger-peters.de/using-pyenv-and-tox.html). As of last
update, the current versions are:```
pyenv install 2.7.16
pyenv install 3.4.10
pyenv install 3.5.7
pyenv install 3.6.9
pyenv install 3.7.4
pyenv global 3.7.4 3.6.5 3.5.5 3.4.8 2.7.15 system
```Before running tests you will require some python packages to be installed.
```
pip install -r requirements_test.txt
```To run all tests:
```
tox
```