Personal tools
Skip to content. | Skip to navigation
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...
|CircleCI|_ |Docs|_.. |CircleC.. _CircleCI: |Doc.. _Docs: This library provides a way to test examples in your documentation by parsing them from the documentation source and evaluating the parsed examples as part of your normal test run. Integration is provided for the main Python test
Python implementation of Tarjan's algorithm Tarjan's algorithm takes as input a directed (possibly cyclic!) graph and returns as output its strongly connected components in a topological order.Example.. code:: >>> tarjan({1:[2],2:[1,5],3:[4],4:[3,5],5:[6],6:[7],7:[8],8:[6,9],9:[]}) [[9], [8, 7, 6], [5], [2, 1], [4, 3]]Uses Cyclic dependencies In various cases, dependencies might be cyclic and...
A storage implementation which uses RAM to persist objects, much like MappingStorage. Unlike MappingStorage, it needs not be packed to get rid of non- cyclic garbage and it does rudimentary conflict resolution. This is a ripoff of Jim's Packless bsddb3 storage.Changelog 5.2 (2021-07-05) -- Update package configuration- Package is now officially undeprecated because the data corruption issue -...
**Note**: This package has been built automatically by zero2pypi < If possible, you should use the zero-install feed instead: termstyle termstyle is a simple python library for adding coloured output to terminal (console) programs. The definitions come from ECMA-048_, the "Control Functions for Coded Character Sets" standard.Installation: -I thoroughly recommend using the zero-install feed...
Testfixtures |CircleCI|_ |Docs|_.. |CircleC.. _CircleCI: |Doc.. _Docs: is a collection of helpers and mock objects that are useful when writing automated tests in Python.The areas of testing this package can help with are listed below:**Comparing objects and sequences**Better feedback when the results aren't as you expected along with
testresources: extensions to python unittest to allow declarative use of resources by test cases.Copyright (C) 2005-2013 Robert Collins <robertc@robertcollins.net> Licensed under either the Apache License, Version 2.0 or the BSD 3-clause license at the users choice. A copy of both licenses are available in the project source as Apache-2.0 and BSD. You may not use this file except in compliance...
.. _the-fuck-versionversion-badgeversion-link-build-statusworkflow- badgeworkflow-link-coveragecoverage-badgecoverage-link-mit-licenselicense- badge: The Fuck |Version| |Build Status| |Coverage| |MIT License| ========================================================== *The Fuck* is a magnificent app, inspired by a [@liamosaur](https://twitter.com/liamosaur/) `tweet...
TOML A Python library for parsing and creating TOML < module passes the TOML test suite < also:* The TOML Standard < * The currently supported TOML specification <
Hear ye, hear ye, says the towncrier towncrier is a utility to produce useful, summarised news files for your project. Rather than reading the Git history as some newer tools to produce it, or having one single file which developers all write to, towncrier reads "news fragments" which contain information useful to end users.