aiomonitor


Nameaiomonitor JSON
Version 0.7.0 PyPI version JSON
download
home_page
SummaryAdds monitor and Python REPL capabilities for asyncio applications
upload_time2023-12-21 09:18:07
maintainerJoongi Kim
docs_urlNone
authorNikolay Novik
requires_python>=3.8
licenseApache-2.0
keywords asyncio aiohttp monitor debugging utility devtool
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            aiomonitor
==========

.. image:: https://github.com/aio-libs/aiomonitor/workflows/CI/badge.svg
   :target: https://github.com/aio-libs/aiomonitor/actions?query=workflow%3ACI
   :alt: GitHub Actions status for the main branch

.. image:: https://codecov.io/gh/aio-libs/aiomonitor/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/aio-libs/aiomonitor
   :alt: codecov.io status for the main branch

.. image:: https://badge.fury.io/py/aiomonitor.svg
   :target: https://pypi.org/project/aiomonitor
   :alt: Latest PyPI package version

.. image:: https://img.shields.io/pypi/dm/aiomonitor
   :target: https://pypistats.org/packages/aiomonitor
   :alt: Downloads count

.. image:: https://readthedocs.org/projects/aiomonitor-ng/badge/?version=latest
   :target: https://aiomonitor.aio-libs.org/en/latest/?badge=latest
   :alt: Documentation Status

**aiomonitor** is a module that adds monitor and cli capabilities
for asyncio_ applications. Idea and code were borrowed from curio_ project.
Task monitor that runs concurrently to the asyncio_ loop (or fast drop-in
replacement uvloop_) in a separate thread as result monitor will work even if
the event loop is blocked for some reason.

This library provides a python console using aioconsole_ module. It is possible
to execute asynchronous commands inside your running application. Extensible
with you own commands, in the style of the standard library's cmd_ module

.. image:: https://raw.githubusercontent.com/aio-libs/aiomonitor/main/docs/screenshot-ps-where-example.png
   :alt: An example to run the aiomonitor shell

Installation
------------
Installation process is simple, just::

    $ pip install aiomonitor


Example
-------
Monitor has context manager interface:

.. code:: python

    import aiomonitor

    async def main():
        loop = asyncio.get_running_loop()
        run_forever = loop.create_future()
        with aiomonitor.start_monitor(loop):
            await run_forever

    try:
        asyncio.run(main())
    except KeyboardInterrupt:
        pass

Now from separate terminal it is possible to connect to the application::

    $ telnet localhost 20101

or the included python client::

    $ python -m aiomonitor.cli


Tutorial
--------

Let's create a simple aiohttp_ application, and see how ``aiomonitor`` can
be integrated with it.

.. code:: python

    import asyncio

    import aiomonitor
    from aiohttp import web

    # Simple handler that returns response after 100s
    async def simple(request):
        print('Start sleeping')
        await asyncio.sleep(100)
        return web.Response(text="Simple answer")

    loop = asyncio.get_event_loop()
    # create application and register route
    app = web.Application()
    app.router.add_get('/simple', simple)

    # it is possible to pass a dictionary with local variables
    # to the python console environment
    host, port = "localhost", 8090
    locals_ = {"port": port, "host": host}
    # init monitor just before run_app
    with aiomonitor.start_monitor(loop=loop, locals=locals_):
        # run application with built-in aiohttp run_app function
        web.run_app(app, port=port, host=host, loop=loop)

Let's save this code in file ``simple_srv.py``, so we can run it with the following command::

    $ python simple_srv.py
    ======== Running on http://localhost:8090 ========
    (Press CTRL+C to quit)

And now one can connect to a running application from a separate terminal, with
the ``telnet`` command, and ``aiomonitor`` will immediately respond with prompt::

    $ telnet localhost 20101
    Asyncio Monitor: 1 tasks running
    Type help for commands
    monitor >>>

Now you can type commands, for instance, ``help``::

    monitor >>> help
    Usage: help [OPTIONS] COMMAND [ARGS]...

      To see the usage of each command, run them with "--help" option.

    Commands:
      cancel                  Cancel an indicated task
      console                 Switch to async Python REPL
      exit (q,quit)           Leave the monitor client session
      help (?,h)              Show the list of commands
      ps (p)                  Show task table
      ps-terminated (pst,pt)  List recently terminated/cancelled tasks
      signal                  Send a Unix signal
      stacktrace (st,stack)   Print a stack trace from the event loop thread
      where (w)               Show stack frames and the task creation chain of a task
      where-terminated (wt)   Show stack frames and the termination/cancellation chain of a task

``aiomonitor`` also supports async python console inside a running event loop
so you can explore the state of your application::

    monitor >>> console
    Python 3.10.7 (main, Sep  9 2022, 12:31:20) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    ---
    This console is running in an asyncio event loop.
    It allows you to wait for coroutines using the 'await' syntax.
    Try: await asyncio.sleep(1, result=3)
    ---
    >>> await asyncio.sleep(1, result=3)
    3
    >>>

To leave the console type ``exit()`` or press Ctrl+D::

    >>> exit()

    ✓ The console session is closed.
    monitor >>>

Extension
---------

Additional console variables
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

You may add more variables that can be directly referenced in the ``console`` command.
Refer `the console-variables example code <https://github.com/aio-libs/aiomonitor/tree/main/examples/console-variables.py>`_

Custom console commands
~~~~~~~~~~~~~~~~~~~~~~~

``aiomonitor`` is very easy to extend with your own console commands.
Refer `the extension example code <https://github.com/aio-libs/aiomonitor/tree/main/examples/extension.py>`_

Requirements
------------

* Python_ 3.8+ (3.10.7+ recommended)
* aioconsole_
* Click_
* prompt_toolkit_
* uvloop_ (optional)


.. _PEP492: https://www.python.org/dev/peps/pep-0492/
.. _Python: https://www.python.org
.. _aioconsole: https://github.com/vxgmichel/aioconsole
.. _aiohttp: https://github.com/aio-libs/aiohttp
.. _asyncio: http://docs.python.org/3/library/asyncio.html
.. _Click: https://click.palletsprojects.com
.. _curio: https://github.com/dabeaz/curio
.. _prompt_toolkit: https://python-prompt-toolkit.readthedocs.io
.. _uvloop: https://github.com/MagicStack/uvloop
.. _cmd: http://docs.python.org/3/library/cmd.html

CHANGES
=======

.. towncrier release notes start

0.7.0 (2023-12-21)
---------------------------------

- Overhauled the documentation
  (`#393 <https://github.com/aio-libs/aiomonitor/issues/393>`_)

- Adopted ruff to replace black, flake8 and isort
  (`#391 <https://github.com/aio-libs/aiomonitor/issues/391>`_)

- Added a new demo example to show various features of aiomonitor, especially using the GUI (also for PyCon APAC 2023 talk)
  (`#385 <https://github.com/aio-libs/aiomonitor/issues/385>`_)

- Relaxed our direct dependnecy version range of aiohttp ("3.8.5 only" to "3.8.5 and higher") to enable installation on Python 3.12
  (`#389 <https://github.com/aio-libs/aiomonitor/issues/389>`_)

- Updated the README example to conform with the latest API and convention
  (`#383 <https://github.com/aio-libs/aiomonitor/issues/383>`_)


0.6.0 (2023-08-27)
------------------

- Add the web-based monitoring user interface to list, inspect, and cancel running/terminated tasks, with refactoring the monitor business logic and presentation layers (`termui` and `webui`)
  (`#84 <https://github.com/aio-libs/aiomonitor/issues/84>`_)

- Replace the default port numbers for the terminal UI, the web UI, and the console access (50101, 50201, 50102 -> 20101, 20102, 20103 respectively)
  (`#374 <https://github.com/aio-libs/aiomonitor/issues/374>`_)

- Adopt towncrier to auto-generate the changelog
  (`#375 <https://github.com/aio-libs/aiomonitor/issues/375>`_)


0.5.0 (2023-07-21)
------------------

* Fix a regression in Python 3.10 due to #10 (`#11 <https://github.com/aio-libs/aiomonitor/issues/11>`_)

* Support Python 3.11 properly by allowing the optional (`name` and `context` kwargs passed to `asyncio.create_task()` in the hooked task factory function `#10 <https://github.com/aio-libs/aiomonitor/issues/10>`_)

* Update development dependencies

* Selective persistent termination logs (`#9 <https://github.com/aio-libs/aiomonitor/issues/9>`_)

* Implement cancellation chain tracker (`#8 <https://github.com/aio-libs/aiomonitor/issues/8>`_)

* Trigger auto-completion only when Tab is pressed

* Support auto-completion of commands and arguments (`#7 <https://github.com/aio-libs/aiomonitor/issues/7>`_)

* Add missing explicit dependency to Click

* Promote `console_locals` as public attr

* Reimplement console command (`#6 <https://github.com/aio-libs/aiomonitor/issues/6>`_)

* Migrate to Click-based command line interface (`#5 <https://github.com/aio-libs/aiomonitor/issues/5>`_)

* Adopt (`prompt_toolkit` and support concurrent clients `#4 <https://github.com/aio-libs/aiomonitor/issues/4>`_)

* Show the total number of tasks when executing (`ps` `#3 <https://github.com/aio-libs/aiomonitor/issues/3>`_)

* Apply black, isort, mypy, flake8 and automate CI workflows using GitHub Actions

* Fix the task creation location in the 'ps' command output

* Remove loop=loop from all asynchronous calls to support newer Python versions (`#329 <https://github.com/aio-libs/aiomonitor/issues/329>`_)

* Added the task creation stack chain display to the 'where' command by setting a custom task factory (`#1 <https://github.com/aio-libs/aiomonitor/issues/1>`_)

These are the backported changes from [aiomonitor-ng](https://github.com/achimnol/aiomonitor-ng).
As the version bumps have gone far away in the fork, all those extra releases are squashed into the v0.5.0 release.


0.4.5 (2019-11-03)
------------------

* Fixed endless loop on EOF (thanks @apatrushev)


0.4.4 (2019-03-23)
------------------

* Simplified python console start end #175

* Added python 3.7 compatibility #176


0.4.3 (2019-02-02)
------------------

* Reworked console server start/close logic #169


0.4.2 (2019-01-13)
------------------

* Fixed issue with type annotations from 0.4.1 release #164


0.4.1 (2019-01-10)
------------------

* Fixed Python 3.5 support #161 (thanks @bmerry)


0.4.0 (2019-01-04)
------------------

* Added support for custom commands #133 (thanks @yggdr)

* Fixed OptLocals being passed as the default value for "locals" #122 (thanks @agronholm)

* Added an API inspired by the standard library's cmd module #135 (thanks @yggdr)

* Correctly report the port running aioconsole #124 (thanks @bmerry)


0.3.1 (2018-07-03)
------------------

* Added the stacktrace command #120 (thanks @agronholm)


0.3.0 (2017-09-08)
------------------

* Added _locals_ parameter for passing environment to python REPL


0.2.1 (2016-01-03)
------------------

* Fixed import in telnet cli in #12 (thanks @hellysmile)


0.2.0 (2016-01-01)
------------------

* Added basic documentation

* Most of methods of Monitor class are not not private api


0.1.0 (2016-12-14)
------------------

* Added missed LICENSE file

* Updated API, added start_monitor() function


0.0.3 (2016-12-11)
------------------

* Fixed README.rst


0.0.2 (2016-12-11)
------------------

* Tests more stable now

* Added simple tutorial to README.rst


0.0.1 (2016-12-10)
------------------

* Initial release.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "aiomonitor",
    "maintainer": "Joongi Kim",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "me@daybreaker.info",
    "keywords": "asyncio,aiohttp,monitor,debugging,utility,devtool",
    "author": "Nikolay Novik",
    "author_email": "nickolainovik@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/50/30/1d903b716489c2b5d0a92baccf172f972e97c2de94d4ea41c154287e9b60/aiomonitor-0.7.0.tar.gz",
    "platform": "POSIX",
    "description": "aiomonitor\n==========\n\n.. image:: https://github.com/aio-libs/aiomonitor/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/aiomonitor/actions?query=workflow%3ACI\n   :alt: GitHub Actions status for the main branch\n\n.. image:: https://codecov.io/gh/aio-libs/aiomonitor/branch/main/graph/badge.svg\n   :target: https://codecov.io/gh/aio-libs/aiomonitor\n   :alt: codecov.io status for the main branch\n\n.. image:: https://badge.fury.io/py/aiomonitor.svg\n   :target: https://pypi.org/project/aiomonitor\n   :alt: Latest PyPI package version\n\n.. image:: https://img.shields.io/pypi/dm/aiomonitor\n   :target: https://pypistats.org/packages/aiomonitor\n   :alt: Downloads count\n\n.. image:: https://readthedocs.org/projects/aiomonitor-ng/badge/?version=latest\n   :target: https://aiomonitor.aio-libs.org/en/latest/?badge=latest\n   :alt: Documentation Status\n\n**aiomonitor** is a module that adds monitor and cli capabilities\nfor asyncio_ applications. Idea and code were borrowed from curio_ project.\nTask monitor that runs concurrently to the asyncio_ loop (or fast drop-in\nreplacement uvloop_) in a separate thread as result monitor will work even if\nthe event loop is blocked for some reason.\n\nThis library provides a python console using aioconsole_ module. It is possible\nto execute asynchronous commands inside your running application. Extensible\nwith you own commands, in the style of the standard library's cmd_ module\n\n.. image:: https://raw.githubusercontent.com/aio-libs/aiomonitor/main/docs/screenshot-ps-where-example.png\n   :alt: An example to run the aiomonitor shell\n\nInstallation\n------------\nInstallation process is simple, just::\n\n    $ pip install aiomonitor\n\n\nExample\n-------\nMonitor has context manager interface:\n\n.. code:: python\n\n    import aiomonitor\n\n    async def main():\n        loop = asyncio.get_running_loop()\n        run_forever = loop.create_future()\n        with aiomonitor.start_monitor(loop):\n            await run_forever\n\n    try:\n        asyncio.run(main())\n    except KeyboardInterrupt:\n        pass\n\nNow from separate terminal it is possible to connect to the application::\n\n    $ telnet localhost 20101\n\nor the included python client::\n\n    $ python -m aiomonitor.cli\n\n\nTutorial\n--------\n\nLet's create a simple aiohttp_ application, and see how ``aiomonitor`` can\nbe integrated with it.\n\n.. code:: python\n\n    import asyncio\n\n    import aiomonitor\n    from aiohttp import web\n\n    # Simple handler that returns response after 100s\n    async def simple(request):\n        print('Start sleeping')\n        await asyncio.sleep(100)\n        return web.Response(text=\"Simple answer\")\n\n    loop = asyncio.get_event_loop()\n    # create application and register route\n    app = web.Application()\n    app.router.add_get('/simple', simple)\n\n    # it is possible to pass a dictionary with local variables\n    # to the python console environment\n    host, port = \"localhost\", 8090\n    locals_ = {\"port\": port, \"host\": host}\n    # init monitor just before run_app\n    with aiomonitor.start_monitor(loop=loop, locals=locals_):\n        # run application with built-in aiohttp run_app function\n        web.run_app(app, port=port, host=host, loop=loop)\n\nLet's save this code in file ``simple_srv.py``, so we can run it with the following command::\n\n    $ python simple_srv.py\n    ======== Running on http://localhost:8090 ========\n    (Press CTRL+C to quit)\n\nAnd now one can connect to a running application from a separate terminal, with\nthe ``telnet`` command, and ``aiomonitor`` will immediately respond with prompt::\n\n    $ telnet localhost 20101\n    Asyncio Monitor: 1 tasks running\n    Type help for commands\n    monitor >>>\n\nNow you can type commands, for instance, ``help``::\n\n    monitor >>> help\n    Usage: help [OPTIONS] COMMAND [ARGS]...\n\n      To see the usage of each command, run them with \"--help\" option.\n\n    Commands:\n      cancel                  Cancel an indicated task\n      console                 Switch to async Python REPL\n      exit (q,quit)           Leave the monitor client session\n      help (?,h)              Show the list of commands\n      ps (p)                  Show task table\n      ps-terminated (pst,pt)  List recently terminated/cancelled tasks\n      signal                  Send a Unix signal\n      stacktrace (st,stack)   Print a stack trace from the event loop thread\n      where (w)               Show stack frames and the task creation chain of a task\n      where-terminated (wt)   Show stack frames and the termination/cancellation chain of a task\n\n``aiomonitor`` also supports async python console inside a running event loop\nso you can explore the state of your application::\n\n    monitor >>> console\n    Python 3.10.7 (main, Sep  9 2022, 12:31:20) [Clang 13.1.6 (clang-1316.0.21.2.5)] on darwin\n    Type \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n    ---\n    This console is running in an asyncio event loop.\n    It allows you to wait for coroutines using the 'await' syntax.\n    Try: await asyncio.sleep(1, result=3)\n    ---\n    >>> await asyncio.sleep(1, result=3)\n    3\n    >>>\n\nTo leave the console type ``exit()`` or press Ctrl+D::\n\n    >>> exit()\n\n    \u2713 The console session is closed.\n    monitor >>>\n\nExtension\n---------\n\nAdditional console variables\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nYou may add more variables that can be directly referenced in the ``console`` command.\nRefer `the console-variables example code <https://github.com/aio-libs/aiomonitor/tree/main/examples/console-variables.py>`_\n\nCustom console commands\n~~~~~~~~~~~~~~~~~~~~~~~\n\n``aiomonitor`` is very easy to extend with your own console commands.\nRefer `the extension example code <https://github.com/aio-libs/aiomonitor/tree/main/examples/extension.py>`_\n\nRequirements\n------------\n\n* Python_ 3.8+ (3.10.7+ recommended)\n* aioconsole_\n* Click_\n* prompt_toolkit_\n* uvloop_ (optional)\n\n\n.. _PEP492: https://www.python.org/dev/peps/pep-0492/\n.. _Python: https://www.python.org\n.. _aioconsole: https://github.com/vxgmichel/aioconsole\n.. _aiohttp: https://github.com/aio-libs/aiohttp\n.. _asyncio: http://docs.python.org/3/library/asyncio.html\n.. _Click: https://click.palletsprojects.com\n.. _curio: https://github.com/dabeaz/curio\n.. _prompt_toolkit: https://python-prompt-toolkit.readthedocs.io\n.. _uvloop: https://github.com/MagicStack/uvloop\n.. _cmd: http://docs.python.org/3/library/cmd.html\n\nCHANGES\n=======\n\n.. towncrier release notes start\n\n0.7.0 (2023-12-21)\n---------------------------------\n\n- Overhauled the documentation\n  (`#393 <https://github.com/aio-libs/aiomonitor/issues/393>`_)\n\n- Adopted ruff to replace black, flake8 and isort\n  (`#391 <https://github.com/aio-libs/aiomonitor/issues/391>`_)\n\n- Added a new demo example to show various features of aiomonitor, especially using the GUI (also for PyCon APAC 2023 talk)\n  (`#385 <https://github.com/aio-libs/aiomonitor/issues/385>`_)\n\n- Relaxed our direct dependnecy version range of aiohttp (\"3.8.5 only\" to \"3.8.5 and higher\") to enable installation on Python 3.12\n  (`#389 <https://github.com/aio-libs/aiomonitor/issues/389>`_)\n\n- Updated the README example to conform with the latest API and convention\n  (`#383 <https://github.com/aio-libs/aiomonitor/issues/383>`_)\n\n\n0.6.0 (2023-08-27)\n------------------\n\n- Add the web-based monitoring user interface to list, inspect, and cancel running/terminated tasks, with refactoring the monitor business logic and presentation layers (`termui` and `webui`)\n  (`#84 <https://github.com/aio-libs/aiomonitor/issues/84>`_)\n\n- Replace the default port numbers for the terminal UI, the web UI, and the console access (50101, 50201, 50102 -> 20101, 20102, 20103 respectively)\n  (`#374 <https://github.com/aio-libs/aiomonitor/issues/374>`_)\n\n- Adopt towncrier to auto-generate the changelog\n  (`#375 <https://github.com/aio-libs/aiomonitor/issues/375>`_)\n\n\n0.5.0 (2023-07-21)\n------------------\n\n* Fix a regression in Python 3.10 due to #10 (`#11 <https://github.com/aio-libs/aiomonitor/issues/11>`_)\n\n* Support Python 3.11 properly by allowing the optional (`name` and `context` kwargs passed to `asyncio.create_task()` in the hooked task factory function `#10 <https://github.com/aio-libs/aiomonitor/issues/10>`_)\n\n* Update development dependencies\n\n* Selective persistent termination logs (`#9 <https://github.com/aio-libs/aiomonitor/issues/9>`_)\n\n* Implement cancellation chain tracker (`#8 <https://github.com/aio-libs/aiomonitor/issues/8>`_)\n\n* Trigger auto-completion only when Tab is pressed\n\n* Support auto-completion of commands and arguments (`#7 <https://github.com/aio-libs/aiomonitor/issues/7>`_)\n\n* Add missing explicit dependency to Click\n\n* Promote `console_locals` as public attr\n\n* Reimplement console command (`#6 <https://github.com/aio-libs/aiomonitor/issues/6>`_)\n\n* Migrate to Click-based command line interface (`#5 <https://github.com/aio-libs/aiomonitor/issues/5>`_)\n\n* Adopt (`prompt_toolkit` and support concurrent clients `#4 <https://github.com/aio-libs/aiomonitor/issues/4>`_)\n\n* Show the total number of tasks when executing (`ps` `#3 <https://github.com/aio-libs/aiomonitor/issues/3>`_)\n\n* Apply black, isort, mypy, flake8 and automate CI workflows using GitHub Actions\n\n* Fix the task creation location in the 'ps' command output\n\n* Remove loop=loop from all asynchronous calls to support newer Python versions (`#329 <https://github.com/aio-libs/aiomonitor/issues/329>`_)\n\n* Added the task creation stack chain display to the 'where' command by setting a custom task factory (`#1 <https://github.com/aio-libs/aiomonitor/issues/1>`_)\n\nThese are the backported changes from [aiomonitor-ng](https://github.com/achimnol/aiomonitor-ng).\nAs the version bumps have gone far away in the fork, all those extra releases are squashed into the v0.5.0 release.\n\n\n0.4.5 (2019-11-03)\n------------------\n\n* Fixed endless loop on EOF (thanks @apatrushev)\n\n\n0.4.4 (2019-03-23)\n------------------\n\n* Simplified python console start end #175\n\n* Added python 3.7 compatibility #176\n\n\n0.4.3 (2019-02-02)\n------------------\n\n* Reworked console server start/close logic #169\n\n\n0.4.2 (2019-01-13)\n------------------\n\n* Fixed issue with type annotations from 0.4.1 release #164\n\n\n0.4.1 (2019-01-10)\n------------------\n\n* Fixed Python 3.5 support #161 (thanks @bmerry)\n\n\n0.4.0 (2019-01-04)\n------------------\n\n* Added support for custom commands #133 (thanks @yggdr)\n\n* Fixed OptLocals being passed as the default value for \"locals\" #122 (thanks @agronholm)\n\n* Added an API inspired by the standard library's cmd module #135 (thanks @yggdr)\n\n* Correctly report the port running aioconsole #124 (thanks @bmerry)\n\n\n0.3.1 (2018-07-03)\n------------------\n\n* Added the stacktrace command #120 (thanks @agronholm)\n\n\n0.3.0 (2017-09-08)\n------------------\n\n* Added _locals_ parameter for passing environment to python REPL\n\n\n0.2.1 (2016-01-03)\n------------------\n\n* Fixed import in telnet cli in #12 (thanks @hellysmile)\n\n\n0.2.0 (2016-01-01)\n------------------\n\n* Added basic documentation\n\n* Most of methods of Monitor class are not not private api\n\n\n0.1.0 (2016-12-14)\n------------------\n\n* Added missed LICENSE file\n\n* Updated API, added start_monitor() function\n\n\n0.0.3 (2016-12-11)\n------------------\n\n* Fixed README.rst\n\n\n0.0.2 (2016-12-11)\n------------------\n\n* Tests more stable now\n\n* Added simple tutorial to README.rst\n\n\n0.0.1 (2016-12-10)\n------------------\n\n* Initial release.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Adds monitor and Python REPL capabilities for asyncio applications",
    "version": "0.7.0",
    "project_urls": {
        "Changelog": "https://github.com/aio-libs/aiomonitor/blob/main/CHANGES.rst",
        "Chat": "https://matrix.to/#/!aio-libs:matrix.org",
        "Documentation": "https://aiomonitor.readthedocs.io",
        "Download": "https://pypi.org/project/aiomonitor",
        "Homepage": "https://github.com/aio-libs/aiomonitor",
        "Issues": "https://github.com/aio-libs/aiomonitor/issues",
        "Repository": "https://github.com/aio-libs/aiomonitor"
    },
    "split_keywords": [
        "asyncio",
        "aiohttp",
        "monitor",
        "debugging",
        "utility",
        "devtool"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18d91fc7a8e4c0fbe61b2efea180d64636a66b66a636813f930d8be6be715683",
                "md5": "afdf5e454bd2f62643bcd60fe688735e",
                "sha256": "4ac9314b09f237571024e5a08473db52cf7463685f7b8d708b5d2adf5bfeb591"
            },
            "downloads": -1,
            "filename": "aiomonitor-0.7.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "afdf5e454bd2f62643bcd60fe688735e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 189550,
            "upload_time": "2023-12-21T09:18:04",
            "upload_time_iso_8601": "2023-12-21T09:18:04.703211Z",
            "url": "https://files.pythonhosted.org/packages/18/d9/1fc7a8e4c0fbe61b2efea180d64636a66b66a636813f930d8be6be715683/aiomonitor-0.7.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50301d903b716489c2b5d0a92baccf172f972e97c2de94d4ea41c154287e9b60",
                "md5": "75fc8f84c0ff385931d76c46265cfc0d",
                "sha256": "109b9ad309a44c0c5db1219d106f4062615151ad3f0e288a0c104fbb004d0398"
            },
            "downloads": -1,
            "filename": "aiomonitor-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "75fc8f84c0ff385931d76c46265cfc0d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 2867878,
            "upload_time": "2023-12-21T09:18:07",
            "upload_time_iso_8601": "2023-12-21T09:18:07.428537Z",
            "url": "https://files.pythonhosted.org/packages/50/30/1d903b716489c2b5d0a92baccf172f972e97c2de94d4ea41c154287e9b60/aiomonitor-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-21 09:18:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aio-libs",
    "github_project": "aiomonitor",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "aiomonitor"
}
        
Elapsed time: 0.15858s