https://github.com/enthought/encore
A Collection of core-level utility modules for Enthought projects
https://github.com/enthought/encore
Last synced: about 1 year ago
JSON representation
A Collection of core-level utility modules for Enthought projects
- Host: GitHub
- URL: https://github.com/enthought/encore
- Owner: enthought
- License: other
- Created: 2011-12-09T23:03:35.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T06:55:19.000Z (almost 4 years ago)
- Last Synced: 2025-03-25T06:51:11.536Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 2.39 MB
- Stars: 14
- Watchers: 59
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
====================================================
Encore - A collection of core-level utility modules
====================================================
This package consists of a collection of core utility packages useful for
building Python applications. This package is intended to be at the
bottom of the software stack and have zero required external dependencies
aside from the Python Standard Library.
Packages
--------
*Events:* A package implementing a lightweight application-wide Event dispatch system. Listeners
can subscribe to events based on Event type or by filtering on event attributes. Typical uses
include UI components listening to low-level progress notifications and change notification for
distributed resources.
*Storage:* Abstract base classes and concrete implementations of a basic key-value storage API.
The API is intended to be general purpose enough to support a variety of local and remote storage
systems.
*Concurrent:* A package of tools for handling concurrency within applications.
*Terminal:* Some utilities for working with text-based terminal displays.
Prerequisites
-------------
* Python >= 3.6
* Sphinx, graphviz, sphinx_copybutton, enthought_sphinx_theme
(documentation build)
* Some optional modules have dependencies on:
- Requests (https://requests.readthedocs.io/en/latest/)