Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Benchmarking section #2573

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -11,6 +11,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
- [Asynchronous Programming](#asynchronous-programming)
- [Audio](#audio)
- [Authentication](#authentication)
- [Benchmarking](#benchmarking)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- [Build Tools](#build-tools)
- [Built-in Classes Enhancement](#built-in-classes-enhancement)
- [Caching](#caching)
Expand Down Expand Up @@ -177,6 +178,17 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php).
* [pyjwt](https://github.com/jpadilla/pyjwt) - JSON Web Token implementation in Python.
* [python-jose](https://github.com/mpdavis/python-jose/) - A JOSE implementation in Python.

## Benchmarking

*Libraries for benchmarking source code.*

* Benchmark Harnesses
* [asv](https://github.com/airspeed-velocity/asv) - Airspeed Velocity: A simple Python benchmarking tool with web-based reporting.
* [pytest-benchmark](https://github.com/ionelmc/pytest-benchmark) - py.test fixture for benchmarking code.
* [timeit](https://docs.python.org/3/library/timeit.html) - (Python standard library) Provides a simple way to time small bits of Python code.
* Continuous Benchmarking
* [bencher](https://github.com/bencherdev/bencher) - [Bencher](https://bencher.dev) is a suite of continuous benchmarking tools designed to catch performance regressions in CI.

## Build Tools

*Compile software from source code.*
Expand Down