{ "info": { "author": "Bryerton Shaw", "author_email": "bryerton@triumf.ca", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: System :: Networking" ], "description": ".. image:: https://travis-ci.org/bryerton/esper-tool.svg?branch=master\n :target: https://travis-ci.org/bryerton/esper-tool\n\n==========\nESPER TOOL\n==========\n\nOverview\n--------\nA python-based command line utility for accessing a device running the ESPER web service. Works with Python 2 and 3. \n\nThe tool allows for the reading and writing of ESPER variables via the command line.\n\nThe available subcommands are:\n\n- `interactive`_\n- `read`_\n- `write`_\n- `upload`_\n- `download`_\n\nFor a list of interactive shell commands type `help` in the interactive shell prompt\n\nInstallation\n------------\nThe recommended installation method is via pip\n\n To install:\n `pip install esper-tool`\n To upgrade:\n `pip install -U esper-tool`\n To run it locally from the github source:\n `python -m esper_tool`\n\nInteractive\n-----------\n Command:\n `esper-tool interactive [-h] [-u USER] [-p PASS] [-t TIMEOUT] [mid]`\n\n Purpose:\n Connects to an esper service located at `url` and opens an interactive shell \n \n Options:\n `-h`\n \n `--help`\n Print out help for this subcommand \n \n `-u USER` or `--user USER`\n User to use for HTTP basic authentication\n \n `-p PASS` or `--password PASS`\n Password to use for HTTP basic authentication. If `-u` is specified, but `-p` is not, the user will be prompted for a password\n\n `-t TIMEOUT` or `--timeout TIMEOUT`\n Time to wait for response before timing out. Can be given in fractions of a second. Defaults to 5 seconds.\n\n `url`\n Location of ESPER web service given in standard web URL format. If the port is excluded, it defaults to 80\n\n `mid`\n Module ID or MID to start in. May be given as numerical value, or module key. \n\nRead\n----\n Command:\n `esper-tool read [-h] [-u USER] [-p PASS] [-t TIMEOUT] [-o OFFSET] [-l LEN] `\n \n Purpose:\n Read an ESPER variable's data, located at URL. Return value is JSON data type\n \n Options:\n `-h`\n \n `--help`\n Print out help for this subcommand\n\n `-u USER` or `--user USER`\n User to use for HTTP basic authentication\n \n `-p PASS` or `--password PASS`\n Password to use for HTTP basic authentication. If `-u` is specified, but `-p` is not, the user will be prompted for a password\n\n `-t TIMEOUT` or `--timeout TIMEOUT`\n Time to wait for response before timing out. Can be given in fractions of a second. Defaults to 5 seconds.\n\n `-o OFFSET` or `--offset OFFSET`\n Element to start read at within ESPER variable. Defaults to first element (0)\n\n `-l LEN` or `--len LEN`\n Number of elements to read\n\n `url`\n Location of ESPER web service given in standard web URL format. If the port is excluded, it defaults to 80\n\n `mid`\n Module ID or MID. May be given as numerical value, or module key. \n\n `vid`\n Variable ID or VID. May be given as numerical value, or variable key. \n\n Examples:\n `esper-tool read -o 1 -l 32 localhost:8080 0 0`\n Reads `32` elements of variable `0` starting at offset `1`, at` localhost:8080` module `0`, variable `0`\n\nWrite\n-----\n Command:\n `esper-tool write [-h] [-u USER] [-p PASS] [-t TIMEOUT] [-d DATA] [-f FILE] [-o OFFSET] `\n \n Purpose:\n Writes JSON data to an ESPER variable. May write the full array or a slice. Data can be specified on the command line or by a file\n \n Options:\n `-h`\n \n `--help`\n Print out help for this subcommand \n\n `-u USER` or `--user USER`\n User to use for HTTP basic authentication\n \n `-p PASS` or `--password PASS`\n Password to use for HTTP basic authentication. If `-u` is specified, but `-p` is not, the user will be prompted for a password\n\n `-t TIMEOUT` or `--timeout TIMEOUT`\n Time to wait for response before timing out. Can be given in fractions of a second. Defaults to 5 seconds.\n\n `-d DATA` or `--data DATA`\n JSON data to write. May take the form of any standard JSON datatype. Datatype must be compatible with ESPER datatype of variable\n\n `-f FILE` or `--file FILE`\n File containing JSON data to be written to variable. Same as `-d` but data is written in FILE \n\n `-o OFFSET` or `--offset OFFSET`\n Element to start read at within ESPER variable. Defaults to first element (0)\n\n `url`\n Location of ESPER web service given in standard web URL format. If the port is excluded, it defaults to 80\n\n `mid`\n Module ID or MID. May be given as numerical value, or module key. \n\n `vid`\n Variable ID or VID. May be given as numerical value, or variable key. \n\n Examples:\n `esper-tool write -d 255 localhost 1 2`\n Writes the value `255` to module `1`, variable `2` at `localhost`\n\n `esper-tool write -d [0,2] -o 1 http://localhost:8080 mymodule myvar`\n Writes the array `[0,2]` to the variable `myvar` starting at the second element. The variable is located in the module `mymodule` on host `localhost:8080` \n\nUpload\n------\n\n Command:\n `esper-tool upload [-h] [-u USER] [-p PASS] [-t TIMEOUT] -f FILE [-r RETRY] `\n \n Purpose:\n Upload a binary file to an ESPER variable. Particularly useful for updates to large variable arrays, binary data must match binary format of ESPER variable, or data loaded will be erroneous. \n \n Options:\n `-h`\n \n `--help`\n Print out help for this subcommand \n\n `-u USER` or `--user USER`\n User to use for HTTP basic authentication\n \n `-p PASS` or `--password PASS`\n Password to use for HTTP basic authentication. If `-u` is specified, but `-p` is not, the user will be prompted for a password\n\n `-t TIMEOUT` or `--timeout TIMEOUT`\n Time to wait for response before timing out. Can be given in fractions of a second. Defaults to 5 seconds.\n\n `-f FILE` or `--file FILE`\n File containing binary data to be written to variable\n\n `-r RETRY` or `--retry RETRY`\n Number of times to retry if timeout occurs, can be useful if ESPER service connected to is slow to write to disk/flash\n \n `url`\n Location of ESPER web service given in standard web URL format. If the port is excluded, it defaults to 80\n\n `mid`\n Module ID or MID. May be given as numerical value, or module key. \n\n `vid`\n Variable ID or VID. May be given as numerical value, or variable key. \n\n Examples:\n `esper-tool upload -v --file ~/waveform.bin -r 3 http://localhost:80/ 5 waveform_replay`\n Uploads the contents of file `waveform.bin` to `localhost` module `5`, variable `waveform_replay`. It will retry `3` times in the event of failure\n\nDownload\n--------\n Command:\n `esper-tool download [-h] [-u USER] [-p PASS] [-t TIMEOUT] -f FILE [-r RETRY] `\n \n Purpose:\n Downloads variable data to a binary file.\n \n Options:\n `-h`\n \n `--help`\n Print out help for this subcommand \n\n `-u USER` or `--user USER`\n User to use for HTTP basic authentication\n \n `-p PASS` or `--password PASS`\n Password to use for HTTP basic authentication. If `-u` is specified, but `-p` is not, the user will be prompted for a password\n\n `-t TIMEOUT` or `--timeout TIMEOUT`\n Time to wait for response before timing out. Can be given in fractions of a second. Defaults to 5 seconds.\n\n `-f FILE` or `--file FILE`\n Location of file to write variable data to\n\n `-r RETRY` or `--retry RETRY`\n Number of times to retry if timeout occurs, can be useful if ESPER service connected to is slow to write to disk/flash\n \n `url`\n Location of ESPER web service given in standard web URL format. If the port is excluded, it defaults to 80\n\n `mid`\n Module ID or MID. May be given as numerical value, or module key. \n\n `vid`\n Variable ID or VID. May be given as numerical value, or variable key. \n\n Examples:\n `esper-tool download -v --file ~/waveform.bin -r 3 http://localhost:80/ 5 waveform_replay`\n Download the contents of file `localhost` module `5`, variable `waveform_replay` to `waveform.bin`. It will retry `3` times in the event of failure", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bryerton/esper-tool", "keywords": "esper monitoring control experiments", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "esper-tool", "package_url": "https://pypi.org/project/esper-tool/", "platform": "", "project_url": "https://pypi.org/project/esper-tool/", "project_urls": { "Homepage": "https://github.com/bryerton/esper-tool" }, "release_url": "https://pypi.org/project/esper-tool/1.2.26/", "requires_dist": null, "requires_python": "", "summary": "Command line tool for accessing ESPER", "version": "1.2.26" }, "last_serial": 4751986, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "668f0b1319827d700486e6f5b3f613eb", "sha256": "104c7762e755ca7e3ad6dfb0f18c1be8dcf593eb110459ea772982505e970ae0" }, "downloads": -1, "filename": "esper_tool-1.0.0.tar.gz", "has_sig": false, "md5_digest": "668f0b1319827d700486e6f5b3f613eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5285, "upload_time": "2017-09-19T02:54:12", "url": "https://files.pythonhosted.org/packages/48/b0/e669c099d56c52ce687bacf55491555c2fe1833bd5ab9a639f8810efee73/esper_tool-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "84e7c14083666b1ba1d5922ac2976e66", "sha256": "456dbaaa5770f32854955914b50a8efd2c8f067c24d4b402ec125f8824a0703e" }, "downloads": -1, "filename": "esper_tool-1.0.1.tar.gz", "has_sig": false, "md5_digest": "84e7c14083666b1ba1d5922ac2976e66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5243, "upload_time": "2017-09-19T03:04:27", "url": "https://files.pythonhosted.org/packages/86/2b/ddad5e37361fdafddfd601032c795ae1aed2dfb07e8a66072c84f58c63ee/esper_tool-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "d12a30e4a5ea1cce2a0f1ebd138b9ee6", "sha256": "b6df15e7f7319609e707fa5bfc07816358dbe26ea7f748e2e108b69b7fbefc8a" }, "downloads": -1, "filename": "esper_tool-1.0.2.tar.gz", "has_sig": false, "md5_digest": "d12a30e4a5ea1cce2a0f1ebd138b9ee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5246, "upload_time": "2017-09-19T03:09:43", "url": "https://files.pythonhosted.org/packages/28/17/e3f1147d600f8cdbcac1cd7bbf6cab8562fb837d311f8978b596169b604b/esper_tool-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "aeda1937b1b35563123ee9d5fe1250e6", "sha256": "2d76b3200d4dcc0c22ec3248e09a74102a427099e649aa50afa98dd345d4a2b0" }, "downloads": -1, "filename": "esper_tool-1.0.3.tar.gz", "has_sig": false, "md5_digest": "aeda1937b1b35563123ee9d5fe1250e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5237, "upload_time": "2017-09-19T03:15:37", "url": "https://files.pythonhosted.org/packages/12/7e/69c6572fc236c4a69e1cb8cfa2243716e6514a2808ee8dcad1f560091b01/esper_tool-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "60db7aa803a16559c3d9d0c39ec22858", "sha256": "d9b9b858b3eb0e327802ef4c531175848221cba2f350426e26228ed6989831b7" }, "downloads": -1, "filename": "esper_tool-1.0.4.tar.gz", "has_sig": false, "md5_digest": "60db7aa803a16559c3d9d0c39ec22858", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5235, "upload_time": "2017-09-19T03:16:33", "url": "https://files.pythonhosted.org/packages/36/73/4de65a2129461147cbfbdff2a8dce6898f534c514014b0874843eb47c88d/esper_tool-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "9df0a7dc21837335d145e98cf3bdcc84", "sha256": "d74b7f7d3ae767871bf9d433890e92cbeeda0d25608c5dca0f43d047ae58b090" }, "downloads": -1, "filename": "esper_tool-1.0.5.tar.gz", "has_sig": false, "md5_digest": "9df0a7dc21837335d145e98cf3bdcc84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5237, "upload_time": "2017-09-19T03:16:59", "url": "https://files.pythonhosted.org/packages/f8/6f/0518287b4752fc08483b3b0c047cadda0e0115790ad32b7c9bde09f48be3/esper_tool-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "b791c28a901ae1bacaeb86d75683ef41", "sha256": "e22bdab5f7adaca6875487718f08cb44a657fc9ca4538c81e807e57cf8a3c168" }, "downloads": -1, "filename": "esper_tool-1.0.6.tar.gz", "has_sig": false, "md5_digest": "b791c28a901ae1bacaeb86d75683ef41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5216, "upload_time": "2017-09-19T03:29:53", "url": "https://files.pythonhosted.org/packages/3c/0f/a266647bf812bc6668bba57124ad17614986f796355a9ebbfbf56793d493/esper_tool-1.0.6.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "3ec16a44bc5f9fad9fcab2ee7fc5a1c2", "sha256": "0af5a7e2c6eb8a7b9ee7d41c1d0d1c2681d86b72a4e08cd9315bcaee04476fa4" }, "downloads": -1, "filename": "esper_tool-1.0.7.tar.gz", "has_sig": false, "md5_digest": "3ec16a44bc5f9fad9fcab2ee7fc5a1c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5794, "upload_time": "2017-09-20T18:03:40", "url": "https://files.pythonhosted.org/packages/a7/a0/57785dd61068b45992476c5fc65809984ceadb79cc18a93b10321bbfe5e4/esper_tool-1.0.7.tar.gz" } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "bb1e8b4aed7fa9024f1784c62a7bf0c5", "sha256": "305b117fd76380399beaa104b06480d85457c8028c0b1b775cda147a7083fa00" }, "downloads": -1, "filename": "esper_tool-1.0.8.tar.gz", "has_sig": false, "md5_digest": "bb1e8b4aed7fa9024f1784c62a7bf0c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5919, "upload_time": "2017-09-20T18:48:03", "url": "https://files.pythonhosted.org/packages/7b/68/17f9360d578c5728550e733e46e6257f98ef0413c1dbe41d6e52277e94e8/esper_tool-1.0.8.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4ddd6eff645f37ee547153959b9409b9", "sha256": "b6aeec9aadd3ce7e4d337b945a6ebe8c06d1f67d8ec51dc39647d810f9c2e00e" }, "downloads": -1, "filename": "esper_tool-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4ddd6eff645f37ee547153959b9409b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8632, "upload_time": "2017-09-23T21:04:02", "url": "https://files.pythonhosted.org/packages/eb/0b/27f113cb3b565c9224c58272cded28ff0f6a90fda88ff4e1123ea5dc5ad4/esper_tool-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "e6d3f43c4b8beea2c3a17caf6e99d66b", "sha256": "9585cab12a13dbd7ad8c7280c9de4ad55e92e68fb7dfb69012b54ad8808e2a22" }, "downloads": -1, "filename": "esper_tool-1.2.0.tar.gz", "has_sig": false, "md5_digest": "e6d3f43c4b8beea2c3a17caf6e99d66b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9479, "upload_time": "2017-09-24T00:07:14", "url": "https://files.pythonhosted.org/packages/8f/2c/fe5b773ca21a236691cb1e279c2f74a821a1c571eef85f38d476e52c3dbf/esper_tool-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "bf0bc627f2e95cf5d6036d650034bf09", "sha256": "1cabc939208f5283f18578a2864cfa93daff3ee3229b7c4822153b77a961296f" }, "downloads": -1, "filename": "esper_tool-1.2.1.tar.gz", "has_sig": false, "md5_digest": "bf0bc627f2e95cf5d6036d650034bf09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9488, "upload_time": "2017-09-24T00:08:18", "url": "https://files.pythonhosted.org/packages/8a/93/46d269af85da4824a1b913c2f778e287464e849a24786b534e69ba6231fb/esper_tool-1.2.1.tar.gz" } ], "1.2.10": [ { "comment_text": "", "digests": { "md5": "c10a630c17a33d0abfa385ed95391ddc", "sha256": "7f78b26f4de05588b67187253955fbfb1316835b531c150bbbaa1e88f71e338c" }, "downloads": -1, "filename": "esper_tool-1.2.10.tar.gz", "has_sig": false, "md5_digest": "c10a630c17a33d0abfa385ed95391ddc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10890, "upload_time": "2017-09-26T17:23:44", "url": "https://files.pythonhosted.org/packages/78/05/71eb9c095907e4939a397febed1d91a4fdbab10975b225ec8b5b6d1dcc85/esper_tool-1.2.10.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "524eed076a3f1ceba37447c7cdb628d2", "sha256": "46cab459789e0f6911e9f0bddac986d0a741a4ad3e5cff2545e91c8f2908d845" }, "downloads": -1, "filename": "esper_tool-1.2.11.tar.gz", "has_sig": false, "md5_digest": "524eed076a3f1ceba37447c7cdb628d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11188, "upload_time": "2017-09-30T17:31:14", "url": "https://files.pythonhosted.org/packages/9c/1b/ec9a2f2e968ea5c59e028f402aba06605da47778609dcdd8ed7879ee15dd/esper_tool-1.2.11.tar.gz" } ], "1.2.12": [ { "comment_text": "", "digests": { "md5": "59c2398e853da9f675d295853e3e4c21", "sha256": "60bf96f559c25f20c5a8b0be7137982526ca9eacea41911575d6feb6784430ed" }, "downloads": -1, "filename": "esper-tool-1.2.12.tar.gz", "has_sig": false, "md5_digest": "59c2398e853da9f675d295853e3e4c21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11277, "upload_time": "2017-10-25T06:58:03", "url": "https://files.pythonhosted.org/packages/52/4a/e5ac59657b35a227fa61f9076a2a4bc67d6ef6d923bc85e0367efc734374/esper-tool-1.2.12.tar.gz" } ], "1.2.13": [ { "comment_text": "", "digests": { "md5": "8709a9e858898744fdec10a572061445", "sha256": "bac7d5b07e0e56bb94f2466655bc9e8bd52fcd3f64b30b9a8260485e8579f7be" }, "downloads": -1, "filename": "esper-tool-1.2.13.tar.gz", "has_sig": false, "md5_digest": "8709a9e858898744fdec10a572061445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11289, "upload_time": "2017-10-25T07:07:54", "url": "https://files.pythonhosted.org/packages/25/c9/63e744e886b4eb4e4e00034f6435176c8cea409c3890f58f946b2a91e1f4/esper-tool-1.2.13.tar.gz" } ], "1.2.14": [ { "comment_text": "", "digests": { "md5": "4bdb0ac6e8440a08cf5c182922de3ccd", "sha256": "15b5cf4576eff46974570e813da5bff881466ccff016b272a8286030a89f74db" }, "downloads": -1, "filename": "esper-tool-1.2.14.tar.gz", "has_sig": false, "md5_digest": "4bdb0ac6e8440a08cf5c182922de3ccd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11156, "upload_time": "2017-10-25T07:50:57", "url": "https://files.pythonhosted.org/packages/59/63/34f7ee3d9693108df121e793845aebb4fa02aec6f022fc35b8d11606ab90/esper-tool-1.2.14.tar.gz" } ], "1.2.15": [ { "comment_text": "", "digests": { "md5": "1af15dbd9d934262784bb328c9bd7592", "sha256": "8e5c3a9cc48e1d603841f539b31f8723842c2afc576bb9d1beae40fc8d8a4064" }, "downloads": -1, "filename": "esper-tool-1.2.15.tar.gz", "has_sig": false, "md5_digest": "1af15dbd9d934262784bb328c9bd7592", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12678, "upload_time": "2018-02-09T01:38:20", "url": "https://files.pythonhosted.org/packages/aa/d2/812c98062baa3ab881ddb637d91064d83b4602e5eabbc569b1c2eb230cce/esper-tool-1.2.15.tar.gz" } ], "1.2.16": [ { "comment_text": "", "digests": { "md5": "3d6b2b65f50071648c92c3711ddcda47", "sha256": "ccaff884b390c1baf180115df32d07faa3a1a8f63d6e61cfcb642b78692da295" }, "downloads": -1, "filename": "esper-tool-1.2.16.tar.gz", "has_sig": false, "md5_digest": "3d6b2b65f50071648c92c3711ddcda47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12684, "upload_time": "2018-02-09T01:45:01", "url": "https://files.pythonhosted.org/packages/1f/fa/971cee500e200d864c9ed003e723955a79eae8a600dfb124c5e6198c4fd9/esper-tool-1.2.16.tar.gz" } ], "1.2.17": [ { "comment_text": "", "digests": { "md5": "5025be7e995b54bf5c2727e44a454852", "sha256": "1492296a97e931eae803621d9b7d5f4fef2bd55686ccbb8fd3a02cd32ff2028e" }, "downloads": -1, "filename": "esper-tool-1.2.17.tar.gz", "has_sig": false, "md5_digest": "5025be7e995b54bf5c2727e44a454852", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12683, "upload_time": "2018-02-09T02:08:06", "url": "https://files.pythonhosted.org/packages/34/b2/a52a2de2e183c25fbb15819cf3f33bba705f9591360fae1c2d751b058ebe/esper-tool-1.2.17.tar.gz" } ], "1.2.18": [ { "comment_text": "", "digests": { "md5": "62b7c420ca3555b32d27af0b658e563c", "sha256": "35adadaab5e81f9fe2c95107aae2cba9faedd4b46d3155552211b32e8f7ee41d" }, "downloads": -1, "filename": "esper-tool-1.2.18.tar.gz", "has_sig": false, "md5_digest": "62b7c420ca3555b32d27af0b658e563c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12681, "upload_time": "2018-02-09T02:18:46", "url": "https://files.pythonhosted.org/packages/64/b6/2e890f7bb4a5959635502c32850e5b06b8ea3ebb2dea1755f9051b095c69/esper-tool-1.2.18.tar.gz" } ], "1.2.19": [ { "comment_text": "", "digests": { "md5": "7223ba7185e1bf68beb38e2fa7dd70a7", "sha256": "ffb6cdec18783c2818478cf265adad015c1a71789bce51c2c3aecb8bf0ffda96" }, "downloads": -1, "filename": "esper-tool-1.2.19.tar.gz", "has_sig": false, "md5_digest": "7223ba7185e1bf68beb38e2fa7dd70a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12735, "upload_time": "2018-03-16T22:00:41", "url": "https://files.pythonhosted.org/packages/dd/5c/90559b06a72f7783d10c0f1d812033f77b9f1eb2af8df0832b2047b12530/esper-tool-1.2.19.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "4a01564496d01f0ef9dafa1f9dad3f90", "sha256": "8b01b6eaa717da8a0bdde04f0c4ad5fd7dcc01e02a64557a079f45dfb2f7a206" }, "downloads": -1, "filename": "esper_tool-1.2.2.tar.gz", "has_sig": false, "md5_digest": "4a01564496d01f0ef9dafa1f9dad3f90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9479, "upload_time": "2017-09-24T00:18:05", "url": "https://files.pythonhosted.org/packages/e1/ae/b55840f1e23638abe5ac14b8a38987581f3429676d6d058a576b73742779/esper_tool-1.2.2.tar.gz" } ], "1.2.20": [ { "comment_text": "", "digests": { "md5": "31f13793f90fa3b4483d8f3276ec1cc0", "sha256": "004ee144b184e72aac9b01b80e2e0bde870e6d102d449c019e375f213da81fe5" }, "downloads": -1, "filename": "esper-tool-1.2.20.tar.gz", "has_sig": false, "md5_digest": "31f13793f90fa3b4483d8f3276ec1cc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12736, "upload_time": "2018-03-16T23:16:30", "url": "https://files.pythonhosted.org/packages/71/0f/c9031233ebe529f5f1f77c45f3f3ac58df51f9f47edc32d65b2166368ebe/esper-tool-1.2.20.tar.gz" } ], "1.2.21": [ { "comment_text": "", "digests": { "md5": "a6b39ef890b0bf57c877028022962604", "sha256": "abdd06ad169b345640bff0e1fa36c49017aa40659a3d301d42986d38cf16fdd9" }, "downloads": -1, "filename": "esper-tool-1.2.21.tar.gz", "has_sig": false, "md5_digest": "a6b39ef890b0bf57c877028022962604", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12741, "upload_time": "2018-07-09T21:37:49", "url": "https://files.pythonhosted.org/packages/6e/67/c1decee167294d96a16972b3cf7e1d0da30b49eaabe2bdc2d8dd6e698ce4/esper-tool-1.2.21.tar.gz" } ], "1.2.22": [ { "comment_text": "", "digests": { "md5": "b0918daa66e165a7ea3182cf804d3367", "sha256": "cb92480ea6de50188e01749de081e1a1f260dff119834a1a8f4974ea6749a2ee" }, "downloads": -1, "filename": "esper-tool-1.2.22.tar.gz", "has_sig": false, "md5_digest": "b0918daa66e165a7ea3182cf804d3367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13035, "upload_time": "2018-09-27T00:01:57", "url": "https://files.pythonhosted.org/packages/38/90/7b86469ef90441165ac670d382ee0ce9b6f67d3c83547953c008883c7f6d/esper-tool-1.2.22.tar.gz" } ], "1.2.23": [ { "comment_text": "", "digests": { "md5": "85ba9ec6d59db10a8d0b8efb9d83c45d", "sha256": "6e5746579862d06da7275546472ab740f53473c5bca164d651a51059478e5f9d" }, "downloads": -1, "filename": "esper-tool-1.2.23.tar.gz", "has_sig": false, "md5_digest": "85ba9ec6d59db10a8d0b8efb9d83c45d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13042, "upload_time": "2018-09-27T00:13:47", "url": "https://files.pythonhosted.org/packages/c4/58/7028673330dfb3acc1838dd8d4b7dd36e75b6334680800cd18ed2f0e666b/esper-tool-1.2.23.tar.gz" } ], "1.2.24": [ { "comment_text": "", "digests": { "md5": "cc66ad1658a485e75110751867e8dc44", "sha256": "8c37bde0b92ac0fb28aee6cbd4d13aa9c8ffdb4d2191a46e7b63c0cde56d3c19" }, "downloads": -1, "filename": "esper-tool-1.2.24.tar.gz", "has_sig": false, "md5_digest": "cc66ad1658a485e75110751867e8dc44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13103, "upload_time": "2018-09-27T00:23:07", "url": "https://files.pythonhosted.org/packages/a7/4d/22a07b6cd8a8a089a2c488a57918cee171de9d88bcbe2b61ac465fd6109c/esper-tool-1.2.24.tar.gz" } ], "1.2.25": [ { "comment_text": "", "digests": { "md5": "630587c049bdf9be78635e68fcb91ca2", "sha256": "3c831f693017fa024402616dd65ad91f203720bb10f2893fa72f0700a786037f" }, "downloads": -1, "filename": "esper-tool-1.2.25.tar.gz", "has_sig": false, "md5_digest": "630587c049bdf9be78635e68fcb91ca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14180, "upload_time": "2018-09-28T01:12:30", "url": "https://files.pythonhosted.org/packages/14/bd/d49f5b8310705bf93b7164a31d0cca60005218d782267177d8b89095bf62/esper-tool-1.2.25.tar.gz" } ], "1.2.26": [ { "comment_text": "", "digests": { "md5": "80e5342f12669ded18e9abac43306c1b", "sha256": "a917e83fcd4c300b9b66ab5a3e8e088feb761f47a02e5107d4b07333f0e577dd" }, "downloads": -1, "filename": "esper-tool-1.2.26.tar.gz", "has_sig": false, "md5_digest": "80e5342f12669ded18e9abac43306c1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14233, "upload_time": "2019-01-28T21:41:36", "url": "https://files.pythonhosted.org/packages/96/8a/7e6cd612c99a96e9750a9a5387f7a211620bab3d6e86d2d86346e664c836/esper-tool-1.2.26.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "f63eaa8075e57991f8e5ee365f9909b5", "sha256": "e29e78cc0bc76bd5a374dde61987852b707d57d558a58a3f49ae5de67a6110a6" }, "downloads": -1, "filename": "esper_tool-1.2.3.tar.gz", "has_sig": false, "md5_digest": "f63eaa8075e57991f8e5ee365f9909b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9957, "upload_time": "2017-09-24T00:35:31", "url": "https://files.pythonhosted.org/packages/64/f8/8c4aaf2237db8c72e385ffa8d5fd4ba32a234381c672a87b2b6b37299b58/esper_tool-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "d8cd0326cc9ddc64fca092d8ee636b5e", "sha256": "e5f63dc9b5f6993edb351e191803362a1bda8329f76a2d88f7555e693d3b6385" }, "downloads": -1, "filename": "esper_tool-1.2.4.tar.gz", "has_sig": false, "md5_digest": "d8cd0326cc9ddc64fca092d8ee636b5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9998, "upload_time": "2017-09-24T00:54:06", "url": "https://files.pythonhosted.org/packages/33/af/7559191d8fd97ce30757d67c809d0bfdc3747d337352eddf6af37ddd1761/esper_tool-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "b91d3d5aaae24da0b25968d3ed8eafcc", "sha256": "1f51593bb31f7e8d0ef44447b30193fea6ad19fadc789007f20b55e72125135c" }, "downloads": -1, "filename": "esper_tool-1.2.5.tar.gz", "has_sig": false, "md5_digest": "b91d3d5aaae24da0b25968d3ed8eafcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10009, "upload_time": "2017-09-24T01:04:57", "url": "https://files.pythonhosted.org/packages/27/58/dd9ea9a26387b5bf8f4008c32761ae9f6ec25bddc7221e2078ad33c00d1f/esper_tool-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "ae482700ae7f71e172fd0c959f24b1da", "sha256": "9e5846930f72e797f8aa93e5bf79523776f80a48aca55f08be07f0497d39ca11" }, "downloads": -1, "filename": "esper_tool-1.2.6.tar.gz", "has_sig": false, "md5_digest": "ae482700ae7f71e172fd0c959f24b1da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10522, "upload_time": "2017-09-25T01:52:15", "url": "https://files.pythonhosted.org/packages/69/54/b55084975ac3e3f2e933a55da9d76a638ade8f881bb89b763d7a4fa61aa1/esper_tool-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "82d8f94fa2298093ac7938e7e98a3990", "sha256": "baf292cd7d62600c98fab44172a9339d599617e78887d18ce7096b01e2a6e047" }, "downloads": -1, "filename": "esper_tool-1.2.7.tar.gz", "has_sig": false, "md5_digest": "82d8f94fa2298093ac7938e7e98a3990", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10476, "upload_time": "2017-09-25T16:35:16", "url": "https://files.pythonhosted.org/packages/73/d9/60c57cadf34564afe67586377d62286126ce461b6f48b5cff0077168fa6e/esper_tool-1.2.7.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "769d7d61876cb9293934d382adc7eaf4", "sha256": "72545bdf843f28b3c7b91a46165a81566f6f9313e2c064762a5606eed26e0040" }, "downloads": -1, "filename": "esper_tool-1.2.8.tar.gz", "has_sig": false, "md5_digest": "769d7d61876cb9293934d382adc7eaf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10719, "upload_time": "2017-09-25T19:44:19", "url": "https://files.pythonhosted.org/packages/70/f7/0c094d25c26510c796341d4f6498ed323ca607fc5b10ab0c364b4736f5d7/esper_tool-1.2.8.tar.gz" } ], "1.2.9": [ { "comment_text": "", "digests": { "md5": "7941fe362442d66ce5faba06be283d8a", "sha256": "fcd98f73f745ff06dbdf35cdd84439c2e309e570d7744f3439d317b098fae29f" }, "downloads": -1, "filename": "esper_tool-1.2.9.tar.gz", "has_sig": false, "md5_digest": "7941fe362442d66ce5faba06be283d8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10721, "upload_time": "2017-09-26T16:47:29", "url": "https://files.pythonhosted.org/packages/9f/99/9d54ba28007c46229ec397adbdc714a4f37fdcccb8a344f442522cd4b7e0/esper_tool-1.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "80e5342f12669ded18e9abac43306c1b", "sha256": "a917e83fcd4c300b9b66ab5a3e8e088feb761f47a02e5107d4b07333f0e577dd" }, "downloads": -1, "filename": "esper-tool-1.2.26.tar.gz", "has_sig": false, "md5_digest": "80e5342f12669ded18e9abac43306c1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14233, "upload_time": "2019-01-28T21:41:36", "url": "https://files.pythonhosted.org/packages/96/8a/7e6cd612c99a96e9750a9a5387f7a211620bab3d6e86d2d86346e664c836/esper-tool-1.2.26.tar.gz" } ] }