{ "info": { "author": "JugglinDan", "author_email": "jugglindan@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Games/Entertainment :: Role-Playing", "Topic :: Utilities" ], "description": "Readme\n======\n\nPython scripting and scenarios for Habitica.\n\n.. image:: https://img.shields.io/travis/DC23/scriptabit.svg\n :target: https://travis-ci.org/DC23/scriptabit\n :alt: Travis CI\n\n.. image:: https://readthedocs.org/projects/scriptabit/badge/?version=latest\n :target: http://scriptabit.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/l/scriptabit.svg\n :target: https://opensource.org/licenses/Apache-2.0\n :alt: Apache 2.0 License\n\n.. image:: https://img.shields.io/pypi/v/scriptabit.svg\n :target: https://pypi.python.org/pypi/scriptabit\n :alt: PyPI\n\n.. image:: https://img.shields.io/pypi/pyversions/scriptabit.svg\n :target: https://www.python.org\n\n* Free software: Apache 2.0\n* Homepage: https://github.com/DC23/scriptabit\n* Documentation: https://scriptabit.readthedocs.org\n* Version: 2.1.2\n\n**Note** You can use the Github issues for bugs and feature requests, however\nmost task and feature planning is carried out in a private\n`Trello `_ board. Access can be provided on request.\n\nInstallation\n------------\nTo install the latest release from `PyPI `_::\n\n pip install scriptabit\n\nIf you already have `scriptabit` installed, then upgrade with::\n\n pip install --upgrade scriptabit\n\nHabitica Credentials\n++++++++++++++++++++\nYou require an authentication credentials file in your home directory\ncontaining your\n`Habitica API Key and User ID `__.\nThe file should have a typical ini file structure, with the following section::\n\n [habitica]\n userid =\n apikey =\n\nAdditional sections can be added, and the section name to use can be\nsupplied as a command-line argument.\n\nIf you do not already have a `.auth.cfg` file, a default will be created when\nyou first run scriptabit. You can then fill in your account values.\n\nOnce you have entered your Habitica credentials, test them with the `-sud`\ncommand (short for `--show-user-data`)::\n\n scriptabit -sud\n\nIf everything is set up correctly, you should see a summary of your character\ndata printed to the console.\n\n**Note that your API key is effectively a password to your Habitica\naccount.** You should make sure the .auth.cfg file is protected, and\nnever share the key with others. On Linux and related systems, you can\nset the permissions as follows::\n\n chmod 600 .auth.cfg\n\n.. _trello-credentials:\n\nTrello Credentials\n++++++++++++++++++\nIf you wish to use the Trello plugin, you will need to add your Trello\ncredentials to the .auth.cfg file as follows::\n\n [trello]\n apikey =\n apisecret =\n token =\n tokensecret =\n\nYour API key and API secret can be\n`obtained here `_.\n\nYour authorisation token and token secret will be obtained through an\ninteractive process when you first run the trello plugin. You must first save\nyour API key and API secret to the .auth.cfg file before you will be able to\nobtain the token and tokensecret.\n\n.. _usage:\n\nUsage\n-----\n\n`scriptabit` is a command-line application. Help on the available commands can\nbe obtained by running::\n\n $ scriptabit --help\n\nOperations include:\n\n- `-sud`: Show user data.\n- `-hp n`: Set the user health to n\n- `-mp n`: Set the user's mana points to n\n- `-xp n`: Set experience points to n\n- `-gp n`: Set gold to n\n- `-ls`: List available plugins.\n\nAfter running `scriptabit` at least once, configuration files will be created in\n`~/.config/scriptabit/`. These can be edited to change the default options. You\ncan revert to the installation defaults by deleting the files (they will be\nrecreated on the next run).\n\nSee the :ref:`detailed-usage` section for detailed instructions on specific\nfunctionality.\n\nFinally, most of the built-in plugins define a convenience command-line\napplication name:\n\n- `sb-banking` is a shortcut for `scriptabit --run banking`\n- `sb-csv` is a shortcut for `scriptabit --run csv_tasks`\n- `sb-health` is a shortcut for `scriptabit --run health_effects`\n- `sb-pets` is a shortcut for `scriptabit --run pet_care`\n- `sb-trello` is a shortcut for `scriptabit --run trello`\n- `sb-tasks` is a shortcut for `scriptabit --run tasks`\n\nWhen using the shortcuts, all other command-line arguments are the same as when\nrunning `scriptabit`.\n\nNotification Panel\n++++++++++++++++++\n\nBy default, most scriptabit operations update a scoreless habit in Habitica with\nsome status information. This can be useful when you have some functions running\nin an update loop.\n\nThe use of this panel can be controlled with the ``use-notification-panel``\nargument, either on the command line or by setting a value into the\nscriptabit.cfg file. Set to 0 or False to suppress the panel.\n\nHabitica Tags\n+++++++++++++\n\nBy default, scriptabit applies the `scriptabit` tag to all the tasks it creates\nin Habitica. This behaviour can be controlled with the ``--tags`` option. It\naccepts a comma-separated list of tags.\n\nTo disable the use of tags, set the option to an empty string: ``--tags \"\"``\n\nWriting Plugins\n---------------\n\nUser plugins should be placed into the `scriptabit_plugins` directory. This\nwill be created in your home directory the first time `scriptabit` runs. Due to\nan initialisation order issue, this directory location cannot be specified on\nthe command line (the plugin directory needs to be located before processing\ncommand line arguments so that plugins get a chance to add additional\narguments). If the `SCRIPTABIT_USER_PLUGIN_DIR` environment variable is defined,\nthen this location will be used instead of the default location.\n\n**Note that plugin data files may also be written to the user plugin directory**\n\nAll plugins should subclass the `IPlugin` class. Refer to the API\ndocumentation for details of the available methods.\n\nAlso refer to the API documentation (and the view source option) for the\nsample plugin which can be used as a template for new plugins.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/DC23/scriptabit", "keywords": "Habitica", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "scriptabit", "package_url": "https://pypi.org/project/scriptabit/", "platform": "any", "project_url": "https://pypi.org/project/scriptabit/", "project_urls": { "Homepage": "https://github.com/DC23/scriptabit" }, "release_url": "https://pypi.org/project/scriptabit/2.1.2/", "requires_dist": null, "requires_python": "", "summary": "Python scripting for Habitica via the API", "version": "2.1.2" }, "last_serial": 3938106, "releases": { "0.4.7": [ { "comment_text": "", "digests": { "md5": "2827560872624afd89ad4b1e5ddfaee3", "sha256": "82d843e1fbb4d8f0fc8f54d59bda51736436722326075cc2973677515f6a13bc" }, "downloads": -1, "filename": "scriptabit-0.4.7.tar.gz", "has_sig": false, "md5_digest": "2827560872624afd89ad4b1e5ddfaee3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28155, "upload_time": "2016-08-12T04:38:47", "url": "https://files.pythonhosted.org/packages/3b/bc/d6ccc9e0b289379cd5b61fec1c8d8872e986d41e8eba5235fc24de5d968a/scriptabit-0.4.7.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "f11e823b0a9e7163237a833165710ad3", "sha256": "992f9bf4fdadfb90dd3471da8654b89c56751421344caecbcbbe3ecb34579174" }, "downloads": -1, "filename": "scriptabit-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f11e823b0a9e7163237a833165710ad3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42018, "upload_time": "2016-08-17T07:23:51", "url": "https://files.pythonhosted.org/packages/64/f9/693452c4eb55e520d9249537f10f0d70fb220586345014d9fed0f75fca06/scriptabit-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "92e13165586c2315564c6ef1a1c0ad87", "sha256": "5d3ed2a1392ce4a1589f54d521180c9b33bb1ccfc9d0e87fe8340913c7208e34" }, "downloads": -1, "filename": "scriptabit-1.1.0.tar.gz", "has_sig": false, "md5_digest": "92e13165586c2315564c6ef1a1c0ad87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43033, "upload_time": "2016-08-18T01:59:16", "url": "https://files.pythonhosted.org/packages/57/d1/b9acbbd611ade980a43712f81a9c4075e0b07d098b7967b454e635665e26/scriptabit-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "00052f580eab93218f9f4b880327dbc1", "sha256": "127d49207cb69ca8e897aeae880abf80f596a88dba969358c9041564eebc8bf6" }, "downloads": -1, "filename": "scriptabit-1.10.0.tar.gz", "has_sig": false, "md5_digest": "00052f580eab93218f9f4b880327dbc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57362, "upload_time": "2016-08-30T06:14:33", "url": "https://files.pythonhosted.org/packages/1a/61/30b224c0748f5213215299ed3d9bce2d9f6b1b20085119c43aa7544f439c/scriptabit-1.10.0.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "91895b8273f95a35806656b6fa3b4fc0", "sha256": "7f0f04ccd46fb76a26546251068702d8a098e4c8142a3377b24db224ec4a50ec" }, "downloads": -1, "filename": "scriptabit-1.11.0.tar.gz", "has_sig": false, "md5_digest": "91895b8273f95a35806656b6fa3b4fc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59237, "upload_time": "2016-09-22T07:13:50", "url": "https://files.pythonhosted.org/packages/40/e0/034104e7934938544420dc809b05c72dc18094886cfcd9e4c0418e415983/scriptabit-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "e51181953b1bc1cdf2257295a381e0c6", "sha256": "bfc5f1682cfca26ac2aaa5a3ce41e369ded83ec5032257f39436b4e014706815" }, "downloads": -1, "filename": "scriptabit-1.12.0.tar.gz", "has_sig": false, "md5_digest": "e51181953b1bc1cdf2257295a381e0c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61039, "upload_time": "2016-10-24T04:27:52", "url": "https://files.pythonhosted.org/packages/c9/f4/d16d66a1aae7076353caeb0b4bf91acf9b6b257fea6aa6c043c5b2b4d3f9/scriptabit-1.12.0.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "cad83e8b6f3cd99622bc528c86c726c6", "sha256": "c5bb4436f1e4d5fabf1c6f56bcf22722b03f167055d33cdd26a7dc2bccfb893f" }, "downloads": -1, "filename": "scriptabit-1.12.1.tar.gz", "has_sig": false, "md5_digest": "cad83e8b6f3cd99622bc528c86c726c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61106, "upload_time": "2016-10-24T04:56:40", "url": "https://files.pythonhosted.org/packages/7e/30/3cde64ca5b85e09bf25c9de112185e7cbbdaf84cd53c717f689581d79ec0/scriptabit-1.12.1.tar.gz" } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "77d5bc3300433f72e9620dca2c497e3a", "sha256": "f18ce25e47b4dfeff45f196708f615e4d0d43e6b6ec5a2a0f5118ffc2cad2b70" }, "downloads": -1, "filename": "scriptabit-1.12.2.tar.gz", "has_sig": false, "md5_digest": "77d5bc3300433f72e9620dca2c497e3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61184, "upload_time": "2016-10-31T06:19:17", "url": "https://files.pythonhosted.org/packages/12/de/b10ced8981fbc527cc6c94957b74851cf754182f2903e4e81153ed8f1eaf/scriptabit-1.12.2.tar.gz" } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "e728ff954caacf9c3329676d141aa524", "sha256": "592a94b4441eb22fc77f6158ea24a9f1f026012828023704632cd6e6aed401a7" }, "downloads": -1, "filename": "scriptabit-1.12.3.tar.gz", "has_sig": false, "md5_digest": "e728ff954caacf9c3329676d141aa524", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61269, "upload_time": "2016-11-25T03:19:42", "url": "https://files.pythonhosted.org/packages/09/38/dbf62d5ab1cf042316a36256bb8adec84a7e844a6186ccbe3fe81a29dfa4/scriptabit-1.12.3.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "acd4bc35a4a4f23dc02af47ab80bd302", "sha256": "50697d56a65e82d032a4894dcd5bcefecca15682efdafc1d8b8ccdbde6b12030" }, "downloads": -1, "filename": "scriptabit-1.13.0.tar.gz", "has_sig": false, "md5_digest": "acd4bc35a4a4f23dc02af47ab80bd302", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61737, "upload_time": "2016-12-02T04:49:22", "url": "https://files.pythonhosted.org/packages/f2/09/159d5e003c53439920976540909f639dfd514f83a041e02b2dd4366879aa/scriptabit-1.13.0.tar.gz" } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "e5dcb4e31a865ff0034ffcf901c8e35b", "sha256": "23d4578b2096e7a9b7683fd441140910e5809bacea79d08d42e16edf672d41d8" }, "downloads": -1, "filename": "scriptabit-1.13.1.tar.gz", "has_sig": false, "md5_digest": "e5dcb4e31a865ff0034ffcf901c8e35b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61827, "upload_time": "2016-12-02T05:47:54", "url": "https://files.pythonhosted.org/packages/ef/40/39fe8920ea41405ea8ee0abd7f8a9ffba903f7551062dd19936726918766/scriptabit-1.13.1.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "de78a89d6ec365601e06aaeb9f028e1e", "sha256": "3a5ddab036fc2de4c8a97fa4116b129f450c41514ef2877c52b35adfa2044665" }, "downloads": -1, "filename": "scriptabit-1.14.0.tar.gz", "has_sig": false, "md5_digest": "de78a89d6ec365601e06aaeb9f028e1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62234, "upload_time": "2016-12-09T05:32:13", "url": "https://files.pythonhosted.org/packages/54/3c/8b05379d5bb7b5e44cd2d20b1b7e285a11d4b8e2dcc6deac2b81034847ca/scriptabit-1.14.0.tar.gz" } ], "1.14.1": [ { "comment_text": "", "digests": { "md5": "788db3d9a8f63df0a629531729013a73", "sha256": "5803295d81fbcc6ba918c1c329c188171c917a7632cd250c7342d38dd194df49" }, "downloads": -1, "filename": "scriptabit-1.14.1.tar.gz", "has_sig": false, "md5_digest": "788db3d9a8f63df0a629531729013a73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62487, "upload_time": "2016-12-21T08:00:41", "url": "https://files.pythonhosted.org/packages/c6/eb/356cbedd75372d1249193671a377891c0dd8179746acca858cbc491a7e0d/scriptabit-1.14.1.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "43b4f4eea886c7b1b515657073f8a6d9", "sha256": "68a843cca5dfed41aaf272e6fff564afd464f0b9cdbaf19a56afc1f6fc083308" }, "downloads": -1, "filename": "scriptabit-1.15.0.tar.gz", "has_sig": false, "md5_digest": "43b4f4eea886c7b1b515657073f8a6d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63858, "upload_time": "2016-12-22T08:36:25", "url": "https://files.pythonhosted.org/packages/06/e6/a9bd779effab2867e5756b8f574db89ddd529845c1f4511dac8e1e3868ca/scriptabit-1.15.0.tar.gz" } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "f1cbaa09fb81d9e224b1299cf3a1301d", "sha256": "8192a90aaf34143f1a9db1d8f85e09b2a474cbb00dfd6d6bc86aa114873753c0" }, "downloads": -1, "filename": "scriptabit-1.16.0.tar.gz", "has_sig": false, "md5_digest": "f1cbaa09fb81d9e224b1299cf3a1301d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65614, "upload_time": "2017-01-10T04:41:01", "url": "https://files.pythonhosted.org/packages/4a/e5/e6423db3c2f37bf67fe14ed201b3034b6ea90b54c3939fb56452500165c8/scriptabit-1.16.0.tar.gz" } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "35128c491d643f2f4f17b9b0b843a17e", "sha256": "0e09a35a05937cb377403bd9b071e42e7f637decba8bc7c836502261b180b156" }, "downloads": -1, "filename": "scriptabit-1.17.0.tar.gz", "has_sig": false, "md5_digest": "35128c491d643f2f4f17b9b0b843a17e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66695, "upload_time": "2017-01-16T08:34:07", "url": "https://files.pythonhosted.org/packages/7b/57/8f534465eb2e859c84ce7d500912248fd2e5513fd1b1a2741e45badff48e/scriptabit-1.17.0.tar.gz" } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "8a940ad710a4edc991b5c064dc065b9f", "sha256": "e464a26bbff086cce561d86e5841701062349b10a94c6539499d5130ea1f83ec" }, "downloads": -1, "filename": "scriptabit-1.17.1.tar.gz", "has_sig": false, "md5_digest": "8a940ad710a4edc991b5c064dc065b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67023, "upload_time": "2017-01-17T03:44:40", "url": "https://files.pythonhosted.org/packages/72/77/9452c1c357ae82e158e7eddbf8a658afb754ded092f93f660814e08e2ede/scriptabit-1.17.1.tar.gz" } ], "1.17.2": [ { "comment_text": "", "digests": { "md5": "10fb4ec41fb4de6201d84971794fa211", "sha256": "58823e358f0ac2455248c148eeba5a089529534d300f57a15dfc366fc67691c7" }, "downloads": -1, "filename": "scriptabit-1.17.2.tar.gz", "has_sig": false, "md5_digest": "10fb4ec41fb4de6201d84971794fa211", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67872, "upload_time": "2017-01-18T07:58:39", "url": "https://files.pythonhosted.org/packages/5c/d9/5fe2def76d4b8b8f2e2b08c983091b1b4c872251e142822bff4965adbb21/scriptabit-1.17.2.tar.gz" } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "45db1f0aa22b0f38822198992aa2beb1", "sha256": "73a681e790d6f3e92790335e87d5b946710c30f734b524523c77ff86954aa8f5" }, "downloads": -1, "filename": "scriptabit-1.18.0.tar.gz", "has_sig": false, "md5_digest": "45db1f0aa22b0f38822198992aa2beb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67425, "upload_time": "2017-01-23T02:27:08", "url": "https://files.pythonhosted.org/packages/e6/05/004666ef28b7e8e56e8680b16b13afab823e4bad5d8ff7cf3fcbd9fc7687/scriptabit-1.18.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "3d64daeef03f7a94f835d3b4466b491d", "sha256": "7ff5687679fcccc7ff7dce7c42b23232bdda8981fcbe12056c717f0435ff386a" }, "downloads": -1, "filename": "scriptabit-1.2.0.tar.gz", "has_sig": false, "md5_digest": "3d64daeef03f7a94f835d3b4466b491d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44414, "upload_time": "2016-08-18T07:50:00", "url": "https://files.pythonhosted.org/packages/aa/e4/7682f96705dabad6ffb1180491402bc6cc4a12684a2daed705148767920d/scriptabit-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "14e47100e119028f3b8bcee1a4ab8159", "sha256": "e500311ad55a94a86273e963bd442e1101eb4fd43b295ebd71cd4c26da7f44a5" }, "downloads": -1, "filename": "scriptabit-1.3.0.tar.gz", "has_sig": false, "md5_digest": "14e47100e119028f3b8bcee1a4ab8159", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47150, "upload_time": "2016-08-19T08:58:30", "url": "https://files.pythonhosted.org/packages/be/45/b2f698d46a2d42218e9c877ea2bf68b52b5e99c28d198ddedeb1397dfd72/scriptabit-1.3.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "446981f58a2021a0023f16e644e654e5", "sha256": "f471cbeeacf55ec5a011093150dbd43fa77a45914adf25ac802408920b47d24f" }, "downloads": -1, "filename": "scriptabit-1.5.0.tar.gz", "has_sig": false, "md5_digest": "446981f58a2021a0023f16e644e654e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51312, "upload_time": "2016-08-24T08:52:37", "url": "https://files.pythonhosted.org/packages/6e/8b/36f08d11f175b0e6fd4ed091ae33808ae6b90f64d77add597336ca304bca/scriptabit-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "98eac0254f5eb6c1cf9259f7e9d4b276", "sha256": "78c0d3ba01ca322e11d9f77c65f1b9058d89dd96dafa903750951cb7e511ff90" }, "downloads": -1, "filename": "scriptabit-1.6.0.tar.gz", "has_sig": false, "md5_digest": "98eac0254f5eb6c1cf9259f7e9d4b276", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53219, "upload_time": "2016-08-25T13:05:48", "url": "https://files.pythonhosted.org/packages/3f/33/5f1e2556f6a236597eafe8d4fd0c8e965bb9a6ecd52b89612cb3084b755f/scriptabit-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "263b7652a4e72adba608acb57561272a", "sha256": "a974a487c92936ba31f9b59068057761e91434d257cef1465e15eba4afd1ca08" }, "downloads": -1, "filename": "scriptabit-1.7.0.tar.gz", "has_sig": false, "md5_digest": "263b7652a4e72adba608acb57561272a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53833, "upload_time": "2016-08-26T08:25:03", "url": "https://files.pythonhosted.org/packages/0f/bc/965da1edca4c04f9f9857609a074b7718f6d100aa2b5d81470966284ce37/scriptabit-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "da470c1a25110857be9516f802e53d70", "sha256": "53d1ec3a90789192b6a00298eaa0053c81644ec0703dac8822661addc1d9a69e" }, "downloads": -1, "filename": "scriptabit-1.7.1.tar.gz", "has_sig": false, "md5_digest": "da470c1a25110857be9516f802e53d70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55163, "upload_time": "2016-08-29T04:20:46", "url": "https://files.pythonhosted.org/packages/2b/2b/205dec2f9dc6649c2379cad0492b1e9d9852e8eee4f71aa46785f55607a6/scriptabit-1.7.1.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "b370a8a65849df19cddcea16e5626301", "sha256": "c83e6c89a0a8dcffe59c1499e5f4d7cce95a6fcd042e71c7ba0a29c6498624a8" }, "downloads": -1, "filename": "scriptabit-1.8.0.tar.gz", "has_sig": false, "md5_digest": "b370a8a65849df19cddcea16e5626301", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55815, "upload_time": "2016-08-29T06:13:53", "url": "https://files.pythonhosted.org/packages/63/cd/1b4886398c3bc3b866e8da4f07c755772a90a1894ece97ca9692e249c699/scriptabit-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "74cc290aaf62057ecac35b273e772fa0", "sha256": "9ee920329793e6fae5560383e8ff0e30a974c0df4343d44ee8bc9b9aadc99147" }, "downloads": -1, "filename": "scriptabit-1.8.1.tar.gz", "has_sig": false, "md5_digest": "74cc290aaf62057ecac35b273e772fa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55866, "upload_time": "2016-08-29T07:22:30", "url": "https://files.pythonhosted.org/packages/e1/23/19d033b0b43a44edf1fe65a845ecee56334b08c4492c16828bff90855a3f/scriptabit-1.8.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "8f85045a98970130c3df8f666fd3331c", "sha256": "39f5321a2929f5934fa8fcb05ed7296696e9db99d0dc2864bca7172ce0576ef3" }, "downloads": -1, "filename": "scriptabit-2.0.0.tar.gz", "has_sig": false, "md5_digest": "8f85045a98970130c3df8f666fd3331c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68845, "upload_time": "2017-01-30T04:34:59", "url": "https://files.pythonhosted.org/packages/1f/7c/c8599116cdc08a47e57cba4ea2612cdcc3487e250dad923c440d8e491465/scriptabit-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "acb76dd5e2dba1cc3bffeb73ef0bb9eb", "sha256": "8fef3fa0ce019a6b513d8ba16515f6b4ac726c2db962e47b30bb4229372795ea" }, "downloads": -1, "filename": "scriptabit-2.0.1.tar.gz", "has_sig": false, "md5_digest": "acb76dd5e2dba1cc3bffeb73ef0bb9eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69303, "upload_time": "2017-02-01T02:59:19", "url": "https://files.pythonhosted.org/packages/d0/32/b3ff48f4063d822e40dd3243f39a6db78c679fe5528ffd4af229c61c882b/scriptabit-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "27569b905f2ede26bf14086512c2b6b5", "sha256": "af232eeded074d4f7913468a0064fe5652274b5ef1626874677b9a1694c8ad64" }, "downloads": -1, "filename": "scriptabit-2.0.2.tar.gz", "has_sig": false, "md5_digest": "27569b905f2ede26bf14086512c2b6b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69559, "upload_time": "2017-11-30T05:06:02", "url": "https://files.pythonhosted.org/packages/3d/ac/f2eaadaa00ca108abf47bed8fe2739f6630ac38e93022ca8fee06d430fe7/scriptabit-2.0.2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "6e50e9ed1b1ba020d148bb8809b53eae", "sha256": "349c71bd0bbe7c2c09f32d42d9f3f600bb10eab99e517df3a3ee74a4a5c4b24f" }, "downloads": -1, "filename": "scriptabit-2.1.0.tar.gz", "has_sig": false, "md5_digest": "6e50e9ed1b1ba020d148bb8809b53eae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69258, "upload_time": "2018-04-17T06:53:27", "url": "https://files.pythonhosted.org/packages/f8/25/87f0f0de4d2dd2470f24c018b2cef86f7ac125881eebb156e97480678a27/scriptabit-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "77af1a85d5b779e8c6e78cbbf0ba5f72", "sha256": "ed86ac1e2421d85b58b405b2d995a80954809850a6a5f80528a9b372a0cdac43" }, "downloads": -1, "filename": "scriptabit-2.1.1.tar.gz", "has_sig": false, "md5_digest": "77af1a85d5b779e8c6e78cbbf0ba5f72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69376, "upload_time": "2018-04-17T07:34:58", "url": "https://files.pythonhosted.org/packages/4c/f2/ab964960d58a2530118b2d721f6e9a169a7d3c30f716159c99ec9bc13db3/scriptabit-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "554d18e732922a5dfaba523fbd1a72fe", "sha256": "61d2fc9f90fd640e6cc74e48af13219ba9e72f3a782cd6656a6dbca28bf55dfc" }, "downloads": -1, "filename": "scriptabit-2.1.2.tar.gz", "has_sig": false, "md5_digest": "554d18e732922a5dfaba523fbd1a72fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69051, "upload_time": "2018-06-07T02:47:38", "url": "https://files.pythonhosted.org/packages/1a/2b/9f634134f68476ffdf49e49445e11a48a854a9737d3c6533dc2ad5976b29/scriptabit-2.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "554d18e732922a5dfaba523fbd1a72fe", "sha256": "61d2fc9f90fd640e6cc74e48af13219ba9e72f3a782cd6656a6dbca28bf55dfc" }, "downloads": -1, "filename": "scriptabit-2.1.2.tar.gz", "has_sig": false, "md5_digest": "554d18e732922a5dfaba523fbd1a72fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69051, "upload_time": "2018-06-07T02:47:38", "url": "https://files.pythonhosted.org/packages/1a/2b/9f634134f68476ffdf49e49445e11a48a854a9737d3c6533dc2ad5976b29/scriptabit-2.1.2.tar.gz" } ] }