Personal tools
Skip to content. | Skip to navigation
This is a script for all you Scrum||Kanban masters out there who use Taiga and are interested in visualizing progress and generate some automated statistics and graphs.
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...
This library provides a pure Python, asynchronous interface for the Telegram Bot API. In addition to the pure API implementation, this library features several convenience methods and shortcuts as well as a number of high-level classes to make the development of bots easy and straightforward. These classes are contained in the telegram.ext submodule.
Telegram is an Open Source instant messaging platform for mobile and desktop focused on privacy. This is a Linux Command-line interface for Telegram.
Tempita is a small templating language for text substitution.
Dictionary where __getitem__() is run through Jinja2 template.
Objects and routines pertaining to date and time (tempora).
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 -...