Personal tools
Skip to content. | Skip to navigation
A lightweight and fast pure Python ECDSA OverviewWe tried other Python libraries such as [python-ecdsa], [fast-ecdsa] and other less famous ones, but we didn't find anything that suited our needs. The first one was pure Python, but it was too slow. The second one mixed Python and C and it was really fast, but we were unable to use it in our current infrastructure, which required pure Python...
Starlette is a lightweight ASGI framework/toolkit, which is ideal for building async web services in Python. It is production-ready, and gives you the following: • A lightweight, low-complexity HTTP web framework. • WebSocket support. • In-process background tasks. • Startup and shutdown events. • Test client built on requests. • CORS, GZip, Static Files, Streaming responses. • Session and Cookie support. • 100% test coverage. • 100% type annotated codebase. • Few hard dependencies. • Compatible with asyncio and trio backends. • Great overall performance against independent benchmarks.
A python client for the statsd daemon.
statsmodels is a Python module that provides classes and functions for the estimation of many different statistical models, as well as for conducting statistical tests, and statistical data exploration. An extensive list of result statistics are available for each estimator. The results are tested against existing statistical packages to ensure that they are correct.
std-uritemplate This is a complete and maintained cross-language implementation of the Uri Template specification RFC 6570 Level 4. [!NOTE] Low activity is this repository is expected as long as there are no outstanding bug reports the implementations are considered stable and mature. Available implementations Language Complete Reviewed Published Java ✅ ✅ ✅ Python ✅ ❌ ✅ Typescript ✅ ✅ ✅ Go ✅ ✅ ✅ C# ✅ ✅ ✅ Ruby ✅ ❌ ✅ PHP ✅ ✅ ✅ Swift ✅ ❌ ✅ Dart ✅ ✅ ✅ Usage Java You can use the library as a Maven dependency: <dependency> <groupId>io.github.std-uritemplate</groupId> <artifactId>std-uritemplate</artifactId> <version>REPLACE-ME</version> </dependency> in Gradle: implementation 'io.github.std-uritemplate:std-uritemplate:REPLACE-ME' and use it in your project: import io.github.stduritemplate.StdUriTemplate; ... StdUriTemplate.expand(template, substitutions); Python Install the package with pip (or any alternative): pip install std-uritemp
Python Standard Library List This package includes lists of all of the standard libraries for Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, and 3.8 along with the code for scraping the official Python docs to get said lists.Listing the modules in the standard library? Wait, why on Earth would you care about that?! -Because knowing whether or not a module is part of the standard library will...
Parse, validate and reformat standard numbers and codes. This library offers functions for parsing, validating and reformatting standard numbers and codes in various formats like personal IDs, VAT numbers, IBAN and more.
Manage dynamic plugins for Python applications