{ "info": { "author": "Alpaca", "author_email": "oss@alpaca.markets", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Office/Business :: Financial" ], "description": "[![PyPI version](https://badge.fury.io/py/pylivetrader.svg)](https://badge.fury.io/py/pylivetrader)\n[![CircleCI](https://circleci.com/gh/alpacahq/pylivetrader.svg?style=shield)](https://circleci.com/gh/alpacahq/pylivetrader)\n\n# pylivetrader\n\npylivetrader is a simple python live trading framework with zipline interface.\nThe main purpose is to run algorithms developed in the Quantopian platform in\nlive trading via broker API. In order to convert your algorithm for pylivetrader,\nplease read the [migration document](./migration.md).\n\n## Simple Usage\n\nHere is the example dual moving average algorithm (by [quantopian/zipline](https://github.com/quantopian/zipline/blob/master/zipline/examples/dual_moving_average.py)). We provide mostly the same API interfaces with zipline.\n\n```py\nfrom pylivetrader.api import order_target, symbol\n\ndef initialize(context):\n context.i = 0\n context.asset = symbol('AAPL')\n\ndef handle_data(context, data):\n # Compute averages\n # data.history() has to be called with the same params\n # from above and returns a pandas dataframe.\n short_mavg = data.history(context.asset, 'price', bar_count=100, frequency=\"1m\").mean()\n long_mavg = data.history(context.asset, 'price', bar_count=300, frequency=\"1m\").mean()\n\n # Trading logic\n if short_mavg > long_mavg:\n # order_target orders as many shares as needed to\n # achieve the desired number of shares.\n order_target(context.asset, 100)\n elif short_mavg < long_mavg:\n order_target(context.asset, 0)\n```\n\nYou can run your algorithm from the CLI tool named `pylivetrader`, simply\nlike below. Then your algorithm starts running with broker API.\nYou don't need the data bundle file in advance unlike zipline does.\n\n```sh\n$ pylivetrader run -f algo.py --backend-config config.yaml\n```\n\nConfig file is just simple yaml or json format.\n\n```\n$ cat config.yaml\nkey_id: BROKER_API_KEY\nsecret: BROKER_SECRET\n```\n\n### Usage with redis\n\nIf you are running pylivetrader in an environment with an ephemeral file store and need your context\nto persist across restarts, you can use the redis storage engine. This is useful if you launch in a\nplace like heroku.\n\nTo use this, you must install the redis-py library.\n\n```sh\n$ pip install redis\n```\n\nAfter that everything is the same as above, except the `run` command looks like the following:\n\n```sh\n$ pylivetrader run -f algo.py --backend-config config.yaml --storage-engine redis\n```\n\nAssuming you have redis running, this will now serialize your context object to and from redis.\n\n## Installation\n\nInstall with pip. **pylivetrader currently supports Python 3.5, 3.6 and 3.7+**\n\n```\n$ pip install pylivetrader\n```\n\nAdditionally, pylivetrader works well with [pipeline-live](https://github.com/alpacahq/pipeline-live).\n\n## Command Reference\n\n### run\n\n`pylivetrader run` starts live trading using your algorithm script. It starts\nby calling the `initialize()` function if any, and waits until the market opens.\nIt calls the `before_trading_start` function if it is 8:45 ET (45 minutes\nbefore the session starts) or if it starts after that. Once the session\nstarts, it calls the `handle_data()` function every minute until the\nsession ends, or any functions that are registered by `schedule_function` API.\n\nThe options are as follows.\n\n- `-f` or `--file`: the file path to the algorithm source\n- `-b` or `--backend`: the name of backend to use\n- `--backend-config`: the yaml file for backend parameters\n- `--storage-engine`: the storage engine to use for persisting the context. ('file' or 'redis')\n- `-s` or `--statefile`: the file path to the persisted state file (look for the State Management section below)\n- `-r` or `--retry`: the algorithm runner continues execution in the event a general exception is raised\n- `-l` or `--log-level`: the minimum level of log which will be written ('DEBUG', 'INFO', 'WARNING', 'ERROR', or 'CRITICAL')\n\n### shell\n\n`pylivetrader shell` goes into the IPython interactive shell mode as if you are\nin the algorithm script namespace. It means, you can call Algorithm API\nsuch as `symbol()` and `data.history()` so you can check the behavior\nof each operation. At the start of shell, nothing has been called, so you\nmay want to initialize the context by `initialize(context)` which would\nexecute your `initialize()` function.\n\n```\n$ pylivetrader shell algo.py\n```\n\nThe options are the same as `run`.\n\n## State Management\n\nOne of the things you need to understand in live trading is that things can\nhappen and you may need to restart the script or the program dies in the middle\nof process due to some external errors. There are couple of things\nto know in advance.\n\nFirst, pylivetrader saves the property fields to the disk that you add to\nthe `context` object. It is stored in the pickle format and will be\nrestored on the next startup.\n\nSecond, because the context properties are restored, you may need to\ntake care of the extra steps. Often an algorithm is written under\nthe assumption that `initialize()` is called only once and\n`before_start_trading()` is called once every morning. If you are\nto restart the program in the middle of day, these functions are\ncalled again, with the restored context object. Therefore, you\nmight need to check if the fields are from the other session\nor in the same session to make sure you don't override the\nindermediate states in the day.\n\n## Supported Brokers\n\n### Alpaca\n\nConfiguration by environment variables.\n\n```\n$ export APCA_API_KEY_ID={your api key id}\n$ export APCA_API_SECRET_KEY={your api secret key}\n$ export APCA_API_BASE_URL={https://api.alpaca.markets/ or https://paper-api.alpaca.markets}\n$ pylivetrader run -f algo.py\n```\n\nConfiguration by config file. Either yaml or json.\n\n```\n$ cat config.yaml\nkey_id: {your api key id}\nsecret: {your api secret key}\nbase_url: {https://api.alpaca.markets/ or https://paper-api.alpaca.markets}\n$ pylivetrader run -f algo.py --backend-config config.yaml\n```\n\n## Docker\n\nIf you are already familiar with Docker, it is a good idea to\ntry our [docker image `alpacamarkets/pylivetrader`](https://hub.docker.com/r/alpacamarkets/pylivetrader/).\nThis has installed pylivetrader so you can start right away without\nworrying about your python environment. See more details in the\n`dockerfiles` directory.\n\nIf your algorithm file is called `algo.py`, this could be it.\n\n```sh\ndocker run -v $PWD:/work -w /work alpacamarkets/pylivetrader pylivetrader run -f algo.py\n```\n\nMake sure you set up environment variables for the backend\n(use `-e KEY=VAL` for docker command).\n\n## Smoke Test\n\npylivetrader provides a facility for smoke testing. This helps catch\nissues such as typos, program errors and simple oversights. The following\nis an example of smoke testing.\n\n```py\nimport algo\n\nfrom pylivetrader.testing.smoke import harness\n\n\ndef before_run(context, backend):\n '''This hook is called before algorithm starts.'''\n\n # Populate existing position\n backend.set_position(\n 'A', 10, 200,\n )\n\n # modify some fields of context after `initialize(context)` is called\n _init = context._initialize\n def wrapper(ctx):\n _init(ctx)\n ctx.age[ctx.symbol('A')] = 3\n ctx.age[ctx.symbol('B')] = 2\n\n context._initialize = wrapper\n\ndef test_algo():\n pipeline = harness.DefaultPipelineHooker()\n\n # run the algorithm under the simulation environment\n harness.run_smoke(algo,\n before_run_hook=before_run,\n pipeline_hook=pipeline,\n )\n\n\nif __name__ == '__main__':\n import logging\n logging.basicConfig(level=logging.DEBUG)\n test_algo()\n```\n\nThis exercises the algorithm code by harnessing synthetic backend and price data.\nThe `pylivetrader.testing.smoke` package provides the backend and simulator\nclock classes so that it simulates a market day from open to close.\n\nBy default, the backend creates a universe with 50 stocks ('A' .. 'AX').\nFor each symbol, you can query synthetic historical price, and orders\nare managed within this simulator without having to set up a real remote\nbackend API. Additionally, you can hook up a couple of code injection\npoints such as `before_run_hook` and `pipeline_hook`. In this example,\nthe setup code creates a pre-populated position in the backend so you can\ntest the algorithm code path that accepts existing positions.\n\nA `DefaultPipelineHooker` instance can return a synthetic pipeline result\nwith the same column names/types, inferred from the pipeline object\ngiven in the `attach_pipeline` API.\n\nAgain, the purpose of this smoke testing is to actually exercise various\ncode paths to make sure there are no easy mistakes. This code works well\nwith standard test frameworks such as `pytest` and you can easily report\nline coverage using those frameworks too.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/alpacahq/pylivetrader.git", "keywords": "financial,zipline,pipeline,stock,screening,api,trade", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "pylivetrader", "package_url": "https://pypi.org/project/pylivetrader/", "platform": "", "project_url": "https://pypi.org/project/pylivetrader/", "project_urls": { "Homepage": "https://github.com/alpacahq/pylivetrader.git" }, "release_url": "https://pypi.org/project/pylivetrader/0.1.1/", "requires_dist": [ "bottleneck (==1.0.0)", "pandas (<0.23)", "pytz", "logbook", "astor", "trading-calendars", "click", "PyYAML", "ipython", "alpaca-trade-api (>=0.38)", "pipeline-live (>=0.1.9)" ], "requires_python": "", "summary": "simple live trading framework", "version": "0.1.1" }, "last_serial": 5778427, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "56f57ae63018ad629a31c64d3aec220a", "sha256": "c829376903181dc08d2be3ca08a51da33b113e9aa405ee0cfbf272b5e4649593" }, "downloads": -1, "filename": "pylivetrader-0.0.1-py3.4.egg", "has_sig": false, "md5_digest": "56f57ae63018ad629a31c64d3aec220a", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 1621, "upload_time": "2018-08-14T23:30:13", "url": "https://files.pythonhosted.org/packages/35/fb/543ba61fa3a410a9ff4af7aa753dc9f8f0aac95a7d2def7d78e433e7328c/pylivetrader-0.0.1-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "1e24439f0b79e4d187281a34a2bca150", "sha256": "b2602f1fbafd266e5148c2744af1f6790ebdc45f2bfe4f85c1eefecb0da32b45" }, "downloads": -1, "filename": "pylivetrader-0.0.1-py3.5.egg", "has_sig": false, "md5_digest": "1e24439f0b79e4d187281a34a2bca150", "packagetype": "bdist_egg", "python_version": "3.5", "requires_python": null, "size": 170138, "upload_time": "2018-08-14T23:30:14", "url": "https://files.pythonhosted.org/packages/d8/3c/3ae8a04ec15387db3921394e154438b4afd477e2c959fb30742df5c05b17/pylivetrader-0.0.1-py3.5.egg" }, { "comment_text": "", "digests": { "md5": "d881d1919e861b61e9cdfd6bea8a29a8", "sha256": "11003e373151a232cf051ba9063718d77c16c5b9ee90f9a9c6b68d291645118c" }, "downloads": -1, "filename": "pylivetrader-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d881d1919e861b61e9cdfd6bea8a29a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97210, "upload_time": "2018-08-14T23:30:11", "url": "https://files.pythonhosted.org/packages/f8/00/b69b70c54beef7560d2f1f4f7861895ac7fa154c13c74cd5eb380c20c7f3/pylivetrader-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "384a0af078c39839184decfc7bbb3c5e", "sha256": "79aab2cdb2b445a20311faeb3668885c43b9edfe4af9cd5bb57f6bf90c87c860" }, "downloads": -1, "filename": "pylivetrader-0.0.1.tar.gz", "has_sig": false, "md5_digest": "384a0af078c39839184decfc7bbb3c5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63132, "upload_time": "2018-08-14T23:30:16", "url": "https://files.pythonhosted.org/packages/4e/cf/258ea467c718d263e8bcc38dde04b7b1436abc8771e3336f067ff8161141/pylivetrader-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "1ce0297248a8e61b587c4b2a4cd309b0", "sha256": "d5363ac2350d66eb74e7685c245ea0910b71a695b8c526c8d753e21f839f9008" }, "downloads": -1, "filename": "pylivetrader-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "1ce0297248a8e61b587c4b2a4cd309b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94838, "upload_time": "2018-09-20T06:32:02", "url": "https://files.pythonhosted.org/packages/1a/a0/06f1423ac2a2d99fa1a1fc3392dcb61d3427b089a502d5941994a64434d1/pylivetrader-0.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c088c46643255244a0bc56d042ec2ffa", "sha256": "860325b98d110f89e4c753b0c6b1e59fce3efff48d49d86c78b058873e8fbe10" }, "downloads": -1, "filename": "pylivetrader-0.0.10.tar.gz", "has_sig": false, "md5_digest": "c088c46643255244a0bc56d042ec2ffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72427, "upload_time": "2018-09-20T06:32:03", "url": "https://files.pythonhosted.org/packages/c7/d2/5b36df96480c8b5c6a72a64a92594a87d379124ff66a10d1e3a31ac42d78/pylivetrader-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "d3e7c18b9aad80f319b48de34450eb74", "sha256": "aa6854daf2b9324840927e0bca2a354c265364bbdf052f22e1a71b062838171f" }, "downloads": -1, "filename": "pylivetrader-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "d3e7c18b9aad80f319b48de34450eb74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94859, "upload_time": "2018-09-20T16:40:06", "url": "https://files.pythonhosted.org/packages/ca/43/e4d90bbf2f5a98f433922b4784ee9715ff64344601868bdb2d6adc3fc9b4/pylivetrader-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60f8f0622da866832fcf56729103dfa2", "sha256": "981e21ee685cdc089075e95566da089030ebedc39f26245b6f124bc942452922" }, "downloads": -1, "filename": "pylivetrader-0.0.11.tar.gz", "has_sig": false, "md5_digest": "60f8f0622da866832fcf56729103dfa2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72464, "upload_time": "2018-09-20T16:40:08", "url": "https://files.pythonhosted.org/packages/54/eb/76913c4781607940c0545150fbf05fa30648b044d8a2b082da64f85d596c/pylivetrader-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "e909f8f735a84bc97b0d5f544e19ab8c", "sha256": "22adeb4e56e8f983a5420893d1e133365a833797a13d5676175573029ded52fe" }, "downloads": -1, "filename": "pylivetrader-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "e909f8f735a84bc97b0d5f544e19ab8c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94808, "upload_time": "2018-09-26T13:30:06", "url": "https://files.pythonhosted.org/packages/be/11/91bf362c0b8d9183db3c19b69387d67dfaafe2ce0acabba6d4c717665b8e/pylivetrader-0.0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a96bbe78a302c4af12e70f0e70ee95d", "sha256": "ff8046a66de3186c265f2b098fe0633434aa7a81657a386814d6efe6d0de02af" }, "downloads": -1, "filename": "pylivetrader-0.0.12.tar.gz", "has_sig": false, "md5_digest": "8a96bbe78a302c4af12e70f0e70ee95d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72422, "upload_time": "2018-09-26T13:30:07", "url": "https://files.pythonhosted.org/packages/87/d0/c5bd41f0c89923cb7d8ead10baf232cb0cfde3d8176e4d6994dddea50879/pylivetrader-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "a5e3b9a668b28bf2a2f13f1a3164a26d", "sha256": "3d5fcab2d67782029e702a2945ca8c2ce3c0a3926b4475d67bf8069acbe90980" }, "downloads": -1, "filename": "pylivetrader-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "a5e3b9a668b28bf2a2f13f1a3164a26d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95152, "upload_time": "2018-10-16T05:07:29", "url": "https://files.pythonhosted.org/packages/5c/62/b4780fa385c42b6db63a11fbc1e4862d422c50317104f3907efed582e8f9/pylivetrader-0.0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8b5be3e55e9ce707992512ef758cd5c", "sha256": "e08a564903e572d83870918f12eaf64aba9f7424193cbb6911c0fa30906d335f" }, "downloads": -1, "filename": "pylivetrader-0.0.13.tar.gz", "has_sig": false, "md5_digest": "d8b5be3e55e9ce707992512ef758cd5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72786, "upload_time": "2018-10-16T05:07:31", "url": "https://files.pythonhosted.org/packages/a8/d4/d99720d2d3174ce36d4207d96a476d55f44e0a1b110b91f0bd30f666f51d/pylivetrader-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "80b60c567e24798c099cc46f7da1bb7c", "sha256": "742f8df7a400101e62ad24c1c76d32a1ac6f014505ccddb15cf9bc772b360538" }, "downloads": -1, "filename": "pylivetrader-0.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "80b60c567e24798c099cc46f7da1bb7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95567, "upload_time": "2018-11-01T04:35:16", "url": "https://files.pythonhosted.org/packages/be/0b/ea2d354fb144f05db8aeb8d88dba28edb1f97d085790f43551963081b964/pylivetrader-0.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93e3fd1bcf30970e2e55e45badfb7102", "sha256": "be54fa1d4604ad0d1d6d196584d4c2febc1ac303dcdcf1943848e8cbec369024" }, "downloads": -1, "filename": "pylivetrader-0.0.14.tar.gz", "has_sig": false, "md5_digest": "93e3fd1bcf30970e2e55e45badfb7102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73354, "upload_time": "2018-11-01T04:35:18", "url": "https://files.pythonhosted.org/packages/a4/f9/f22bd0d57da6295a8160cc39c16378fadd183700dd579061f20226f3ed1b/pylivetrader-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "ab08efabb9d6b92bb0c701195b5b6c03", "sha256": "a7f3e413c49f3ea279adfd43d7721e5598bdcfc8c4543d43a7c9963c0b2b621b" }, "downloads": -1, "filename": "pylivetrader-0.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "ab08efabb9d6b92bb0c701195b5b6c03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 95586, "upload_time": "2018-11-01T04:58:36", "url": "https://files.pythonhosted.org/packages/28/19/7c3538f43ab82f77212a5fa10eccb2991b81011d4ab835d7d5f141a30ee5/pylivetrader-0.0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1c043aef71a473c4199a06690a4c4ea", "sha256": "0c08283a9be5ee8c18f0c093767dd613bae513a32d644406b3f560cf80c039a2" }, "downloads": -1, "filename": "pylivetrader-0.0.15.tar.gz", "has_sig": false, "md5_digest": "d1c043aef71a473c4199a06690a4c4ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73380, "upload_time": "2018-11-01T04:58:37", "url": "https://files.pythonhosted.org/packages/b0/e8/c5191994035b2c5f96a47df0493a9efeb9d8a9a22560a676504e748bf1eb/pylivetrader-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "7e12a0451692c8d0be5f1c354e531ea0", "sha256": "e8a867a66aacff34dcf53adba9e963315a50b914cb9a07d8fc2b20ecdfaf8562" }, "downloads": -1, "filename": "pylivetrader-0.0.16-py3-none-any.whl", "has_sig": false, "md5_digest": "7e12a0451692c8d0be5f1c354e531ea0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 99784, "upload_time": "2018-11-05T21:41:05", "url": "https://files.pythonhosted.org/packages/05/ee/2f2c56907376aa7f3cf5cbdc5aeecd7f9b0d52d011c4de30e76ace7bb02b/pylivetrader-0.0.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03ce65514a21eb9bcadb0b37df1c0687", "sha256": "90a40d6355d9bf700ced6c95be577c6bca6ff9d3d9f99707dcc7689ccaffb2ce" }, "downloads": -1, "filename": "pylivetrader-0.0.16.tar.gz", "has_sig": false, "md5_digest": "03ce65514a21eb9bcadb0b37df1c0687", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73850, "upload_time": "2018-11-05T21:41:07", "url": "https://files.pythonhosted.org/packages/b4/ef/f3372098ef07243397faab6ea3945679e96882b9bb9a12bd6da908209d82/pylivetrader-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "8de07578977b6d2292f8c97e7e05f5ae", "sha256": "c94e769bbf5f95698708cc9ff41e56dbd5587b20893c1055513bf938a72d4dea" }, "downloads": -1, "filename": "pylivetrader-0.0.17-py3-none-any.whl", "has_sig": false, "md5_digest": "8de07578977b6d2292f8c97e7e05f5ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 100103, "upload_time": "2018-11-09T18:11:24", "url": "https://files.pythonhosted.org/packages/17/71/349f6b1a529cc04940b6504cd77863f2c493a36ebc521c9f37ae11420417/pylivetrader-0.0.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fd66a895ed57201b244fc11d41b6f3b", "sha256": "07d7d10f540e3cf45fe6b2a951858933509c1e2114cae43b5be456b6c901a4e2" }, "downloads": -1, "filename": "pylivetrader-0.0.17.tar.gz", "has_sig": false, "md5_digest": "0fd66a895ed57201b244fc11d41b6f3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74184, "upload_time": "2018-11-09T18:11:26", "url": "https://files.pythonhosted.org/packages/3b/ce/b8cb615320d06f7ec0cf154d0e690b4fb9e678a76594e7c51691d6bf5d8e/pylivetrader-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "5d9a3d7ca90d10ec471ce764d4495633", "sha256": "0ff9d2b51f40c6e91caca630ca883cfc1648fedc6f5940a55c3a6c0c09ce937c" }, "downloads": -1, "filename": "pylivetrader-0.0.18-py3-none-any.whl", "has_sig": false, "md5_digest": "5d9a3d7ca90d10ec471ce764d4495633", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 100466, "upload_time": "2018-11-13T00:52:27", "url": "https://files.pythonhosted.org/packages/17/b8/ce855fbdd9918d5f48607801ca2b3c13d402a60c1eb7281b013e068cae2a/pylivetrader-0.0.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "76607516f9458cc43b573f0f208f8eeb", "sha256": "59e58ce821975ffe8ffbf31c96635894b36df560bd5359fad706e84c74754937" }, "downloads": -1, "filename": "pylivetrader-0.0.18.tar.gz", "has_sig": false, "md5_digest": "76607516f9458cc43b573f0f208f8eeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74507, "upload_time": "2018-11-13T00:52:29", "url": "https://files.pythonhosted.org/packages/35/d3/6520c04053951f2900c358751395cc505962f9bce3c8d87415926a881b5a/pylivetrader-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "67f74c16bb77962475d6a2d7d6bdcfc8", "sha256": "0065d9e6b744ea9da961a4d7a5d37edb5e8880d6fe94ed7a1eed8d3ef3b31bee" }, "downloads": -1, "filename": "pylivetrader-0.0.19-py3-none-any.whl", "has_sig": false, "md5_digest": "67f74c16bb77962475d6a2d7d6bdcfc8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 100468, "upload_time": "2018-11-13T15:25:33", "url": "https://files.pythonhosted.org/packages/6a/55/2a407c75bb9e015fa8a2c506c0efca5e36364bab2f8bdf0c94a2cbc63e49/pylivetrader-0.0.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3acf0c0b3c4cf0bf48fc4ab721582d30", "sha256": "b4e7864c94ad7851dd0c5951e84d5e0d9a6c1e88ba45d8a28da4e54159f0fbaa" }, "downloads": -1, "filename": "pylivetrader-0.0.19.tar.gz", "has_sig": false, "md5_digest": "3acf0c0b3c4cf0bf48fc4ab721582d30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74511, "upload_time": "2018-11-13T15:25:35", "url": "https://files.pythonhosted.org/packages/bf/d5/c208bcf5eebabeacf3cdb05cf5e8d3483da2c90ddb59527d05b54dd97abe/pylivetrader-0.0.19.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "592bb522fdb9dd6e94d9bbca87261e59", "sha256": "9903f89c5d188cdead81847bab691791dd0ae9dd5d1165af90f2b4b05cf94854" }, "downloads": -1, "filename": "pylivetrader-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "592bb522fdb9dd6e94d9bbca87261e59", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 98183, "upload_time": "2018-08-14T23:43:51", "url": "https://files.pythonhosted.org/packages/de/74/fad29f8ace9670940e43eaf6342321b5d1ebb7db65c38d93a9de935f1023/pylivetrader-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e689f4cf9a62a39d350f8d1cf21d6e15", "sha256": "d6a39715aa89cd610c6eeb27ea10a0aae3fcda4f2b45a5fe73bf54c119b7f721" }, "downloads": -1, "filename": "pylivetrader-0.0.2.tar.gz", "has_sig": false, "md5_digest": "e689f4cf9a62a39d350f8d1cf21d6e15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64490, "upload_time": "2018-08-14T23:43:54", "url": "https://files.pythonhosted.org/packages/e5/30/bd7dc6a5e64caea857bf76bd0fdf8709b787e8fdfbe742ea0bb1a74d0745/pylivetrader-0.0.2.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "44e6d108bf4b198fee1f45b8cb904fe2", "sha256": "1aa09e80e8ecd196d7767dbd7350001793703999333b439e5f8c6be3ba9c05cb" }, "downloads": -1, "filename": "pylivetrader-0.0.20-py3-none-any.whl", "has_sig": false, "md5_digest": "44e6d108bf4b198fee1f45b8cb904fe2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 100662, "upload_time": "2018-11-29T21:07:16", "url": "https://files.pythonhosted.org/packages/14/80/79bc50ceb2cf02a50c054972947855c74ddaa1f50b9bcbbd126d1bda556a/pylivetrader-0.0.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e10717fbf7b8f00759837659cb52efa3", "sha256": "40030d03cee22eb43d6874d03174d4b793a62596b49c97fa4ce2d97f15c6474f" }, "downloads": -1, "filename": "pylivetrader-0.0.20.tar.gz", "has_sig": false, "md5_digest": "e10717fbf7b8f00759837659cb52efa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74237, "upload_time": "2018-11-29T21:07:18", "url": "https://files.pythonhosted.org/packages/a8/74/0ed9d7693d4a463db8a4859b11029c7712c849cb35e2586c23910517c0de/pylivetrader-0.0.20.tar.gz" } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "c5bbd1d1d35d4eb2afab8b709e318145", "sha256": "a38566577d13c948d50b87e7aed994840fc35303457fee0cebc7efc16f22237c" }, "downloads": -1, "filename": "pylivetrader-0.0.21-py3-none-any.whl", "has_sig": false, "md5_digest": "c5bbd1d1d35d4eb2afab8b709e318145", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101352, "upload_time": "2019-01-14T22:09:59", "url": "https://files.pythonhosted.org/packages/6b/a8/5603f326cc532356f0afdc14ad66154b215bff00c87bb70d69dd2a7339af/pylivetrader-0.0.21-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92f5a3213b1141baf317d69c12c23146", "sha256": "1a6de6752b8d70236741ae49b970668d974e4cfdb1b32c86a22ec0e845e16974" }, "downloads": -1, "filename": "pylivetrader-0.0.21.tar.gz", "has_sig": false, "md5_digest": "92f5a3213b1141baf317d69c12c23146", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74854, "upload_time": "2019-01-14T22:10:01", "url": "https://files.pythonhosted.org/packages/02/b2/f87629d6c5214de8bf4acc2865b0a8411f0eb284e135c78b8e18ccd15053/pylivetrader-0.0.21.tar.gz" } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "a21e3f87fb96804fdd1f341c268a581c", "sha256": "74462da2ff375f0ae753040b5f65e7240e61ecafb05d0cadb73701159eef6563" }, "downloads": -1, "filename": "pylivetrader-0.0.22-py3-none-any.whl", "has_sig": false, "md5_digest": "a21e3f87fb96804fdd1f341c268a581c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 101531, "upload_time": "2019-01-24T20:10:12", "url": "https://files.pythonhosted.org/packages/c2/8e/a47a0efa208f82428716f915ed04762a3142644b55852500d03d5b9f28f4/pylivetrader-0.0.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2cffb784c27da1f5bd315043bafc3a88", "sha256": "bfe634491e27bed5465e2a67aff50b5e7fd60ace1a1d7872f3cdc7df8935c5d3" }, "downloads": -1, "filename": "pylivetrader-0.0.22.tar.gz", "has_sig": false, "md5_digest": "2cffb784c27da1f5bd315043bafc3a88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75022, "upload_time": "2019-01-24T20:10:14", "url": "https://files.pythonhosted.org/packages/34/f1/3df15d89b8b83b3d5e907988b136703b2d4e4e6936eae84074872da2bea8/pylivetrader-0.0.22.tar.gz" } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "8169a157ab5979d2f7d6d178c851ad28", "sha256": "5607f4cbdfa9204776f07ebf14c28a233ad940ce2246952ba2756dd418dbe264" }, "downloads": -1, "filename": "pylivetrader-0.0.23-py3-none-any.whl", "has_sig": false, "md5_digest": "8169a157ab5979d2f7d6d178c851ad28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 102133, "upload_time": "2019-02-19T23:16:18", "url": "https://files.pythonhosted.org/packages/96/64/a5133d84e96b37108d0a06990dc6db53e705363ba46d0b498f7f5026c1fa/pylivetrader-0.0.23-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00c920443695485c8fc9dc122bfefa20", "sha256": "4634cd5d0333ca67b8e2cc19180225f30c36586fb30e667fdbfcc4807f0a8c93" }, "downloads": -1, "filename": "pylivetrader-0.0.23.tar.gz", "has_sig": false, "md5_digest": "00c920443695485c8fc9dc122bfefa20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75573, "upload_time": "2019-02-19T23:16:20", "url": "https://files.pythonhosted.org/packages/4c/92/846ed3df68604ad221a77fab5c82eceb188bb3015647dd7af3776481f632/pylivetrader-0.0.23.tar.gz" } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "fe0579fc4714cc87761e90425ab51704", "sha256": "ee5143d88de710e58d83770316c1eec29a6ccdead320ac58d95e195f44c32eb1" }, "downloads": -1, "filename": "pylivetrader-0.0.24.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "fe0579fc4714cc87761e90425ab51704", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 102961, "upload_time": "2019-02-22T21:50:55", "url": "https://files.pythonhosted.org/packages/55/76/7d513041c0c81ff246d70c3d120f97dc8d3138b0786bbd0df159f4fe1463/pylivetrader-0.0.24.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "283ca4cb165dc839cb5d51bd2b9fd5dd", "sha256": "f6d847c651d88b8372fdffbd8f1536da7172016b6b9aa0263787686cb7e72fb8" }, "downloads": -1, "filename": "pylivetrader-0.0.24-py3-none-any.whl", "has_sig": false, "md5_digest": "283ca4cb165dc839cb5d51bd2b9fd5dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 102961, "upload_time": "2019-02-22T16:32:23", "url": "https://files.pythonhosted.org/packages/38/71/5799bf40c48c285fae1209446ca7284073ab455150a769f672c8268c1ac2/pylivetrader-0.0.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1cd62ab06fcea3760c99893feaed004a", "sha256": "6c7fb40dfae1c5f2ac462ac52aec0d9e43f9ed9ab969f38637fafb1727d13aab" }, "downloads": -1, "filename": "pylivetrader-0.0.24.tar.gz", "has_sig": false, "md5_digest": "1cd62ab06fcea3760c99893feaed004a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76705, "upload_time": "2019-02-22T16:32:25", "url": "https://files.pythonhosted.org/packages/de/a5/380b346fd4579d283526786fbedcb78789620dadb9b419ca2d31f92aa7aa/pylivetrader-0.0.24.tar.gz" } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "c5482413fa673bfaa96961b548a38bcc", "sha256": "c0fa434b3e211f78f8c0cc0c2b6c49cf46c3fe8681bba0778579b2036eeea1b5" }, "downloads": -1, "filename": "pylivetrader-0.0.25-py3-none-any.whl", "has_sig": false, "md5_digest": "c5482413fa673bfaa96961b548a38bcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 102961, "upload_time": "2019-02-22T21:57:32", "url": "https://files.pythonhosted.org/packages/47/99/230728ac4798f5410f68ca91b54590b9651a019781b0cc2afdc21f203405/pylivetrader-0.0.25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfdcdbcae403af9c2fa7e572f9c34d77", "sha256": "1481890eaf536f766b4bf31cbd1de70341170235f30a40500868ff56a11f8a30" }, "downloads": -1, "filename": "pylivetrader-0.0.25.tar.gz", "has_sig": false, "md5_digest": "bfdcdbcae403af9c2fa7e572f9c34d77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76752, "upload_time": "2019-02-22T21:57:33", "url": "https://files.pythonhosted.org/packages/ed/bb/40a796e7c4a68eca4b6f288e01be49dee5ed4ada30ede16e7abf0e94113c/pylivetrader-0.0.25.tar.gz" } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "82d06d441108679326d133120d129c71", "sha256": "7fd7f010d713a36c590112df580fc662671709965b1854c4d4a21fa6ed5845d8" }, "downloads": -1, "filename": "pylivetrader-0.0.26-py3-none-any.whl", "has_sig": false, "md5_digest": "82d06d441108679326d133120d129c71", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 103296, "upload_time": "2019-03-07T23:15:17", "url": "https://files.pythonhosted.org/packages/bd/a1/982b4f771e7a1ace764a08234b730fa8b1d19e232124e3cebb89a3e3ddb9/pylivetrader-0.0.26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0b3a6056f59699f20c782170f73f6bf", "sha256": "8eba623e0202d0bbbe1a418a19250d4cf87597a27f9bc06dcdeda443ea013cce" }, "downloads": -1, "filename": "pylivetrader-0.0.26.tar.gz", "has_sig": false, "md5_digest": "f0b3a6056f59699f20c782170f73f6bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77004, "upload_time": "2019-03-07T23:15:19", "url": "https://files.pythonhosted.org/packages/0e/32/a3702842f569866994c8ba1d1ece79c9933fba6825989ae6d6dbff536da0/pylivetrader-0.0.26.tar.gz" } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "f2e19c6f48e53628c498ef0c6fc1e05c", "sha256": "79903147139b388a1a4b857d80fb1f994d5b6145c43031261655b29a8e56e1c7" }, "downloads": -1, "filename": "pylivetrader-0.0.27-py3-none-any.whl", "has_sig": false, "md5_digest": "f2e19c6f48e53628c498ef0c6fc1e05c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 103930, "upload_time": "2019-03-21T02:28:33", "url": "https://files.pythonhosted.org/packages/67/51/92f75bf7e4f3a8a8c7ab55138d8f2881eb9b7b72a368a927357a4890bfea/pylivetrader-0.0.27-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d181ce817f4a5dabbf4138035fc7ea7", "sha256": "924eaaf45d465b219efb954a4e7f2c752d30fac07dfad80d9d4ef0c27f5b0023" }, "downloads": -1, "filename": "pylivetrader-0.0.27.tar.gz", "has_sig": false, "md5_digest": "3d181ce817f4a5dabbf4138035fc7ea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77394, "upload_time": "2019-03-21T02:28:35", "url": "https://files.pythonhosted.org/packages/ac/94/c3d8707101d8a31c06fe788caacd28fd000e2440bd924c0b6a06a227b5a3/pylivetrader-0.0.27.tar.gz" } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "8c6d95a7ac3ac665e860b482570c212e", "sha256": "dd86d930497ec0682ad839f3b2e5d841c48c24715cfecd8559fdcbd93825a9f3" }, "downloads": -1, "filename": "pylivetrader-0.0.28-py3-none-any.whl", "has_sig": false, "md5_digest": "8c6d95a7ac3ac665e860b482570c212e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104288, "upload_time": "2019-05-12T04:24:53", "url": "https://files.pythonhosted.org/packages/49/72/c9561c7e0f6a7c3078aa73d20705e46e337cc8e6e06c4e1e068da9b60f4d/pylivetrader-0.0.28-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ffb5e0be689e26ab99ff4acbf4e61d83", "sha256": "0a825f414de40536bb230600d12f32c2d478bb82f1ef2013d93b690d7b72cd2a" }, "downloads": -1, "filename": "pylivetrader-0.0.28.tar.gz", "has_sig": false, "md5_digest": "ffb5e0be689e26ab99ff4acbf4e61d83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77775, "upload_time": "2019-05-12T04:24:55", "url": "https://files.pythonhosted.org/packages/b1/bb/0abbadb32e1f294bd7e3d17e5ce1455a588156cc53ec1fa2c66dfa1b1505/pylivetrader-0.0.28.tar.gz" } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "3c11aa3cf45890d494afeb771391d46d", "sha256": "e511cf611204ed704883629157ff18b1875a50d95ddff1a6a10181d162260ded" }, "downloads": -1, "filename": "pylivetrader-0.0.29-py3-none-any.whl", "has_sig": false, "md5_digest": "3c11aa3cf45890d494afeb771391d46d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104290, "upload_time": "2019-05-14T21:26:57", "url": "https://files.pythonhosted.org/packages/86/e7/00eb48c34090747476acc627809e73cc304d423e3067e301795fee968fcc/pylivetrader-0.0.29-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb04cbab378c5223c69b5ab7bcf31837", "sha256": "23d6acd75b777cba49d77e4c2f009463b3b84d50723430cf3c1da9d3cb11ec1a" }, "downloads": -1, "filename": "pylivetrader-0.0.29.tar.gz", "has_sig": false, "md5_digest": "eb04cbab378c5223c69b5ab7bcf31837", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77772, "upload_time": "2019-05-14T21:26:59", "url": "https://files.pythonhosted.org/packages/6b/7f/fe305eba75da565e1d1a5c05110dd77adf4f739f77cccd0667874fe2f967/pylivetrader-0.0.29.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "76ad1c2a3cf2935aa5fcafcc42266cc5", "sha256": "c7c43191d6264d463ae8e6f8ea1be59ef745c05e3ef669d113496a85f9a94b2d" }, "downloads": -1, "filename": "pylivetrader-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "76ad1c2a3cf2935aa5fcafcc42266cc5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 86639, "upload_time": "2018-08-31T07:10:48", "url": "https://files.pythonhosted.org/packages/6f/62/12862a49a8214810c8c9c3073a042571306f80bd5a34c4ffc488e9a53c3d/pylivetrader-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9409d29f51920b38fcd645e8ac84923", "sha256": "a9e01954da99f1a67c14c07a5d66aa72df1e8c0de4756dd6e6d580b24d9c334a" }, "downloads": -1, "filename": "pylivetrader-0.0.3.tar.gz", "has_sig": false, "md5_digest": "a9409d29f51920b38fcd645e8ac84923", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63478, "upload_time": "2018-08-31T07:10:49", "url": "https://files.pythonhosted.org/packages/b0/c8/11e64c837a697e6d7e144052f9ad1f53a6f9d4164c59fd1be005cb973cfd/pylivetrader-0.0.3.tar.gz" } ], "0.0.30": [ { "comment_text": "", "digests": { "md5": "c4a64c4dc8b07b3f99fc8bc017884089", "sha256": "c103e69eda4057f442b5b2de90e7d0141988accaa423d103e298b678337e0360" }, "downloads": -1, "filename": "pylivetrader-0.0.30-py3-none-any.whl", "has_sig": false, "md5_digest": "c4a64c4dc8b07b3f99fc8bc017884089", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104315, "upload_time": "2019-05-15T16:40:38", "url": "https://files.pythonhosted.org/packages/44/e5/5a4b697b4562ed390acf2965edfeb27bfdaee1d46ad0275c97846df0e7b9/pylivetrader-0.0.30-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5997b92b18c0a24730e9ed7b04605745", "sha256": "97521d7d9c4309845beb4d6e7d55051692072d3fa6df699172ae6c3ebb7443eb" }, "downloads": -1, "filename": "pylivetrader-0.0.30.tar.gz", "has_sig": false, "md5_digest": "5997b92b18c0a24730e9ed7b04605745", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77824, "upload_time": "2019-05-15T16:40:40", "url": "https://files.pythonhosted.org/packages/02/18/b2a745ba4ea471c9760f23e244375edaf1eaa5c0adac71981d462f78f979/pylivetrader-0.0.30.tar.gz" } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "9b012aa5f774e8ed7975f33a80235078", "sha256": "2144b14ac8ba5114676034c5389d21bed0962ea8da41b6405064bc6f4cc3357e" }, "downloads": -1, "filename": "pylivetrader-0.0.31-py3-none-any.whl", "has_sig": false, "md5_digest": "9b012aa5f774e8ed7975f33a80235078", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104320, "upload_time": "2019-07-09T04:38:43", "url": "https://files.pythonhosted.org/packages/6f/37/1a7361cd0c48cae361eeaa8ce92aaa034f5c79b6ed2e05bd5e41de34afee/pylivetrader-0.0.31-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "810ce6939c80a509c296bb4cbe046b06", "sha256": "4b632adda922f8bf7b2118fa92d9d9f41f645b741b9092df38443ed07128a4eb" }, "downloads": -1, "filename": "pylivetrader-0.0.31.tar.gz", "has_sig": false, "md5_digest": "810ce6939c80a509c296bb4cbe046b06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77840, "upload_time": "2019-07-09T04:38:47", "url": "https://files.pythonhosted.org/packages/00/ea/7832d4fb68501cbef5020417b382dbe195fe69b83d33446cd181f60e5ec7/pylivetrader-0.0.31.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "7a381ee4909f66d64c9b76badc5ba1c0", "sha256": "eee037aed9bf816fd7c5e83f6a6d713049e41af2d4812e8d24541727e89b386f" }, "downloads": -1, "filename": "pylivetrader-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7a381ee4909f66d64c9b76badc5ba1c0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 86619, "upload_time": "2018-08-31T17:45:28", "url": "https://files.pythonhosted.org/packages/f4/d0/6e059c4a1a3ad81bd9aaa4c5f9c94a84959b47d0a78844179077e3c7fa3d/pylivetrader-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16ae77685ba4924092b599a0386b34bb", "sha256": "6625cef95c585f52eadc13c7c9844fb1278de467719716740482b1bc28f31ecb" }, "downloads": -1, "filename": "pylivetrader-0.0.4.tar.gz", "has_sig": false, "md5_digest": "16ae77685ba4924092b599a0386b34bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63470, "upload_time": "2018-08-31T17:45:29", "url": "https://files.pythonhosted.org/packages/87/ce/20f283fa77a244e2c45a30964921cdc84c9b2157516a74ef5af61e4a267b/pylivetrader-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "4dbdf4722edae57b73b99ca4cbd3f936", "sha256": "3f3a48870eff8aae5fb05b44d592235883ba42b8d5eb4a7ea9d0f3a4d5ad3151" }, "downloads": -1, "filename": "pylivetrader-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "4dbdf4722edae57b73b99ca4cbd3f936", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 86753, "upload_time": "2018-09-01T06:52:11", "url": "https://files.pythonhosted.org/packages/f1/d3/01ec32e96fa0dd4dfd8225d5cbef746c1f5f959f9b014ab283cd32de2df7/pylivetrader-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "758af987feede14c0b921fd706eb2401", "sha256": "a2294a5341dc7eaa1067c6c0b6a8b527ef248d9e5025d02a35446cadcf4ad83d" }, "downloads": -1, "filename": "pylivetrader-0.0.5.tar.gz", "has_sig": false, "md5_digest": "758af987feede14c0b921fd706eb2401", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63744, "upload_time": "2018-09-01T06:52:12", "url": "https://files.pythonhosted.org/packages/50/fd/f425b10db08d8732530fa9cc6fedadc5d5920ee5d190ff241ae3f70e90c2/pylivetrader-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "5c3e63fe3cf81cba0dc75afb5ca612ce", "sha256": "774d215d1a777d1f05c3e5ce75be77a8039dcee456dac309807322538ab1c02e" }, "downloads": -1, "filename": "pylivetrader-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "5c3e63fe3cf81cba0dc75afb5ca612ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 87195, "upload_time": "2018-09-12T07:43:52", "url": "https://files.pythonhosted.org/packages/17/1b/702569a6307da8d6851e724faa633bf6c84e700fd93da2e50470f16015d6/pylivetrader-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fb56b8a6e849084e678f2b1d5474c2b", "sha256": "5862b5a4f9a20eedf739a9685eb46a1eff645d0c34dd7cd6e96b2d183cd9b529" }, "downloads": -1, "filename": "pylivetrader-0.0.6.tar.gz", "has_sig": false, "md5_digest": "0fb56b8a6e849084e678f2b1d5474c2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64472, "upload_time": "2018-09-12T07:43:54", "url": "https://files.pythonhosted.org/packages/99/1c/c4a5a7dd4aa03fceeb6b4cbca1f9c5d43c59326db156d15d24ccca7115dd/pylivetrader-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "ff81e985ee757c1bf49618a3698995bc", "sha256": "ccef11a3eecb7290a9c964edf4f2c7f4906271ad17a1c9f2e85e25a9e7937fd4" }, "downloads": -1, "filename": "pylivetrader-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ff81e985ee757c1bf49618a3698995bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88120, "upload_time": "2018-09-14T08:03:03", "url": "https://files.pythonhosted.org/packages/2d/a7/ddc75f21da39152fe50f04b447cb787e423521f6c46d925dd79516a9a7ad/pylivetrader-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4491a5463193056cd7713122aa2ec01", "sha256": "4c7198bc5b9dfcb7c2c27bd5ca63c757631b27550b96eb3805bf7ac7331f79a2" }, "downloads": -1, "filename": "pylivetrader-0.0.7.tar.gz", "has_sig": false, "md5_digest": "a4491a5463193056cd7713122aa2ec01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66475, "upload_time": "2018-09-14T08:03:04", "url": "https://files.pythonhosted.org/packages/81/55/74684c0e3441bb7bdf74fd531191d07a19ba96baa55e2a72ea09d9e2f880/pylivetrader-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "1ef323e2f63dd3e1c3d09252fa7c3b15", "sha256": "86a6f4bf72423a946eb062114a0091cb2fc30609c1cce4744ea715cabd70e5cd" }, "downloads": -1, "filename": "pylivetrader-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "1ef323e2f63dd3e1c3d09252fa7c3b15", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93456, "upload_time": "2018-09-18T21:19:41", "url": "https://files.pythonhosted.org/packages/c3/87/7db8f73d5d60eb5bcc54cfd6347a88adb6b4825ba665089e10b1007a9490/pylivetrader-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ae7c3a06b653b72b6545d52e60952b67", "sha256": "fe403e1d8ace3fdbf39feca024f56ca36ed50f76abfce89cd364178fb00e1680" }, "downloads": -1, "filename": "pylivetrader-0.0.8.tar.gz", "has_sig": false, "md5_digest": "ae7c3a06b653b72b6545d52e60952b67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70155, "upload_time": "2018-09-18T21:19:43", "url": "https://files.pythonhosted.org/packages/3f/6f/d5cd60920f762022281ed0636ac75e58c8197015f9c0b16bf0ef2b1cb634/pylivetrader-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "fe4b841a49b807484b75f073ffcb088f", "sha256": "5819642b4bb709ac3e2889b7d9ac5434bca4c2d26775250cd2db6131c9e48e8d" }, "downloads": -1, "filename": "pylivetrader-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "fe4b841a49b807484b75f073ffcb088f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 94819, "upload_time": "2018-09-20T04:06:20", "url": "https://files.pythonhosted.org/packages/57/31/d037673f579d5f247c0bc285d16622b00a9787231c3a0468fcba6e53787d/pylivetrader-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa521f825255a8575b2240ae8a30e1ec", "sha256": "bed011a499b0908faa7881f2b87a2f23eba237e1a151aa4688eab3105dd0a65c" }, "downloads": -1, "filename": "pylivetrader-0.0.9.tar.gz", "has_sig": false, "md5_digest": "fa521f825255a8575b2240ae8a30e1ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72418, "upload_time": "2018-09-20T04:06:22", "url": "https://files.pythonhosted.org/packages/82/b1/55179a0958256e8079fd7ce9c7f55dc1c055861b10ec495afa2e4d141ab0/pylivetrader-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "29597bea07b4868235b25737f3e2a375", "sha256": "599e389794a7cd8844f0ea39d1782b897e123e384caa045286175b3d53918a5c" }, "downloads": -1, "filename": "pylivetrader-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "29597bea07b4868235b25737f3e2a375", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104508, "upload_time": "2019-08-14T04:19:52", "url": "https://files.pythonhosted.org/packages/73/44/57202b2815ee08436703475f4566a51650b137c7a0eeac360ae8a82bf5b8/pylivetrader-0.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93990029388e9f12607253ff7e8f277e", "sha256": "5a11785283b0628f92af01d359fdaac01030c8b4ff51d4c97d3ca560030aeec1" }, "downloads": -1, "filename": "pylivetrader-0.1.0.tar.gz", "has_sig": false, "md5_digest": "93990029388e9f12607253ff7e8f277e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77922, "upload_time": "2019-08-14T04:19:55", "url": "https://files.pythonhosted.org/packages/a7/10/2572af31516d2a82374cd37fabead5cb9cfa8680311981ad0c97c0e6e38e/pylivetrader-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1db55eb825968c6d47be978a80b5d687", "sha256": "3992b8ea863e7b01e8c198cf93565dd34a7957ab8c4857c0098d0d8845edf3cb" }, "downloads": -1, "filename": "pylivetrader-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1db55eb825968c6d47be978a80b5d687", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104508, "upload_time": "2019-09-03T22:56:48", "url": "https://files.pythonhosted.org/packages/93/ae/f398391c075f3e99c0a8ad34c75ae3707f606546a6e03fcfbe6ac6d79f6a/pylivetrader-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7dc94e1ef0486d6f784d7ea3288be09f", "sha256": "c702613f4e2fe90c59944b6a88d0192f28c284b75d3ce95730d327b3eb855943" }, "downloads": -1, "filename": "pylivetrader-0.1.1.tar.gz", "has_sig": false, "md5_digest": "7dc94e1ef0486d6f784d7ea3288be09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77931, "upload_time": "2019-09-03T22:56:50", "url": "https://files.pythonhosted.org/packages/a8/60/0a39cf8a97656d6edb369720752a36c7f7a844114b5fc5ac02fec56132a2/pylivetrader-0.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1db55eb825968c6d47be978a80b5d687", "sha256": "3992b8ea863e7b01e8c198cf93565dd34a7957ab8c4857c0098d0d8845edf3cb" }, "downloads": -1, "filename": "pylivetrader-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1db55eb825968c6d47be978a80b5d687", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 104508, "upload_time": "2019-09-03T22:56:48", "url": "https://files.pythonhosted.org/packages/93/ae/f398391c075f3e99c0a8ad34c75ae3707f606546a6e03fcfbe6ac6d79f6a/pylivetrader-0.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7dc94e1ef0486d6f784d7ea3288be09f", "sha256": "c702613f4e2fe90c59944b6a88d0192f28c284b75d3ce95730d327b3eb855943" }, "downloads": -1, "filename": "pylivetrader-0.1.1.tar.gz", "has_sig": false, "md5_digest": "7dc94e1ef0486d6f784d7ea3288be09f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77931, "upload_time": "2019-09-03T22:56:50", "url": "https://files.pythonhosted.org/packages/a8/60/0a39cf8a97656d6edb369720752a36c7f7a844114b5fc5ac02fec56132a2/pylivetrader-0.1.1.tar.gz" } ] }