signalslot


Namesignalslot JSON
Version 0.2.0 PyPI version JSON
download
home_pagehttps://github.com/numergy/signalslot
SummarySimple Signal/Slot implementation
upload_time2023-05-30 13:20:03
maintainer
docs_urlNone
author
requires_python>=3.4
licenseMIT
keywords signal slot
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage
            .. image:: https://secure.travis-ci.org/Numergy/signalslot.png?branch=master
    :target: http://travis-ci.org/Numergy/signalslot
.. image:: https://img.shields.io/pypi/dm/signalslot.svg
    :target: https://crate.io/packages/signalslot
.. image:: https://img.shields.io/pypi/v/signalslot.svg   
    :target: https://crate.io/packages/signalslot
.. image:: https://coveralls.io/repos/Numergy/signalslot/badge.png 
    :target: https://coveralls.io/r/Numergy/signalslot
.. image:: https://readthedocs.org/projects/signalslot/badge/?version=latest
    :target: https://signalslot.readthedocs.org/en/latest

signalslot: simple Signal/Slot implementation for Python
========================================================

This package provides a simple and stupid implementation of the `Signal/Slot
pattern <http://en.wikipedia.org/wiki/Signals_and_slots>`_ for Python.
Wikipedia has a nice introduction:

    Signals and slots is a language construct introduced in Qt for
    communication between objects[1] which makes it easy to implement the
    Observer pattern while avoiding boilerplate code. 

Rationale against Signal/Slot is detailed in the "Pattern"
section of the documentation.

Install
-------

Install latest stable version::

    pip install signalslot

Install development version::

    pip install -e git+https://github.com/Numergy/signalslot

Upgrade
-------

Upgrade to the last stable version::

    pip install -U signalslot

Uninstall
---------

::

    pip uninstall signalslot

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/numergy/signalslot",
    "name": "signalslot",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.4",
    "maintainer_email": "",
    "keywords": "signal slot",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/a5/1e/989f2e12f3c415f59fd83d5e7d39da417e6d0bd97a449feec7c0711baca1/signalslot-0.2.0.tar.gz",
    "platform": null,
    "description": ".. image:: https://secure.travis-ci.org/Numergy/signalslot.png?branch=master\n    :target: http://travis-ci.org/Numergy/signalslot\n.. image:: https://img.shields.io/pypi/dm/signalslot.svg\n    :target: https://crate.io/packages/signalslot\n.. image:: https://img.shields.io/pypi/v/signalslot.svg   \n    :target: https://crate.io/packages/signalslot\n.. image:: https://coveralls.io/repos/Numergy/signalslot/badge.png \n    :target: https://coveralls.io/r/Numergy/signalslot\n.. image:: https://readthedocs.org/projects/signalslot/badge/?version=latest\n    :target: https://signalslot.readthedocs.org/en/latest\n\nsignalslot: simple Signal/Slot implementation for Python\n========================================================\n\nThis package provides a simple and stupid implementation of the `Signal/Slot\npattern <http://en.wikipedia.org/wiki/Signals_and_slots>`_ for Python.\nWikipedia has a nice introduction:\n\n    Signals and slots is a language construct introduced in Qt for\n    communication between objects[1] which makes it easy to implement the\n    Observer pattern while avoiding boilerplate code. \n\nRationale against Signal/Slot is detailed in the \"Pattern\"\nsection of the documentation.\n\nInstall\n-------\n\nInstall latest stable version::\n\n    pip install signalslot\n\nInstall development version::\n\n    pip install -e git+https://github.com/Numergy/signalslot\n\nUpgrade\n-------\n\nUpgrade to the last stable version::\n\n    pip install -U signalslot\n\nUninstall\n---------\n\n::\n\n    pip uninstall signalslot\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simple Signal/Slot implementation",
    "version": "0.2.0",
    "project_urls": {
        "Homepage": "https://github.com/numergy/signalslot"
    },
    "split_keywords": [
        "signal",
        "slot"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a51e989f2e12f3c415f59fd83d5e7d39da417e6d0bd97a449feec7c0711baca1",
                "md5": "47776215c093067b1d5383d1dbb349f1",
                "sha256": "64da1d89b3467c239af317779b237e7116b6f2b637ff29cd5226b59308d320e5"
            },
            "downloads": -1,
            "filename": "signalslot-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "47776215c093067b1d5383d1dbb349f1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.4",
            "size": 8882,
            "upload_time": "2023-05-30T13:20:03",
            "upload_time_iso_8601": "2023-05-30T13:20:03.327454Z",
            "url": "https://files.pythonhosted.org/packages/a5/1e/989f2e12f3c415f59fd83d5e7d39da417e6d0bd97a449feec7c0711baca1/signalslot-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-30 13:20:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "numergy",
    "github_project": "signalslot",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "test_requirements": [],
    "tox": true,
    "lcname": "signalslot"
}
        
Elapsed time: 1.29425s