{ "info": { "author": "Gina H\u00e4u\u00dfge", "author_email": "gina@octoprint.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Flask", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: End Users/Desktop", "Intended Audience :: Manufacturing", "Intended Audience :: Other Audience", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Affero General Public License v3", "Natural Language :: English", "Natural Language :: German", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Printing", "Topic :: System :: Monitoring" ], "description": "

\"OctoPrint's

\n\n

OctoPrint

\n\n

\n \"GitHub\n \"PyPI\"/\n \"Build\n \"Community\n \"Discord\"/\n \"Twitter\n \"Contributor\n \"Code\n \"Code\n \"Imports:\n \"pre-commit\"/\n

\n\nOctoPrint provides a snappy web interface for controlling consumer 3D printers. It is Free Software\nand released under the [GNU Affero General Public License V3](http://www.gnu.org/licenses/agpl.html).\n\nIts website can be found at [octoprint.org](https://octoprint.org/?utm_source=github&utm_medium=readme).\n\nThe community forum is available at [community.octoprint.org](https://community.octoprint.org/?utm_source=github&utm_medium=readme). It also serves as central knowledge base.\n\nAn invite to the Discord server can be found at [discord.octoprint.org](https://discord.octoprint.org).\n\nThe FAQ can be accessed by following [faq.octoprint.org](https://faq.octoprint.org/?utm_source=github&utm_medium=readme).\n\nThe documentation is located at [docs.octoprint.org](http://docs.octoprint.org).\n\nThe official plugin repository can be reached at [plugins.octoprint.org](https://plugins.octoprint.org/?utm_source=github&utm_medium=readme).\n\n**OctoPrint's development wouldn't be possible without the [financial support by its community](https://octoprint.org/support-octoprint/?utm_source=github&utm_medium=readme).\nIf you enjoy OctoPrint, please consider becoming a regular supporter!**\n\n![Screenshot](https://octoprint.org/assets/img/screenshot-readme.png)\n\nYou are currently looking at the source code repository of OctoPrint. If you already installed it\n(e.g. by using the Raspberry Pi targeted distribution [OctoPi](https://github.com/guysoft/OctoPi)) and only\nwant to find out how to use it, [the documentation](http://docs.octoprint.org/) might be of more interest for you. You might also want to subscribe to join\n[the community forum at community.octoprint.org](https://community.octoprint.org) where there are other active users who might be\nable to help you with any questions you might have.\n\n## Contributing\n\nContributions of all kinds are welcome, not only in the form of code but also with regards to the\n[official documentation](http://docs.octoprint.org/), debugging help\nin the [bug tracker](https://github.com/OctoPrint/OctoPrint/issues), support of other users on\n[the community forum at community.octoprint.org](https://community.octoprint.org) or\n[the official discord at discord.octoprint.org](https://discord.octoprint.org)\nand also [financially](https://octoprint.org/support-octoprint/?utm_source=github&utm_medium=readme).\n\nIf you think something is bad about OctoPrint or its documentation the way it is, please help\nin any way to make it better instead of just complaining about it -- this is an Open Source Project\nafter all :)\n\nFor information about how to go about submitting bug reports or pull requests, please see the project's\n[Contribution Guidelines](https://github.com/OctoPrint/OctoPrint/blob/master/CONTRIBUTING.md).\n\n## Installation\n\nInstallation instructions for installing from source for different operating\nsystems can be found [on the forum](https://community.octoprint.org/tags/c/support/guides/15/setup).\n\nIf you want to run OctoPrint on a Raspberry Pi, you really should take a look at [OctoPi](https://github.com/guysoft/OctoPi)\nwhich is a custom SD card image that includes OctoPrint plus dependencies.\n\nThe generic steps that should basically be done regardless of operating system\nand runtime environment are the following (as *regular\nuser*, please keep your hands *off* of the `sudo` command here!) - this assumes\nyou already have Python 2.7, 3.6 or 3.7, pip and virtualenv and their dependencies set up on your system:\n\n1. Create a user-owned virtual environment therein: `virtualenv venv`. If you want to specify a specific python\n to use instead of whatever version your system defaults to, you can also explicitly require that via the `--python`\n parameter, e.g. `virtualenv --python=python3 venv`.\n2. Install OctoPrint *into that virtual environment*: `./venv/bin/pip install OctoPrint`\n\nYou may then start the OctoPrint server via `/path/to/OctoPrint/venv/bin/octoprint`, see [Usage](#usage)\nfor details.\n\nAfter installation, please make sure you follow the first-run wizard and set up\naccess control as necessary.\n\n## Dependencies\n\nOctoPrint depends on a few python modules to do its job. Those are automatically installed when installing\nOctoPrint via `pip`.\n\nOctoPrint currently supports Python 2.7, 3.6 and 3.7.\n\n## Usage\n\nRunning the pip install via\n\n pip install OctoPrint\n\ninstalls the `octoprint` script in your Python installation's scripts folder\n(which, depending on whether you installed OctoPrint globally or into a virtual env, will be in your `PATH` or not). The\nfollowing usage examples assume that the `octoprint` script is on your `PATH`.\n\nYou can start the server via\n\n octoprint serve\n\nBy default it binds to all interfaces on port 5000 (so pointing your browser to `http://127.0.0.1:5000`\nwill do the trick). If you want to change that, use the additional command line parameters `host` and `port`,\nwhich accept the host ip to bind to and the numeric port number respectively. If for example you want the server\nto only listen on the local interface on port 8080, the command line would be\n\n octoprint serve --host=127.0.0.1 --port=8080\n\nAlternatively, the host and port on which to bind can be defined via the config file.\n\nIf you want to run OctoPrint as a daemon (only supported on Linux), use\n\n octoprint daemon {start|stop|restart} [--pid PIDFILE]\n\nIf you do not supply a custom pidfile location via `--pid PIDFILE`, it will be created at `/tmp/octoprint.pid`.\n\nYou can also specify the config file or the base directory (for basing off the `uploads`, `timelapse` and `logs` folders),\ne.g.:\n\n octoprint serve --config /path/to/another/config.yaml --basedir /path/to/my/basedir\n\nTo start OctoPrint in safe mode - which disables all third party plugins that do not come bundled with OctoPrint - use\nthe ``--safe`` flag:\n\n octoprint serve --safe\n\nSee `octoprint --help` for more information on the available command line parameters.\n\nOctoPrint also ships with a `run` script in its source directory. You can invoke it to start the server. It\ntakes the same command line arguments as the `octoprint` script.\n\n## Configuration\n\nIf not specified via the command line, the config file `config.yaml` for OctoPrint is expected in the settings folder,\nwhich is located at `~/.octoprint` on Linux, at `%APPDATA%/OctoPrint` on Windows and\nat `~/Library/Application Support/OctoPrint` on MacOS.\n\nA comprehensive overview of all available configuration settings can be found\n[in the docs](http://docs.octoprint.org/en/master/configuration/config_yaml.html).\nPlease note that the most commonly used configuration settings can also easily\nbe edited from OctoPrint's settings dialog.\n\n## Special Thanks\n\nCross-browser testing services are kindly provided by [BrowserStack](https://www.browserstack.com/).\n\nProfiling is done with the help of [PyVmMonitor](https://www.pyvmmonitor.com).\n\nError tracking is powered and sponsored by [Sentry](https://sentry.io).\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://octoprint.org", "keywords": "3dprinting 3dprinter 3d-printing 3d-printer octoprint", "license": "GNU Affero General Public License v3", "maintainer": "", "maintainer_email": "", "name": "OctoPrint", "package_url": "https://pypi.org/project/OctoPrint/", "platform": "", "project_url": "https://pypi.org/project/OctoPrint/", "project_urls": { "Bug Reports": "https://github.com/OctoPrint/OctoPrint/issues", "Community Forum": "https://community.octoprint.org", "Funding": "https://support.octoprint.org", "Homepage": "https://octoprint.org", "Source": "https://github.com/OctoPrint/OctoPrint" }, "release_url": "https://pypi.org/project/OctoPrint/1.7.3/", "requires_dist": [ "OctoPrint-FileCheck (>=2021.2.23)", "OctoPrint-FirmwareCheck (>=2021.10.11)", "OctoPrint-PiSupport (>=2021.10.28)", "markupsafe (<2.0,>=1.1)", "markdown (<3.2,>=3.1)", "wrapt (<1.13,>=1.12.1)", "flask (<2,>=1.1.4)", "Jinja2 (<3,>=2.11.3)", "Flask-Login (<0.6,>=0.5)", "Flask-Babel (<2,>=1.0)", "Flask-Assets (<3,>=2.0)", "werkzeug (<2,>=1.0.1)", "itsdangerous (<2,>=1.1.0)", "cachelib (<0.2,>=0.1)", "PyYAML (<6,>=5.4.1)", "pyserial (<4,>=3.4)", "netaddr (<0.9,>=0.8)", "watchdog (==0.10.4)", "sarge (==0.1.6)", "netifaces (<1,>=0.11)", "pylru (<2,>=1.2)", "pkginfo (<2,>=1.7.1)", "requests (<3,>=2.26.0)", "semantic-version (<3,>=2.8.5)", "psutil (<6,>=5.8)", "Click (<8,>=7.1.2)", "future (<1,>=0.18.2)", "websocket-client (<1,>=0.59)", "emoji (<2,>=1.4.2)", "sentry-sdk (<2,>=1.3.1)", "filetype (<2,>=1.0.7)", "zipstream-new (<1.2,>=1.1.8)", "blinker (<2,>=1.4)", "feedparser (<6,>=5.2.1) ; python_version < '3'", "tornado (==5.1.1) ; python_version < '3'", "futures (<4,>=3.3) ; python_version < '3'", "monotonic (<2,>=1.6) ; python_version < '3'", "scandir (<2,>=1.10) ; python_version < '3'", "chainmap (<2,>=1.0.3) ; python_version < '3'", "typing (<4,>=3.10.0.0) ; python_version < '3'", "enum34 (<1.2,>=1.1.10) ; python_version < '3'", "frozendict (==1.2) ; python_version < '3'", "colorlog (<5) ; python_version < '3'", "unidecode (<1.3) ; python_version < '3'", "regex (<2022.1.18) ; python_version < '3'", "feedparser (<7,>=6.0.8) ; python_version >= '3'", "tornado (<7,>=6) ; python_version >= '3'", "zeroconf (<0.34,>=0.33) ; python_version >= '3'", "immutabledict (<3,>=2.1) ; python_version >= '3'", "pathvalidate (<3,>=2.4.1) ; python_version >= '3'", "colorlog (<6,>=5.0.1) ; python_version >= '3'", "unidecode ; python_version >= '3'", "regex ; python_version >= '3'", "appdirs (<2,>=1.4.4) ; sys_platform == 'darwin'", "mock (<4,>=3.0.5) ; extra == 'develop'", "pytest (==4.6.10) ; extra == 'develop'", "pytest-doctest-custom (<2,>=1.0.0) ; extra == 'develop'", "ddt ; extra == 'develop'", "pre-commit ; extra == 'develop'", "pyinstrument ; extra == 'develop'", "sphinx (<4,>=3) ; extra == 'docs'", "sphinxcontrib-httpdomain ; extra == 'docs'", "sphinxcontrib-mermaid ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "readthedocs-sphinx-ext ; extra == 'docs'", "cookiecutter (<1.8,>=1.7.2) ; extra == 'plugins'" ], "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "summary": "The snappy web interface for your 3D printer", "version": "1.7.3", "yanked": false, "yanked_reason": null }, "last_serial": 13490518, "releases": { "1.3.11": [ { "comment_text": "", "digests": { "md5": "d9f1c136ed1abbb3a1764db81858df13", "sha256": "7ffc741c9d4202d78aeeb0b5385c65713cc5e9da59b1dde508681ab6a1c21144" }, "downloads": -1, "filename": "OctoPrint-1.3.11-py2-none-any.whl", "has_sig": false, "md5_digest": "d9f1c136ed1abbb3a1764db81858df13", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7.9,<3", "size": 3071546, "upload_time": "2019-09-04T15:22:09", "upload_time_iso_8601": "2019-09-04T15:22:09.105190Z", "url": "https://files.pythonhosted.org/packages/37/57/24bbb701b5a4b802b88ef22f921fbe5b8debe922ecf4d3c81945a1881905/OctoPrint-1.3.11-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb6796609efa51b7c5922bcb5f90d6e2", "sha256": "5777c1a3b01acc81b5f94633064726e20a235f368382861ac3670868a7a7161a" }, "downloads": -1, "filename": "OctoPrint-1.3.11.tar.gz", "has_sig": false, "md5_digest": "bb6796609efa51b7c5922bcb5f90d6e2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9,<3", "size": 2880004, "upload_time": "2019-09-04T15:22:13", "upload_time_iso_8601": "2019-09-04T15:22:13.693335Z", "url": "https://files.pythonhosted.org/packages/eb/8f/650801fe6b4eee9111ee5fc1600d52b40cf171702edc8f9c02c17460c458/OctoPrint-1.3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.12": [ { "comment_text": "", "digests": { "md5": "2670aa18412a9eb24886206837f64547", "sha256": "7580b368617f98ed3015117d7f927c424c758c75a132969447d868b02bb0e856" }, "downloads": -1, "filename": "OctoPrint-1.3.12.tar.gz", "has_sig": false, "md5_digest": "2670aa18412a9eb24886206837f64547", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9,<3", "size": 2901984, "upload_time": "2019-10-22T10:06:03", "upload_time_iso_8601": "2019-10-22T10:06:03.190293Z", "url": "https://files.pythonhosted.org/packages/42/41/95195f7cc22b8014f23b7643ce87107e7e110b3776ef731b16c36a0ec70a/OctoPrint-1.3.12.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.12rc1": [ { "comment_text": "", "digests": { "md5": "8d2ed7e58e51492c49bf9c64dbe88106", "sha256": "1f380fdba3375978bba1078a8e58f3f56decc9d177a1e6f8007682933095a24c" }, "downloads": -1, "filename": "OctoPrint-1.3.12rc1-py2-none-any.whl", "has_sig": false, "md5_digest": "8d2ed7e58e51492c49bf9c64dbe88106", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7.9,<3", "size": 3088829, "upload_time": "2019-09-10T17:30:17", "upload_time_iso_8601": "2019-09-10T17:30:17.764451Z", "url": "https://files.pythonhosted.org/packages/90/9a/50555eacde1becd6ba3fd4faa5e4bfe74b0cb6ab6f219e46f0cf1ab980f8/OctoPrint-1.3.12rc1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12a682a00aba201305f1a0fe7d0eb8b8", "sha256": "a814493e2c2a03bf6f06431e9901322430e1e122bb99ee37f4708cef5189a453" }, "downloads": -1, "filename": "OctoPrint-1.3.12rc1.tar.gz", "has_sig": false, "md5_digest": "12a682a00aba201305f1a0fe7d0eb8b8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9,<3", "size": 2899383, "upload_time": "2019-09-10T17:30:22", "upload_time_iso_8601": "2019-09-10T17:30:22.614703Z", "url": "https://files.pythonhosted.org/packages/73/40/da5258ee7140da087b032c42a8b434a7f72a75c571eaf3fc2271708e4b72/OctoPrint-1.3.12rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.12rc3": [ { "comment_text": "", "digests": { "md5": "8579c9e03b156bae7fc87a66219eb38f", "sha256": "f7d24a67474f0f87c3d84a3ff791b95e52a141d6465fc8778e17a819a3a10081" }, "downloads": -1, "filename": "OctoPrint-1.3.12rc3.tar.gz", "has_sig": false, "md5_digest": "8579c9e03b156bae7fc87a66219eb38f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9,<3", "size": 2900249, "upload_time": "2019-09-23T13:16:11", "upload_time_iso_8601": "2019-09-23T13:16:11.338326Z", "url": "https://files.pythonhosted.org/packages/99/f7/ef4d7a4edac1c09adb0568e203f0104453c58c8913f6112cece6f7e41135/OctoPrint-1.3.12rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "867ddf5025e7a5ca22af86ad3e8322d2", "sha256": "115f13a8259719859b14565fd33ab6edc7fdcee6e3a97bfacb6728deb36237fd" }, "downloads": -1, "filename": "OctoPrint-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "867ddf5025e7a5ca22af86ad3e8322d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3282118, "upload_time": "2020-03-04T11:46:08", "upload_time_iso_8601": "2020-03-04T11:46:08.169385Z", "url": "https://files.pythonhosted.org/packages/34/cf/4b65ac389663db25d05b3e2ab6dcab9661ba007c1b8a6a1eac84a967b4e3/OctoPrint-1.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "638d546cce3409bb4640ec39f47ad964", "sha256": "bc9ef9c694a15004d36aed2d2b589f6a90d745385ac69c007e1e5837ceffd4ff" }, "downloads": -1, "filename": "OctoPrint-1.4.0.tar.gz", "has_sig": false, "md5_digest": "638d546cce3409bb4640ec39f47ad964", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3045317, "upload_time": "2020-03-04T11:46:12", "upload_time_iso_8601": "2020-03-04T11:46:12.980634Z", "url": "https://files.pythonhosted.org/packages/fc/6c/7d59f5d8eede52ae8f52567f1bc308608c9384f9aaaa178bed822b9dc5fe/OctoPrint-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0rc1": [ { "comment_text": "", "digests": { "md5": "e995a99e9e9eddff38819959da1d98b3", "sha256": "4cc837675bacf29b7ab313c02c43a3f582ef19654e6f154095aaf25eca9e6f89" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e995a99e9e9eddff38819959da1d98b3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3098938, "upload_time": "2019-11-25T16:37:59", "upload_time_iso_8601": "2019-11-25T16:37:59.176934Z", "url": "https://files.pythonhosted.org/packages/3d/e4/b9b5233f67d2af5027e36376d3bbca6a4de678fcab205cb03d820fa52602/OctoPrint-1.4.0rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a16f3719a73c45f322ae59c3f21e28b7", "sha256": "8054795d6b38574f3aa53db92f23c177a2f45a2593f93a6761838e9e520afd5a" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc1.tar.gz", "has_sig": false, "md5_digest": "a16f3719a73c45f322ae59c3f21e28b7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2895883, "upload_time": "2019-11-25T16:38:04", "upload_time_iso_8601": "2019-11-25T16:38:04.485655Z", "url": "https://files.pythonhosted.org/packages/b3/06/efc0ae68a09b9d62cc0514250c4e5ce9c04ec7c669204263c678c5ff20ed/OctoPrint-1.4.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0rc2": [ { "comment_text": "", "digests": { "md5": "434fc15ae98a9ee574939840c63de902", "sha256": "468e06ab5fd314b69c4ffcc5dda53d2334a643edb2d96cc38d410d4a1077ba5c" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "434fc15ae98a9ee574939840c63de902", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3099007, "upload_time": "2019-12-02T15:15:06", "upload_time_iso_8601": "2019-12-02T15:15:06.881704Z", "url": "https://files.pythonhosted.org/packages/7b/5c/aa4873e932c7e3bd4cca6ca7c7f505fc9d991b4cce156ed2606d53b398b4/OctoPrint-1.4.0rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b96109f095293849c4883ecadfd7a6a9", "sha256": "5544604a156bbeca1dc8ce27191805718a19d92119fe91a8ecda0a4cf69f97e8" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc2.tar.gz", "has_sig": false, "md5_digest": "b96109f095293849c4883ecadfd7a6a9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2895886, "upload_time": "2019-12-02T15:15:17", "upload_time_iso_8601": "2019-12-02T15:15:17.981044Z", "url": "https://files.pythonhosted.org/packages/c2/a4/742603d16121d977d18bc44afde4ef01fbe41cc9fe72d2dbc6f8886e3de7/OctoPrint-1.4.0rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0rc3": [ { "comment_text": "", "digests": { "md5": "6c773a9403ebfb7b5dc329ebc881ccfb", "sha256": "a8bc9c483622fb7d7536c942d7e3d30fefc416ac2a78b75eb17a9e1fcf11baab" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6c773a9403ebfb7b5dc329ebc881ccfb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3106180, "upload_time": "2019-12-12T13:52:34", "upload_time_iso_8601": "2019-12-12T13:52:34.400855Z", "url": "https://files.pythonhosted.org/packages/ad/36/482c64cd4d961c33614d5aa74b64ffec3df485883e50ee7920065470f6cf/OctoPrint-1.4.0rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fca90e26e0f9c93e85f39ea6fc9a4298", "sha256": "0aac813625cbb4761d49d46dfb9ed63275d70a2fadf4b2b7ac3bbc58c6645819" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc3.tar.gz", "has_sig": false, "md5_digest": "fca90e26e0f9c93e85f39ea6fc9a4298", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2902579, "upload_time": "2019-12-12T13:52:04", "upload_time_iso_8601": "2019-12-12T13:52:04.377487Z", "url": "https://files.pythonhosted.org/packages/47/df/316991946abdda68c69b81d693076edf77f2ff85e742bb45d409a60a1729/OctoPrint-1.4.0rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0rc4": [], "1.4.0rc5": [ { "comment_text": "", "digests": { "md5": "6268b3ea2e06a13a5c7a7f1239285ae1", "sha256": "d0a8eeb8b595f757d38209f79130ac3d9eded3301747e5a826c2af07d344a058" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6268b3ea2e06a13a5c7a7f1239285ae1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3109046, "upload_time": "2020-02-11T13:32:18", "upload_time_iso_8601": "2020-02-11T13:32:18.958323Z", "url": "https://files.pythonhosted.org/packages/77/3a/78ac6cd36f00189e5e5a1e2b30c27b21606b0d46a573f5ff6d9c5783bd89/OctoPrint-1.4.0rc5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "199e813a3cf2958393454eac3ee8d54f", "sha256": "0911510984392b71da6d04b880082942e930ca2aa647b1a7fa516d640b3172fb" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc5.tar.gz", "has_sig": false, "md5_digest": "199e813a3cf2958393454eac3ee8d54f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2904734, "upload_time": "2020-02-11T13:32:23", "upload_time_iso_8601": "2020-02-11T13:32:23.795716Z", "url": "https://files.pythonhosted.org/packages/e9/3d/3cb490096c28fbb4808669969905adaa3bee31f75e9b2b01882c4b0ff502/OctoPrint-1.4.0rc5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0rc6": [ { "comment_text": "", "digests": { "md5": "fa74614ceda751d01deb3c9c9173a012", "sha256": "1e0d952b57f6076c32235840f9b01ca6078c4d4f9257f210253d54e6e27ca973" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa74614ceda751d01deb3c9c9173a012", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3262330, "upload_time": "2020-02-26T14:16:09", "upload_time_iso_8601": "2020-02-26T14:16:09.489977Z", "url": "https://files.pythonhosted.org/packages/13/b6/4093df2f09dc07c8652715c790897673bec7b7f08e9a97493f67b1500d1e/OctoPrint-1.4.0rc6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9cb5a7784a285434b84187f58e9bda56", "sha256": "d414815341a196931a03c2b484b077a032209cf2da6b9520bf658f3c5450fa99" }, "downloads": -1, "filename": "OctoPrint-1.4.0rc6.tar.gz", "has_sig": false, "md5_digest": "9cb5a7784a285434b84187f58e9bda56", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3026329, "upload_time": "2020-02-26T14:16:13", "upload_time_iso_8601": "2020-02-26T14:16:13.770874Z", "url": "https://files.pythonhosted.org/packages/f8/c0/2b349e2eec75a9f0eb952d6150223b29e878270d67059c707cdb1a056b4f/OctoPrint-1.4.0rc6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "1950742b829090d438884983085dc464", "sha256": "80b6b127ac89e4fded731ebe5e62ec9a1636e3512bf74d9f3a5f0dee011ef80c" }, "downloads": -1, "filename": "OctoPrint-1.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1950742b829090d438884983085dc464", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2860720, "upload_time": "2020-08-04T09:55:58", "upload_time_iso_8601": "2020-08-04T09:55:58.400531Z", "url": "https://files.pythonhosted.org/packages/08/8f/37a9e94bcf26e810319c6f0928e6d8e0c6de487915908bf19ad65325d37c/OctoPrint-1.4.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da06271188a7f9f6474d012a8e063aed", "sha256": "25cbe06bdf4320054e68420b66e1dead1a8ff9fc8be5bafb545e51edb84c820b" }, "downloads": -1, "filename": "OctoPrint-1.4.1.tar.gz", "has_sig": false, "md5_digest": "da06271188a7f9f6474d012a8e063aed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2646992, "upload_time": "2020-08-04T09:56:01", "upload_time_iso_8601": "2020-08-04T09:56:01.690785Z", "url": "https://files.pythonhosted.org/packages/67/c6/a771b3bca5fdafb38cf3b3ecf6f0663f789b4a50491cece81fdd33ba8400/OctoPrint-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1rc1": [ { "comment_text": "", "digests": { "md5": "177f70c1ccd03de44cb629336d3f8ad5", "sha256": "c6aa5a6ea5f171fd7928d02a229b9e806faea6e07d2ce3009d8da75e225cffea" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "177f70c1ccd03de44cb629336d3f8ad5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3369576, "upload_time": "2020-07-06T12:03:49", "upload_time_iso_8601": "2020-07-06T12:03:49.603500Z", "url": "https://files.pythonhosted.org/packages/d0/c1/f49767efffbd5f79f99728c93845e04ad29b3d82534585bae9490066c47a/OctoPrint-1.4.1rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a81cb8d744016ea87c30f8dd4ec937d", "sha256": "faf0e18626f7bb469255549d480910256a62a0644672eb96ea91241d16be56b0" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc1.tar.gz", "has_sig": false, "md5_digest": "4a81cb8d744016ea87c30f8dd4ec937d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3020868, "upload_time": "2020-07-06T12:05:07", "upload_time_iso_8601": "2020-07-06T12:05:07.659961Z", "url": "https://files.pythonhosted.org/packages/66/52/b5b3bc342da1aef4ae3a1375d3f7c939c698947b7d92061e883dd2c2dcb5/OctoPrint-1.4.1rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1rc2": [ { "comment_text": "", "digests": { "md5": "204a3f82b1da0ece9311b993dd6e1a72", "sha256": "c82db6d808e07553afcc5bea7230ef4fa0cd42c2bcd357421b006eb1019dd482" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "204a3f82b1da0ece9311b993dd6e1a72", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2856918, "upload_time": "2020-07-08T11:37:10", "upload_time_iso_8601": "2020-07-08T11:37:10.230098Z", "url": "https://files.pythonhosted.org/packages/11/91/fef7da12cb5578d27ba728faaf9310e9dd4101ad981407259fe919ea67d0/OctoPrint-1.4.1rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4b0ad68e9502e6f2aabfd8d0bb3f2e07", "sha256": "ca503f4c7eacc8003a4b1d2ba26b43812276edaf1d803f3e246cdd411e4642cc" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc2.tar.gz", "has_sig": false, "md5_digest": "4b0ad68e9502e6f2aabfd8d0bb3f2e07", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2643587, "upload_time": "2020-07-08T11:37:11", "upload_time_iso_8601": "2020-07-08T11:37:11.875784Z", "url": "https://files.pythonhosted.org/packages/da/6d/72bc005294675892ed4e636197adc3d22abf46bf781b3cd5340cf2bcc6e0/OctoPrint-1.4.1rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1rc3": [ { "comment_text": "", "digests": { "md5": "fe84ba6f51ce4811637699fd2d331cc2", "sha256": "4072dd80d44eb5550bb00c4636d54149c2cede3fa5c6c616ab22db4612a348a2" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe84ba6f51ce4811637699fd2d331cc2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2860428, "upload_time": "2020-07-15T12:16:13", "upload_time_iso_8601": "2020-07-15T12:16:13.192137Z", "url": "https://files.pythonhosted.org/packages/90/05/1df5bda0105830c4576d58d6504cb74faaf32881b7a0e7cd6d462b042bf8/OctoPrint-1.4.1rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcab50f7e54aaf21f93160f006eacee0", "sha256": "7361aad29d2c70f5e3166637c455743cb20f271f9883700752f3b8ca9377d11d" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc3.tar.gz", "has_sig": false, "md5_digest": "fcab50f7e54aaf21f93160f006eacee0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2646867, "upload_time": "2020-07-15T12:16:15", "upload_time_iso_8601": "2020-07-15T12:16:15.050609Z", "url": "https://files.pythonhosted.org/packages/28/8e/3b56db98809c1699207b67b1d3a244daddc72f7c5f51196197d3a8fea267/OctoPrint-1.4.1rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1rc4": [ { "comment_text": "", "digests": { "md5": "fa66f4eb3641d3d7bbdebc87dc26ced8", "sha256": "211fa50bae85117755ece16834210e7edcab58df360e0050fb88606f66463ff0" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa66f4eb3641d3d7bbdebc87dc26ced8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2860730, "upload_time": "2020-07-29T10:15:02", "upload_time_iso_8601": "2020-07-29T10:15:02.402782Z", "url": "https://files.pythonhosted.org/packages/07/39/4667cc0e539a51b87b6510378e87efe116c070a95551a760feca6d90512b/OctoPrint-1.4.1rc4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0d74ae443e2d51065a1c1dedfd921a3", "sha256": "2d65e39ce80f46ea53ca69f661f0a7af3e39d9df9a2ae7e7cccc472d873e366f" }, "downloads": -1, "filename": "OctoPrint-1.4.1rc4.tar.gz", "has_sig": false, "md5_digest": "b0d74ae443e2d51065a1c1dedfd921a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2647138, "upload_time": "2020-07-29T10:15:05", "upload_time_iso_8601": "2020-07-29T10:15:05.658778Z", "url": "https://files.pythonhosted.org/packages/3d/c1/3d53e822371e41dbd15910bd3e0fb95e6aa4b9101ad24e699a6fd1503c81/OctoPrint-1.4.1rc4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "ee0e3a04a4d12130a0a1e1cfb7c89cf3", "sha256": "5c57029a831136b8647035ca389a0197756437a738828c0d6313ab3cd4338cd7" }, "downloads": -1, "filename": "OctoPrint-1.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee0e3a04a4d12130a0a1e1cfb7c89cf3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2860963, "upload_time": "2020-08-06T11:58:36", "upload_time_iso_8601": "2020-08-06T11:58:36.001031Z", "url": "https://files.pythonhosted.org/packages/9f/f1/ed1548133d1a54e1fcf01c68b8d2d6fb0051bce55e1d3bfc5aa5b0bfdcc4/OctoPrint-1.4.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69fed5edc35038eeb17315ab8bc1a644", "sha256": "a4e242bbaabae77cafdb35d99159f20090cf341864187e1423697bfe8461d1c2" }, "downloads": -1, "filename": "OctoPrint-1.4.2.tar.gz", "has_sig": false, "md5_digest": "69fed5edc35038eeb17315ab8bc1a644", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 2647103, "upload_time": "2020-08-06T11:58:37", "upload_time_iso_8601": "2020-08-06T11:58:37.366192Z", "url": "https://files.pythonhosted.org/packages/2b/57/d830a206fe3e6496d9e6af718bde5516fe8d021a1d49a828509b876d8648/OctoPrint-1.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "a47084ad1a364d98cf8c6ba268a7f0cf", "sha256": "6cb09c959931d8a092ef196dfb85098a3b77c79b8e84e419116fce206ab4d55c" }, "downloads": -1, "filename": "OctoPrint-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a47084ad1a364d98cf8c6ba268a7f0cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3775237, "upload_time": "2020-11-30T14:59:52", "upload_time_iso_8601": "2020-11-30T14:59:52.292058Z", "url": "https://files.pythonhosted.org/packages/39/0b/39294282fff999493ad0e79ca9a50a3103297b0d6b6fe392ad7db0d9fa19/OctoPrint-1.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c001da954e945545ad3729d1abb8a0cc", "sha256": "2b8df60d0fece72203b534b123e3a8b06cf7c2f2781a6f52a2a2040409483291" }, "downloads": -1, "filename": "OctoPrint-1.5.0.tar.gz", "has_sig": false, "md5_digest": "c001da954e945545ad3729d1abb8a0cc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3561805, "upload_time": "2020-11-30T14:59:54", "upload_time_iso_8601": "2020-11-30T14:59:54.145067Z", "url": "https://files.pythonhosted.org/packages/89/f6/bd6544fcda6f69a31da3e2d9ccb3a89cb80a5c78673e5d2924e48c0b55db/OctoPrint-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0rc1": [ { "comment_text": "", "digests": { "md5": "c14a69088c4c3b956633685ffb88de50", "sha256": "ccb353f8ecef63d644074f8362ba6ff323a09f68093961354288844d21515885" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c14a69088c4c3b956633685ffb88de50", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3772488, "upload_time": "2020-11-10T14:42:33", "upload_time_iso_8601": "2020-11-10T14:42:33.635721Z", "url": "https://files.pythonhosted.org/packages/7c/db/e674ce1dd1f193d3a4aff1578875afddb799815de54b777bac5dd9302aa7/OctoPrint-1.5.0rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f20d344393fde8f792d7d122a221c6a8", "sha256": "e8c461e8ed349f8b16ede291bedac991ecf8ba2d109e416983bd793279c9c036" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc1.tar.gz", "has_sig": false, "md5_digest": "f20d344393fde8f792d7d122a221c6a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3559227, "upload_time": "2020-11-10T14:42:35", "upload_time_iso_8601": "2020-11-10T14:42:35.350436Z", "url": "https://files.pythonhosted.org/packages/3b/bc/07d5688d9307c9f4b0f42813cc23eb75456efaa555c7520e064ea41413a5/OctoPrint-1.5.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0rc2": [ { "comment_text": "", "digests": { "md5": "691464089dde63077e8e439c7527ad89", "sha256": "3dc14845f1f0ce09c3c3369db39f92d58404b9002dd05a4e4b444e24ef158c7e" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "691464089dde63077e8e439c7527ad89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3774627, "upload_time": "2020-11-17T14:54:48", "upload_time_iso_8601": "2020-11-17T14:54:48.790074Z", "url": "https://files.pythonhosted.org/packages/96/46/d1bf546072ca2bfe2d13c3e5a87b36ccf10ae4decf86b74a0dd892261643/OctoPrint-1.5.0rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d2863265f6cd07e5f252284ff7f607b", "sha256": "22b7352fcfbcae9dc8aad1c8d5eb05b81e1da2664c79665bbc4fb902e11b4ae1" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc2.tar.gz", "has_sig": false, "md5_digest": "9d2863265f6cd07e5f252284ff7f607b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3561970, "upload_time": "2020-11-17T14:54:50", "upload_time_iso_8601": "2020-11-17T14:54:50.253720Z", "url": "https://files.pythonhosted.org/packages/8f/0a/67f25577a43f9a23aba462010b2f5fbfd2db3712aa3f3892885178a459cf/OctoPrint-1.5.0rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0rc3": [ { "comment_text": "", "digests": { "md5": "f8346b0707b2b34474f5e11bf09c8f1a", "sha256": "8a7b50bc88607197b30894472cff52a9d8a3c8cfafdc6b57bf6c69d1a7d40712" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8346b0707b2b34474f5e11bf09c8f1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3774636, "upload_time": "2020-11-18T15:24:43", "upload_time_iso_8601": "2020-11-18T15:24:43.091896Z", "url": "https://files.pythonhosted.org/packages/b9/6b/81f1412a5c4da5a7142f6e9562a670bc8abf71edf57fe4ed8b63b1cdda6a/OctoPrint-1.5.0rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe23a2feddbbafb6d93aa33e501477b6", "sha256": "53a712e5010da5a9e0756b42bf4d949e6a8aaedc3d04e348327c871922007b10" }, "downloads": -1, "filename": "OctoPrint-1.5.0rc3.tar.gz", "has_sig": false, "md5_digest": "fe23a2feddbbafb6d93aa33e501477b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3561691, "upload_time": "2020-11-18T15:24:44", "upload_time_iso_8601": "2020-11-18T15:24:44.334954Z", "url": "https://files.pythonhosted.org/packages/d9/da/1de52b81662216494135e17155e2268c7463d6b2cfad95552e6ad4316abc/OctoPrint-1.5.0rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "55601c91d7e266630b5f2f6c6fd9a78c", "sha256": "4d74db8d06df068d3bd3e31e3119641b1def48689e47d5ec91955d6d4cee5e40" }, "downloads": -1, "filename": "OctoPrint-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "55601c91d7e266630b5f2f6c6fd9a78c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3775346, "upload_time": "2020-12-04T10:55:46", "upload_time_iso_8601": "2020-12-04T10:55:46.466101Z", "url": "https://files.pythonhosted.org/packages/1a/01/1689c5fdbb090eb9424347eda8005a093f84aef45187e1575511f2eb9a8c/OctoPrint-1.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7933c15ed4af41085cd1fb14f5555f2", "sha256": "2fe4d677a10912e4f05b472403be2e8527781be0f3b51d859b7e9cc5b9770d1f" }, "downloads": -1, "filename": "OctoPrint-1.5.1.tar.gz", "has_sig": false, "md5_digest": "d7933c15ed4af41085cd1fb14f5555f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3562174, "upload_time": "2020-12-04T10:55:47", "upload_time_iso_8601": "2020-12-04T10:55:47.980689Z", "url": "https://files.pythonhosted.org/packages/11/d2/b99143d498fc6b0b4ddbb52cb850066268109dbd76b4b9afbff8526a5519/OctoPrint-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "177e8528a61ef74a611ecfd7b56fa498", "sha256": "7aa3845ec8382cc93bfa752f2b95e6932710bb3d630947e5263ae932998cbce8" }, "downloads": -1, "filename": "OctoPrint-1.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "177e8528a61ef74a611ecfd7b56fa498", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3775489, "upload_time": "2020-12-10T12:43:06", "upload_time_iso_8601": "2020-12-10T12:43:06.515074Z", "url": "https://files.pythonhosted.org/packages/19/cf/40af1cb71ca3523491ec05d2d1c5cacb667eee20a6cce64ab727ffc54876/OctoPrint-1.5.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12d0788184435d0c55f68b7a4616ad5a", "sha256": "c4531f8cb10f5afdabad086d88422643ddf962e5381c9a9854e6004318bd5c1e" }, "downloads": -1, "filename": "OctoPrint-1.5.2.tar.gz", "has_sig": false, "md5_digest": "12d0788184435d0c55f68b7a4616ad5a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3562193, "upload_time": "2020-12-10T12:43:08", "upload_time_iso_8601": "2020-12-10T12:43:08.045500Z", "url": "https://files.pythonhosted.org/packages/e5/f3/bb5261864cd9ff0f88664f822b8f2a411f57360949f945940c4336c9e624/OctoPrint-1.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "e4d0350b32cbb17d10b814c0908d348f", "sha256": "253372cf3537a1e2bcc269a022f83e0d2cae70bbc0744c4826f703eef15903d0" }, "downloads": -1, "filename": "OctoPrint-1.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4d0350b32cbb17d10b814c0908d348f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3776140, "upload_time": "2021-01-19T10:37:35", "upload_time_iso_8601": "2021-01-19T10:37:35.484005Z", "url": "https://files.pythonhosted.org/packages/42/66/924341de7e2956be2a12cd071f9a21e66af201a379fdfe987ac34a39efc0/OctoPrint-1.5.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "775747470920685dd71a9b67e4ff7191", "sha256": "89ae85920c005090b8adbec1fd3364873459c6f342c412375f1b60bb3496ae0d" }, "downloads": -1, "filename": "OctoPrint-1.5.3.tar.gz", "has_sig": false, "md5_digest": "775747470920685dd71a9b67e4ff7191", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3563022, "upload_time": "2021-01-19T10:37:37", "upload_time_iso_8601": "2021-01-19T10:37:37.635604Z", "url": "https://files.pythonhosted.org/packages/6b/9e/cc6c21c7b522448f8837d72301807ae1342526d32c9d3da4e27e4643206b/OctoPrint-1.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "4b64395a15420b8e1e3e5bd73d3d6483", "sha256": "cd6ddb84a9bec7d292312d128858e5b9cdf52067faeaf422fd6f9ca311a9d444" }, "downloads": -1, "filename": "OctoPrint-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b64395a15420b8e1e3e5bd73d3d6483", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3868314, "upload_time": "2021-04-27T09:26:08", "upload_time_iso_8601": "2021-04-27T09:26:08.533426Z", "url": "https://files.pythonhosted.org/packages/a8/0d/6c6b81599f4a6e83dc65f98783e3840e87ecd656e2e0f4a615dd795f6a10/OctoPrint-1.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "977a33f43459e86ca6d4774375ba1d2f", "sha256": "8598b6d40dcd648370dd7cadf9179ec53dd1149347f88e3c293e5d2aa51caa28" }, "downloads": -1, "filename": "OctoPrint-1.6.0.tar.gz", "has_sig": false, "md5_digest": "977a33f43459e86ca6d4774375ba1d2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3652184, "upload_time": "2021-04-27T09:26:09", "upload_time_iso_8601": "2021-04-27T09:26:09.900196Z", "url": "https://files.pythonhosted.org/packages/2b/f5/f0c1eb42fecf8e263b79bc1c36fd0fc2479b9d9b9af626d3b4e230524933/OctoPrint-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0rc1": [ { "comment_text": "", "digests": { "md5": "84a2746e0a1b6ebe30dc451ed44b543e", "sha256": "c83310de273aee6b82a3b68212001a9dca6e3cc6e7ad1d216b6cd16badabde72" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "84a2746e0a1b6ebe30dc451ed44b543e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 4048299, "upload_time": "2021-03-30T13:02:34", "upload_time_iso_8601": "2021-03-30T13:02:34.504139Z", "url": "https://files.pythonhosted.org/packages/81/da/a8f625d205218ab4cef77134c76fe5c9a8ec62092deeb5efedb7667d1252/OctoPrint-1.6.0rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fc205693cef199a9d1c272cd7fdad26", "sha256": "e15d987b0a29bed3f39926dd73cefd730587952488172518a73a55474584e83b" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc1.tar.gz", "has_sig": false, "md5_digest": "8fc205693cef199a9d1c272cd7fdad26", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3805280, "upload_time": "2021-03-30T13:02:38", "upload_time_iso_8601": "2021-03-30T13:02:38.442350Z", "url": "https://files.pythonhosted.org/packages/0a/9a/628b74b06e4d3b24baf77a2dec85a8e565c8e62699a75b53e990ad5414c4/OctoPrint-1.6.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0rc2": [ { "comment_text": "", "digests": { "md5": "a9a4c409d28eb80fcd8bb1739b2181b7", "sha256": "8e593a7ae8439cfe467525243587c997058b53adcb1575ff07ac342002540cc2" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a9a4c409d28eb80fcd8bb1739b2181b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 4049299, "upload_time": "2021-04-14T13:38:51", "upload_time_iso_8601": "2021-04-14T13:38:51.936968Z", "url": "https://files.pythonhosted.org/packages/9d/27/828c89fbe33d0f49f44bb43dd15becf00dd12e95f02074640b373ed087d0/OctoPrint-1.6.0rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4834a9c013d6d3de4dfb438341a6715", "sha256": "9fa50dd4c1bc309832ac1e40a51c2171dc61a8a4d1aa6e3addb572a314046a81" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc2.tar.gz", "has_sig": false, "md5_digest": "e4834a9c013d6d3de4dfb438341a6715", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3828954, "upload_time": "2021-04-14T13:38:56", "upload_time_iso_8601": "2021-04-14T13:38:56.607106Z", "url": "https://files.pythonhosted.org/packages/c8/14/475bd64c21c495cc67f322e7b19bdceae95958592fddff05d3a02e5e587d/OctoPrint-1.6.0rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0rc3": [ { "comment_text": "", "digests": { "md5": "9a7a5a62fff6f00b0858fc6831f54ee6", "sha256": "a8ac1624b6a38b823a2d60e881fde5d874a8ca9c1843d2ca577c1226d9c56204" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a7a5a62fff6f00b0858fc6831f54ee6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 4049998, "upload_time": "2021-04-21T14:37:05", "upload_time_iso_8601": "2021-04-21T14:37:05.046790Z", "url": "https://files.pythonhosted.org/packages/dd/9c/0c38e1d686fc91aaeb3e52d0983de8a95dfb86f5aafc83349760d68dcd70/OctoPrint-1.6.0rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba3e6584f42250ebdb0e9adf0e88d6e5", "sha256": "17c6e9382431767674cb438e345020ca1b8a00ce4de61fdaad63ca44bdfb8f58" }, "downloads": -1, "filename": "OctoPrint-1.6.0rc3.tar.gz", "has_sig": false, "md5_digest": "ba3e6584f42250ebdb0e9adf0e88d6e5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3829848, "upload_time": "2021-04-21T14:37:08", "upload_time_iso_8601": "2021-04-21T14:37:08.316171Z", "url": "https://files.pythonhosted.org/packages/5a/7d/0c5a81f7366f979a7f528e2d8e5dd8fb48ad03a3e1097260fb746853b0ae/OctoPrint-1.6.0rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "a0c86d68688f7c2bd30fe0e52436ecbc", "sha256": "190c74043ec334ffb1ee24afd3d1d35bc83a31480b77c80a2518b3741be9d3e0" }, "downloads": -1, "filename": "OctoPrint-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a0c86d68688f7c2bd30fe0e52436ecbc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3868449, "upload_time": "2021-05-10T13:31:24", "upload_time_iso_8601": "2021-05-10T13:31:24.575755Z", "url": "https://files.pythonhosted.org/packages/54/f7/504e8ebd62d2f80359b3405a8e0a40f9e2583bbe1ab4ba6f0eb5147c12dd/OctoPrint-1.6.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e188b5c60a5baf41f8739b26f5c82c3a", "sha256": "87747809f27177dcddc318f46221b9aacaed8e45e3a28ce11c61990afebc1e16" }, "downloads": -1, "filename": "OctoPrint-1.6.1.tar.gz", "has_sig": false, "md5_digest": "e188b5c60a5baf41f8739b26f5c82c3a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3652577, "upload_time": "2021-05-10T13:31:25", "upload_time_iso_8601": "2021-05-10T13:31:25.976626Z", "url": "https://files.pythonhosted.org/packages/1e/71/1ec7562ec80ecfcc1961201e1032a0be10d0a9cfb9b8a46cff79566b7361/OctoPrint-1.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "f1c2edbcf653da326b387338d682721f", "sha256": "10ff374215c9c5d18928b86463ea109fc8be9a6fdf746160c64d65d94a48c7d9" }, "downloads": -1, "filename": "OctoPrint-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1c2edbcf653da326b387338d682721f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883403, "upload_time": "2021-10-11T14:00:13", "upload_time_iso_8601": "2021-10-11T14:00:13.887518Z", "url": "https://files.pythonhosted.org/packages/59/7c/2fe13ede93c96a7316476cea1c075e6afda9a78d20d1ae9f05cc42ff8c98/OctoPrint-1.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3bb4b4d8bf45dcaa4848156ebf49035", "sha256": "d8fcedd84be15edd0e860732ea4bf61232cc860ba412eea73da0d7375ff2a089" }, "downloads": -1, "filename": "OctoPrint-1.7.0.tar.gz", "has_sig": false, "md5_digest": "d3bb4b4d8bf45dcaa4848156ebf49035", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665795, "upload_time": "2021-10-11T14:00:15", "upload_time_iso_8601": "2021-10-11T14:00:15.759388Z", "url": "https://files.pythonhosted.org/packages/65/49/1622c78b2e0aa45c853ff21e20d14072d353a89d2127d0bea150ecc20bed/OctoPrint-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0rc1": [ { "comment_text": "", "digests": { "md5": "9347d8884c464b388088f60d5fad3db3", "sha256": "ab5f213d71be0a8f9510d663fa96e6138674b297f86b988971c48bc424b09847" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9347d8884c464b388088f60d5fad3db3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883187, "upload_time": "2021-08-04T13:43:13", "upload_time_iso_8601": "2021-08-04T13:43:13.030402Z", "url": "https://files.pythonhosted.org/packages/4b/a4/6edcf470b4f04b6a1ed1115b765ea25dd3d636778797da6da92a2b14d84c/OctoPrint-1.7.0rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f41f1784e9bf8a1e5d504fb87a0f8005", "sha256": "c6e8de2c49015a81b870de4fedc7af24a6bc9ed25e562bf247b217fff13269ad" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc1.tar.gz", "has_sig": false, "md5_digest": "f41f1784e9bf8a1e5d504fb87a0f8005", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665825, "upload_time": "2021-08-04T13:43:15", "upload_time_iso_8601": "2021-08-04T13:43:15.026792Z", "url": "https://files.pythonhosted.org/packages/5e/45/1bf56cfa1b8d95543b7c5a6a40fe53a9b03bc752025c350b3a8514d87e1a/OctoPrint-1.7.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0rc2": [ { "comment_text": "", "digests": { "md5": "0bd26f21cb10228f6890b47f74a97dc0", "sha256": "139fb20a23ba0e2b9c9ec8d3494cac9c01db65748c3ac396a65d2ea223a0367e" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0bd26f21cb10228f6890b47f74a97dc0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883192, "upload_time": "2021-08-11T12:46:12", "upload_time_iso_8601": "2021-08-11T12:46:12.201475Z", "url": "https://files.pythonhosted.org/packages/29/9a/c65fab16da284c5b2450646a5543a2191e37e08d4bd6dd7c9f67f05ced48/OctoPrint-1.7.0rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39818c0a04c5d85376ee45fdee71bae3", "sha256": "15f711fcdc6c25747bd2bb40ca726e4fe1038070784639be306a4fd80879f3ea" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc2.tar.gz", "has_sig": false, "md5_digest": "39818c0a04c5d85376ee45fdee71bae3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665897, "upload_time": "2021-08-11T12:46:14", "upload_time_iso_8601": "2021-08-11T12:46:14.075296Z", "url": "https://files.pythonhosted.org/packages/a7/d9/9598cd450cd625691e77f493aeafba69233cbc92d8caa39db61ac7582290/OctoPrint-1.7.0rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0rc3": [ { "comment_text": "", "digests": { "md5": "631974ff3a19077c628aad6dcde5e5ed", "sha256": "72c82f9daa7b043528177c05b921434df8c05183fc305503615ac5305897c96b" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "631974ff3a19077c628aad6dcde5e5ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883223, "upload_time": "2021-09-13T11:47:26", "upload_time_iso_8601": "2021-09-13T11:47:26.510378Z", "url": "https://files.pythonhosted.org/packages/cb/a4/cf2baea0fa44e03dd3aed72c424fcc6d20fee2d3c3a1409ea5c0a6ca46b8/OctoPrint-1.7.0rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bf9bb89f7cb3d7708a77ad2d9d459cb5", "sha256": "6a421c8ee7c03bd771f95fa476c25f5b97cacccf92332129a9d7085dfbf44162" }, "downloads": -1, "filename": "OctoPrint-1.7.0rc3.tar.gz", "has_sig": false, "md5_digest": "bf9bb89f7cb3d7708a77ad2d9d459cb5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665974, "upload_time": "2021-09-13T11:47:28", "upload_time_iso_8601": "2021-09-13T11:47:28.043149Z", "url": "https://files.pythonhosted.org/packages/fc/b2/9a423e50416cd163d89b9ff144e4c76e05ba36cbf7ee97d4d12fb8df1f6a/OctoPrint-1.7.0rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "3a87527f7165995038cc017bbc5e1386", "sha256": "4954737b36ccc6dbd16fbd4ab810a62d437a1183215f8e2f2f3829e5af12a5bf" }, "downloads": -1, "filename": "OctoPrint-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3a87527f7165995038cc017bbc5e1386", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883610, "upload_time": "2021-11-01T15:06:47", "upload_time_iso_8601": "2021-11-01T15:06:47.944165Z", "url": "https://files.pythonhosted.org/packages/26/ad/ea4eb9d661b102260d3ede659138cd14579334a90a38cca6d1631ffcbee8/OctoPrint-1.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c36b50edaa0fc0a0bf928dd6612a7c8e", "sha256": "8a5f0dfd30c091db7f4d5360fd44f2ef81da74a55228f442b0372c87fa88d14b" }, "downloads": -1, "filename": "OctoPrint-1.7.1.tar.gz", "has_sig": false, "md5_digest": "c36b50edaa0fc0a0bf928dd6612a7c8e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665752, "upload_time": "2021-11-01T15:06:50", "upload_time_iso_8601": "2021-11-01T15:06:50.054393Z", "url": "https://files.pythonhosted.org/packages/04/66/0a468eb6e90bbfdb749382ff9c8c9912938426affe37165556f0d70e3776/OctoPrint-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "66134daef09e67ad7adead89dac9ba4e", "sha256": "59135b048eef710478565b8fa5eab80edbd2c06824e966a11ebe200d464da2a6" }, "downloads": -1, "filename": "OctoPrint-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66134daef09e67ad7adead89dac9ba4e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883612, "upload_time": "2021-11-02T17:35:56", "upload_time_iso_8601": "2021-11-02T17:35:56.512506Z", "url": "https://files.pythonhosted.org/packages/85/f9/643f8de22bc50d11afee9560e0557859f0af7993c79cd4794c79bcd4d8c4/OctoPrint-1.7.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "675f21b8cae42609f65e564880d65e30", "sha256": "d4c5fb2553640b74458c5b75ee69daf7ab0609cd2450bda7b9ce84c0d0977311" }, "downloads": -1, "filename": "OctoPrint-1.7.2.tar.gz", "has_sig": false, "md5_digest": "675f21b8cae42609f65e564880d65e30", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665870, "upload_time": "2021-11-02T17:35:58", "upload_time_iso_8601": "2021-11-02T17:35:58.158004Z", "url": "https://files.pythonhosted.org/packages/d3/91/b655fe9bf815ba03bc42d9e2cd4758f24ae7910e99213142be795ba5e0f0/OctoPrint-1.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "60eb689f34feac693567e31222ab3980", "sha256": "78b2b1def333451a565e74342a86980d15c0e3437fd7821a6ee15d806d7b0020" }, "downloads": -1, "filename": "OctoPrint-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60eb689f34feac693567e31222ab3980", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883626, "upload_time": "2022-01-20T11:28:11", "upload_time_iso_8601": "2022-01-20T11:28:11.462537Z", "url": "https://files.pythonhosted.org/packages/dd/89/ddb040487335d30de05ce9e0abb39b37c8dd57f2736c2a1e144e88dbd79d/OctoPrint-1.7.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c26870b2af0e37f5a6209d773ccb25e6", "sha256": "125a8f94a02e2e74a6df9e393b401d4c23d7766546896ba2f9e7699fd3da9602" }, "downloads": -1, "filename": "OctoPrint-1.7.3.tar.gz", "has_sig": false, "md5_digest": "c26870b2af0e37f5a6209d773ccb25e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665812, "upload_time": "2022-01-20T11:28:13", "upload_time_iso_8601": "2022-01-20T11:28:13.464602Z", "url": "https://files.pythonhosted.org/packages/a6/48/6a8c888ace6ec432175d8bc474665432b2a9a608aaf2705c58d3dfbd8e92/OctoPrint-1.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0rc1": [ { "comment_text": "", "digests": { "md5": "306d38fecd9ab1d9a9648bd88d91fef5", "sha256": "d146e3533b3adaada96c48664fb42c131f6a5a7b4d440bcffae754047a7640ff" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "306d38fecd9ab1d9a9648bd88d91fef5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7, <4", "size": 3895283, "upload_time": "2022-03-14T11:24:04", "upload_time_iso_8601": "2022-03-14T11:24:04.871889Z", "url": "https://files.pythonhosted.org/packages/e5/9b/c0e59c0be9c1b544b9378e7f3c24285b5b3254680e09c76ccebacf5c67fe/OctoPrint-1.8.0rc1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b23693845bebea290704049d3bc0bb5", "sha256": "6e85dcc7efe0993dc421047c979294fa82f1a16fd4f3ea7b79965803e5df3deb" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc1.tar.gz", "has_sig": false, "md5_digest": "5b23693845bebea290704049d3bc0bb5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7, <4", "size": 3676705, "upload_time": "2022-03-14T11:24:07", "upload_time_iso_8601": "2022-03-14T11:24:07.328323Z", "url": "https://files.pythonhosted.org/packages/e9/d2/8eb22e74da14f1b47801842d4a99fd30b29b0ebf7407702e528643a3d63a/OctoPrint-1.8.0rc1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0rc2": [ { "comment_text": "", "digests": { "md5": "d3b0345be9790b8d71c5b3d54f578f9c", "sha256": "ac3a9289a5671dfc3dedcf706aab3f90d9ccb4fd3151298f7cf6ac3b5778aa6c" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d3b0345be9790b8d71c5b3d54f578f9c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7, <4", "size": 3898871, "upload_time": "2022-03-16T10:47:54", "upload_time_iso_8601": "2022-03-16T10:47:54.940956Z", "url": "https://files.pythonhosted.org/packages/cc/3e/01251ab38693f87a04ae1819be5c0c71ae24792206e22d833d327513fe7d/OctoPrint-1.8.0rc2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e20f6864677986e874cab527be001c8", "sha256": "60f02bd9267b8870fa5f0e815bae105a9e74b72e9a88926c0a9367e430d15d81" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc2.tar.gz", "has_sig": false, "md5_digest": "4e20f6864677986e874cab527be001c8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7, <4", "size": 3682295, "upload_time": "2022-03-16T10:47:56", "upload_time_iso_8601": "2022-03-16T10:47:56.821277Z", "url": "https://files.pythonhosted.org/packages/03/6e/6c3dbfe4014a77fb9a99333cd27cd5efd75283d02a61d7c27e3900171687/OctoPrint-1.8.0rc2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0rc3": [ { "comment_text": "", "digests": { "md5": "8657272812b39e6de81d8c6af745fe33", "sha256": "94be82c1896efb10d80634bc7c8adcb65d5b7a2a030d514af2da1c3376c5ca03" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8657272812b39e6de81d8c6af745fe33", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7, <4", "size": 3899092, "upload_time": "2022-03-29T11:54:36", "upload_time_iso_8601": "2022-03-29T11:54:36.121445Z", "url": "https://files.pythonhosted.org/packages/45/48/9394b4d0f4a9adbe9e54cc5a09505119f8c115c5130c918643e07173f635/OctoPrint-1.8.0rc3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b18a8fd377cd0482845071180550676", "sha256": "f84d622a83870535370957c65239e15b72d783cf685a7caaa6b1129cc9ceb8fe" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc3.tar.gz", "has_sig": false, "md5_digest": "3b18a8fd377cd0482845071180550676", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7, <4", "size": 3682782, "upload_time": "2022-03-29T11:54:37", "upload_time_iso_8601": "2022-03-29T11:54:37.995101Z", "url": "https://files.pythonhosted.org/packages/bc/39/c4f33f44513395ea957a80eb0fdeb606f6b4b29981e8da04a3941c409750/OctoPrint-1.8.0rc3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0rc4": [ { "comment_text": "", "digests": { "md5": "48e31f0a9aa34432ef6835d93a4aaac6", "sha256": "84a10d8e7eed54a079f79b0ac2c367a97a8c539f2edfc87ad8c450f3b31a9433" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48e31f0a9aa34432ef6835d93a4aaac6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7, <4", "size": 3899268, "upload_time": "2022-04-05T12:46:24", "upload_time_iso_8601": "2022-04-05T12:46:24.382186Z", "url": "https://files.pythonhosted.org/packages/6c/ab/f61903ef518c6249d153ec8856e0b6658bab381c1b82ba61c4f6406364e5/OctoPrint-1.8.0rc4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "749d8693f78cd39382bc9bf62e47331f", "sha256": "e456a11c9b6b90e4580d7f30a7192e5e9bd78907f0df7e075cf9125fce0bbe62" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc4.tar.gz", "has_sig": false, "md5_digest": "749d8693f78cd39382bc9bf62e47331f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7, <4", "size": 3682978, "upload_time": "2022-04-05T12:46:26", "upload_time_iso_8601": "2022-04-05T12:46:26.259392Z", "url": "https://files.pythonhosted.org/packages/ca/ce/2b5e67f396da245ea86d178a69255fe57b60a15139c355825b9bff390175/OctoPrint-1.8.0rc4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0rc5": [ { "comment_text": "", "digests": { "md5": "8b0ed65a7df82f5c0d0c583e87f2e8b6", "sha256": "917745d1dae26028eabc36c6ab2a48bf62c52356cb4303275e78d3b2b91256b3" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8b0ed65a7df82f5c0d0c583e87f2e8b6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.7, <4", "size": 3899552, "upload_time": "2022-04-12T14:18:29", "upload_time_iso_8601": "2022-04-12T14:18:29.902913Z", "url": "https://files.pythonhosted.org/packages/04/1b/49b49ac347268463fc85ae70cc8ec5c0d27e2500b0887519b62e4e435c23/OctoPrint-1.8.0rc5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5927c3c36a25e67d2ccde951531a6b2", "sha256": "2368a971d72842b4edbf7cb6eb80117649c10ec8abe1a5511ac9f5f9a9d67cbc" }, "downloads": -1, "filename": "OctoPrint-1.8.0rc5.tar.gz", "has_sig": false, "md5_digest": "c5927c3c36a25e67d2ccde951531a6b2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7, <4", "size": 3683413, "upload_time": "2022-04-12T14:18:32", "upload_time_iso_8601": "2022-04-12T14:18:32.348122Z", "url": "https://files.pythonhosted.org/packages/95/43/d754916c212c5de74294d75b9ac655cbdc725b376cabd83a101ee911de3a/OctoPrint-1.8.0rc5.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "60eb689f34feac693567e31222ab3980", "sha256": "78b2b1def333451a565e74342a86980d15c0e3437fd7821a6ee15d806d7b0020" }, "downloads": -1, "filename": "OctoPrint-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60eb689f34feac693567e31222ab3980", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3883626, "upload_time": "2022-01-20T11:28:11", "upload_time_iso_8601": "2022-01-20T11:28:11.462537Z", "url": "https://files.pythonhosted.org/packages/dd/89/ddb040487335d30de05ce9e0abb39b37c8dd57f2736c2a1e144e88dbd79d/OctoPrint-1.7.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c26870b2af0e37f5a6209d773ccb25e6", "sha256": "125a8f94a02e2e74a6df9e393b401d4c23d7766546896ba2f9e7699fd3da9602" }, "downloads": -1, "filename": "OctoPrint-1.7.3.tar.gz", "has_sig": false, "md5_digest": "c26870b2af0e37f5a6209d773ccb25e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.9, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", "size": 3665812, "upload_time": "2022-01-20T11:28:13", "upload_time_iso_8601": "2022-01-20T11:28:13.464602Z", "url": "https://files.pythonhosted.org/packages/a6/48/6a8c888ace6ec432175d8bc474665432b2a9a608aaf2705c58d3dfbd8e92/OctoPrint-1.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }