Personal tools
Skip to content. | Skip to navigation
SymPy aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries.
Python module for native access to the systemd facilities. Functionality includes sending of structured messages to the journal and reading journal files, querying machine and boot identifiers and a lists of message identifiers provided by systemd. Other functionality provided by libsystemd is also wrapped.
PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data.
Tablib: format-agnostic tabular dataset library Tablib is a format-agnostic tabular dataset library, written in Python. Output formats supported: Excel (Sets + Books) JSON (Sets + Books) YAML (Sets + Books) Pandas DataFrames (Sets) HTML (Sets) Jira (Sets) LaTeX (Sets) TSV (Sets) ODS (Sets) CSV (Sets) DBF (Sets) Note that tablib purposefully excludes XML support. It always will. (Note: This is a joke. Pull requests are welcome.) Tablib documentation is graciously hosted on https:/tablib.readthedocs.io It is also available in the docs directory of the source distribution. Make sure to check out Tablib on PyPI! Contribute Please see the contributing guide.
The main use cases of the library are: • printing small tables without hassle: just one function call, formatting is guided by the data itself • authoring tabular data for lightweight plain-text markup: multiple output formats suitable for further editing or transformation • readable presentation of mixed textual and numeric data: smart column alignment, configurable number formatting, alignment by a decimal point
This is a metapackage bringing in widechars extras requires for python3-tabulate. It makes sure the dependencies are installed.
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...
Dictionary where __getitem__() is run through Jinja2 template.
Objects and routines pertaining to date and time (tempora).
This is a Tornado websocket backend for the term.js Javascript terminal emulator library.