{ "info": { "author": "Andreas Jung", "author_email": "info@zopyx.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "zopyx.smartprintng.server\n=========================\n\n``zopyx.smartprintng.server`` is a Pyramid based server implementation \nand implements the server side functionality of the Produce & Publish platform.\nIt is know as the ``Produce & Publish Server``.\n\nRequirements\n------------\n\n* Python 2.6, 2.7 (no Python 3 support)\n\nInstallation\n------------\n\n- create an ``virtualenv`` environment (Python 2.6) - either within your\n current (empty) directory or by letting virtualenv create one for you. \n (``easy_install virtualenv`` if ``virtualenv`` is not available on your system)::\n\n virtualenv --no-site-packages .\n\n or:: \n\n virtualenv --no-site-packages smartprintng\n\n- install the SmartPrintNG server::\n\n bin/easy_install zopyx.smartprintng.server\n\n- create a ``server.ini`` configuration file (and change it according to your needs)::\n\n [DEFAULT]\n debug = true\n\n [app:main]\n use = egg:zopyx.smartprintng.server#app\n reload_templates = true\n debug_authorization = false\n debug_notfound = false\n\n [server:main]\n use = egg:Paste#http\n host = 127.0.0.1\n port = 6543\n\n- start the server (in foreground)::\n\n bin/pserve server.ini \n\n- or start it in background::\n\n bin/pserve server.ini --daemon\n\nUpgrading\n---------\n\nFor upgrading an existing SmartPrintNG server you should try the following inside\nyour virtualenv environment::\n\n bin/easy_install -U zopyx.smartprintng.server\n bin/easy_install -U zopyx.convert2\n \n\nXMLRPC API\n----------\n\nThe SmartPrintNG server exposes several methods through XMLRPC::\n\n def convertZIP(auth_token, zip_archive, converter_name):\n \"\"\" 'zip_archive' is ZIP archive (encoded as base-64 byte string).\n The archive must contain exactly *one* HTML file to be converted\n including all related resources like stylesheets and images.\n All files must be stored flat within the archive (no subfolders).\n All references to externals resources like the 'src' attribute\n of the IMG tag or references to the stylesheet(s) must use\n relative paths. The method returns the converted output file\n also as base64-encoded ZIP archive.\n \"\"\"\n\n def convertZIPEmail(auth_token, context, zip_archive, converter_name='pdf-prince', \n sender=None, recipient=None, subject=None, body=None):\n \"\"\" Similar to convertZIP() except that this method will send the \n converted output document to a recipient by email. 'subject' and\n 'body' parameters *must* be utf-8 encoded.\n \"\"\"\n\n def availableConverters():\n \"\"\" Returns a list of available converter names on the \n SmartPrintNG backend.\n \"\"\"\n\n def authenticate(username, password):\n \"\"\" Log into the server. Returns an auth_token. authenticate()\n must be called before calling any of the methods above.\n \"\"\"\n\n def ping():\n \"\"\" says 'pong' - or something similar \"\"\"\n\nEmail configuration\n-------------------\n\nFor using the email support through the ``convertZIPEmail()`` the email server must be\nconfigured through a dedicated configuration file. An ``email.ini`` may look like this::\n\n [mail]\n hostname = smtp.gmail.com\n username = some_username\n password = some_password\n force_tls = False\n no_tls = False\n\nYou have to pass the name of the email configuration file to ``pserve`` when starting\nthen server::\n\n bin/pserve server.ini mail_config=/path/to/email.ini\n\nSource code\n-----------\n\nhttps://github.com/zopyx/zopyx.smartprintng.server/\n\nBug tracker\n-----------\n\nhttps://github.com/zopyx/zopyx.smartprintng.server/issues\n\nSupport\n-------\n\nSupport for Produce & Publish Server is currently only available on a project basis.\n\n\nContact\n-------\n\n| ZOPYX Limited\n| Hundskapfklinge 33\n| D-72074 Tuebingen, Germany\n| info@zopyx.com\n| www.zopyx.com\n\n\n\nChangelog\n=========\n\n1.1.2 (2012/10/14)\n------------------\n* documentation updated\n\n1.1.1 (2012/02/03)\n------------------\n* better self-test page (more text, some images)\n* updated dependencies\n\n1.1.0 (2011/08/22)\n------------------\n* compatibility with Pyramid 1.1\n\n1.0.1 (2011/01/30)\n------------------\n* compatibility with Pyramid 1.0b3+\n\n1.0.0 (2011/01/16)\n------------------\n* final release\n* fixed test fixtures\n\n0.7.1 (2011/01/10)\n------------------\n* pinned pyramid_xmlrpc 0.1\n\n0.7.0 (2010/12/11)\n------------------\n* converted to Pyramid\n\n0.6.7 (2010/07/18)\n------------------\n* adjusted company name\n\n0.6.6 (2010/05/15)\n------------------\n* include conversion result into ZIP file\n\n0.6.5 (2010/02/04)\n------------------\n* fixed racing condition in cleanup code\n\n0.6.4 (2009/12/25)\n------------------\n* minor fixes\n* documentation cleanup\n\n0.6.3 (2009/11/29)\n------------------\n* compatiblity with BFG 1.2\n\n0.6.1 (2009/10/04)\n------------------\n* fixed bug in code for cleaning up the spool_directory\n\n0.6.0 (2009/09/15)\n------------------\n* authentication and authorization support\n\n0.5.2 (2009/09/05)\n------------------\n* adjusted to newest zopyx.convert2 version\n\n\n0.6.0 (2009/09/15)\n------------------\n* added authentication and authorization support\n\n0.5.2 (2009/09/05)\n------------------\n* adjusted to newest zopyx.convert2 version\n\n0.5.1 (2009/08/01)\n------------------\n\n* added convertZIPandRedirect() method\n* added deliver() method\n* moved base.ServerCore to models.py\n* delivered files must be younger than 'delivery_max_age' seconds\n* cleanup code\n* internal refactoring\n* more tests\n\n0.5.0 (2009/07/23)\n------------------\n* now requires Python 2.6\n\n0.4.3 (2009/07/22)\n------------------\n\n* removed most of the ZCML configuration\n* tests, tests, tests\n \n0.4.2 (2009/07/19)\n------------------\n\n* switching back to zope.sendmail\n* implemented asynchronous mail delivery on top of zope.sendmail\n\n\n0.4.1 (2009/07/19)\n------------------\n\n* using repoze.sendmail\n\n0.4.0 (2009/07/19)\n------------------\n\n* added convertZIPEmail() API\n\n0.3.4 (2009/07/13)\n------------------\n\n* updated documentation\n\n\n0.3.3 (2009/07/12)\n------------------\n\n* fix for missing BASE tag within HTML files\n\n0.3.2 (2009/07/12)\n------------------\n\n* better logging\n\n\n0.3.1 (2009/07/08)\n------------------\n\n* disabled check for maximum size of the request within\n parse_xmlrpc_request() since 8MB is too small for us\n\n\n0.3.0 (2009/07/06)\n------------------\n\n* switched to repoze.bfg\n\n0.2.0 (2009/07/06)\n------------------\n\n* improved handling of temporary directories\n\n\n0.1.2 (2009/07/05)\n------------------\n\n* improved handling of temporary directories\n\n0.1.1 (2009/07/05)\n------------------\n\n* improved logging and error handling\n\n0.1 (2009/07/05)\n----------------\n\n* Initial release", "description_content_type": null, "docs_url": "https://pythonhosted.org/zopyx.smartprintng.server/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.zopyx.com/projects/smartprintng", "keywords": "SmartPrintNG Conversion Pyramid", "license": "ZPL", "maintainer": null, "maintainer_email": null, "name": "zopyx.smartprintng.server", "package_url": "https://pypi.org/project/zopyx.smartprintng.server/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/zopyx.smartprintng.server/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://www.zopyx.com/projects/smartprintng" }, "release_url": "https://pypi.org/project/zopyx.smartprintng.server/1.1.2/", "requires_dist": null, "requires_python": null, "summary": "ZOPYX SmartPrintNG Server", "version": "1.1.2" }, "last_serial": 802431, "releases": { "0.1": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "52ce39a2292fadc50e0d81398178b874", "sha256": "1dcb2c0eb323cb3450722a4c2535c0e665c661c8f58d120564bf6fe941dd529a" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.1.1.tar.gz", "has_sig": false, "md5_digest": "52ce39a2292fadc50e0d81398178b874", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1696658, "upload_time": "2009-07-05T17:18:19", "url": "https://files.pythonhosted.org/packages/58/8e/bc3242a4ae0a47dc1b0990d2bb24bd9a80dc9f8ae7ebe1df74cb66104969/zopyx.smartprintng.server-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "e0b161aff4f1e78a8cbc645a457aba81", "sha256": "3033ca0ece6446c19e62359cd4cad53f968e42f8b68e6e560022564a683638ba" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.1.2.tar.gz", "has_sig": false, "md5_digest": "e0b161aff4f1e78a8cbc645a457aba81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1696573, "upload_time": "2009-07-05T18:00:32", "url": "https://files.pythonhosted.org/packages/18/3f/4c0255d5dc36fab7f172209e910e608e58142972d584d9639c6de447ed13/zopyx.smartprintng.server-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b493b6d87d2d314cfd353b720e4095a6", "sha256": "f7e43588b9c17ef13fde066ab1740d76a5bff7d39f081c741ddb2c522bd606e6" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b493b6d87d2d314cfd353b720e4095a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1697080, "upload_time": "2009-07-06T08:00:48", "url": "https://files.pythonhosted.org/packages/e1/8e/fecf54af4d299772074154bad6ef55e9b824203279bb3be0c56c90779198/zopyx.smartprintng.server-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "50038950e06193ab2d18447132a7782f", "sha256": "566cb2f3580f2fe1e07debc96b43b9e4755ca9998f466f7927538657f3a32a24" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.3.0.tar.gz", "has_sig": false, "md5_digest": "50038950e06193ab2d18447132a7782f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1704477, "upload_time": "2009-07-06T19:45:52", "url": "https://files.pythonhosted.org/packages/4d/de/5b1fd46fc1a5910dbccfb3d5a02aa011ca6b0695e9a9ce3935cdbdc232ff/zopyx.smartprintng.server-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "c35f18ac5db313fbf957786cb2e66ddd", "sha256": "f338391ec2d779d746b60187d68d16731e819a023af65889708a103d6853543d" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c35f18ac5db313fbf957786cb2e66ddd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1705076, "upload_time": "2009-07-08T17:08:20", "url": "https://files.pythonhosted.org/packages/aa/7a/02c04fe7457e428fb676ece7beda87109811100f1906e063640bb25a9b35/zopyx.smartprintng.server-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "af349b0bf23881d26162b0f529585e7b", "sha256": "6cff45f63145f2e43ec549b56387d919aadefaa2bddbd321d1726f9a7dfcb923" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.3.2.tar.gz", "has_sig": false, "md5_digest": "af349b0bf23881d26162b0f529585e7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1706313, "upload_time": "2009-07-12T11:58:22", "url": "https://files.pythonhosted.org/packages/e1/13/7b6d171995135cc031419cc54f6e504bd8301921d5b183c96cf98292f429/zopyx.smartprintng.server-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "df4dd52ee53a5122725d32bc0d0538b2", "sha256": "36cf162fd69a269b1db9d59d181defb0a48ef2b48053466f0da259042c4a9f6b" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.3.3.tar.gz", "has_sig": false, "md5_digest": "df4dd52ee53a5122725d32bc0d0538b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1706678, "upload_time": "2009-07-12T12:47:33", "url": "https://files.pythonhosted.org/packages/39/23/3fd9fbc32cf939dfb779a406032c87c811d52e282df40922a3a9fcffedb2/zopyx.smartprintng.server-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "d4956bd8cb23d17b98e381187e68ecba", "sha256": "533108cf5eb561bb404dd4806fda102b71ed35c8da270d1a119da59d4d3f2cb4" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.3.4.tar.gz", "has_sig": false, "md5_digest": "d4956bd8cb23d17b98e381187e68ecba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14103, "upload_time": "2009-07-13T18:41:18", "url": "https://files.pythonhosted.org/packages/d9/f9/8c90e166d99c6ba6e264e8a4e8e40fa513c63f9bf413224c5a6ab9e85fd6/zopyx.smartprintng.server-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "eb17c9a684ee6127a8cd029a593a54b9", "sha256": "3aa8a0eba4647be025a57aff2032e84ea267f6db9b589adcc2ccfdc172de48c9" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.0.tar.gz", "has_sig": false, "md5_digest": "eb17c9a684ee6127a8cd029a593a54b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15185, "upload_time": "2009-07-19T11:15:00", "url": "https://files.pythonhosted.org/packages/88/38/8a8175303a298c23768ff690568b63e8ece2428a108372e8e492c2004a0f/zopyx.smartprintng.server-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "54cb2d500c4b52b000dbf08475cd355d", "sha256": "66a0a02b62cb715ac627e5ff48576189a4829c6f103d267863c6669abe1460dc" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.1.tar.gz", "has_sig": false, "md5_digest": "54cb2d500c4b52b000dbf08475cd355d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15225, "upload_time": "2009-07-19T12:01:21", "url": "https://files.pythonhosted.org/packages/a6/bb/44d04f04310b771c75a99097c46caf9c92f7e1bca2d3569a9a32b4ce5139/zopyx.smartprintng.server-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "9ad8b4a737a0b01ffd00bb059e36ed80", "sha256": "ac61944146ba1dbaef09f0877234c4f93b07c84278dbce2555bd36d0279af4b6" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.2.tar.gz", "has_sig": false, "md5_digest": "9ad8b4a737a0b01ffd00bb059e36ed80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15716, "upload_time": "2009-07-19T15:03:02", "url": "https://files.pythonhosted.org/packages/50/45/cb2a70dd450298d43964615cd0857566faca0bf1fc6d8607d51101debcbd/zopyx.smartprintng.server-0.4.2.tar.gz" } ], "0.4.2.1": [ { "comment_text": "", "digests": { "md5": "d80d1245aed7c1370c0b6ea77c7e4f23", "sha256": "6c0980c4e3b50d02319874fc3fb76b4722998c4dbb1c148b179082e78644762b" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.2.1.tar.gz", "has_sig": false, "md5_digest": "d80d1245aed7c1370c0b6ea77c7e4f23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15685, "upload_time": "2009-07-19T17:10:02", "url": "https://files.pythonhosted.org/packages/e7/6a/f0ef5e0cf00cc11414c37ff0fff0a577ecfcf0438a6e92d4e1861a7af8a3/zopyx.smartprintng.server-0.4.2.1.tar.gz" } ], "0.4.2.2": [ { "comment_text": "", "digests": { "md5": "5bb29f5bbaeffff21169c9f5b82657f8", "sha256": "164a61ce6304acf00a0c29951229e2ea767e0b9cba3c58cdf738c7e770357d60" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.2.2.tar.gz", "has_sig": false, "md5_digest": "5bb29f5bbaeffff21169c9f5b82657f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15646, "upload_time": "2009-07-19T17:11:22", "url": "https://files.pythonhosted.org/packages/87/9c/24888f2c754c81b1cc2b9d906108ca963f3e4967d864a9db78aafe1ae6f9/zopyx.smartprintng.server-0.4.2.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "2184c11fc1a1799d1b9a5458142b2b67", "sha256": "2862e3580173f1d4882684c512c0a3296b10831b0a2f0fb7e92723666755ee6a" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.4.3.tar.gz", "has_sig": false, "md5_digest": "2184c11fc1a1799d1b9a5458142b2b67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16529, "upload_time": "2009-07-22T20:48:03", "url": "https://files.pythonhosted.org/packages/71/6c/92f37377d0d58a4b74782692cf3266e2b5581c24f15f3d580f6cc4bb1d2a/zopyx.smartprintng.server-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a68a254d6a7c2eaa7b6f90d3f9cb0167", "sha256": "9fd272a9199412477305960693062dcfb2b63ae9de42bfa63f14213ffb273029" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a68a254d6a7c2eaa7b6f90d3f9cb0167", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16670, "upload_time": "2009-07-22T21:05:52", "url": "https://files.pythonhosted.org/packages/b4/e6/0d8aeb88d2f50e9dae946cb10fa7f07b2df167ccf7a7de6958e4ca4bcb9a/zopyx.smartprintng.server-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "1d027d0801329e4e2a56f980e5cc5ad9", "sha256": "033a994d9d8763057ea6faa7d19c90df0813f5a5a67d796d8f8b05e0d69c056b" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.5.1.tar.gz", "has_sig": false, "md5_digest": "1d027d0801329e4e2a56f980e5cc5ad9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58491, "upload_time": "2009-08-02T08:36:28", "url": "https://files.pythonhosted.org/packages/66/3a/96e3aebdd7b2b98477b9b80587752364bad8beb96034dda2cd65faa662a3/zopyx.smartprintng.server-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "13d249a45ed5ef3099b1a5c49501c77f", "sha256": "e562b99fb6e10f7d1cdbcb8914a70e2f6c929e609ec3a6f80e2b4791d38a9962" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.5.2.tar.gz", "has_sig": false, "md5_digest": "13d249a45ed5ef3099b1a5c49501c77f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17270, "upload_time": "2009-09-05T15:24:43", "url": "https://files.pythonhosted.org/packages/c7/f3/61608eecc62bd8f563cdb2a4ab6bf195db92f77f0be9ac841564126fcecd/zopyx.smartprintng.server-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0f12c0a486a82a92c2b5977fa6e457fb", "sha256": "9114f873134f0117dff0e2e1aa324598c8ba09e7891054045a665d612ad850ad" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.0.tar.gz", "has_sig": false, "md5_digest": "0f12c0a486a82a92c2b5977fa6e457fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17272, "upload_time": "2009-09-14T18:38:02", "url": "https://files.pythonhosted.org/packages/8c/81/7c55a068d225feebc9943a8a911688c9d08e080a791874b56ec025f29b3a/zopyx.smartprintng.server-0.6.0.tar.gz" } ], "0.6.0.1": [ { "comment_text": "", "digests": { "md5": "913ca46aae902da8ef4f4808a769c201", "sha256": "03cafaf93dce5cb5858896c30a521f178202c9af26b168cd34aabe105090d4df" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.0.1.tar.gz", "has_sig": false, "md5_digest": "913ca46aae902da8ef4f4808a769c201", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17871, "upload_time": "2009-09-14T18:58:02", "url": "https://files.pythonhosted.org/packages/90/44/dd5cb380b58cb7aa278edeb6854ef2629d927dbebe4da7e5f2e9ec30a64d/zopyx.smartprintng.server-0.6.0.1.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "4318ed6c1e240dbbbf8df1580538c0d0", "sha256": "4c6abcbbd40ec71125e555b9f95f29ca5281aa8f40487b3f3b5c1d16961394c1" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.1.tar.gz", "has_sig": false, "md5_digest": "4318ed6c1e240dbbbf8df1580538c0d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10659, "upload_time": "2009-10-04T18:40:30", "url": "https://files.pythonhosted.org/packages/93/2a/6d52ade6b4c13fbb9619684337ac24077f03336951212fe7eeefba639f5a/zopyx.smartprintng.server-0.6.1.tar.gz" } ], "0.6.1.1": [ { "comment_text": "", "digests": { "md5": "f694868c9ad0ec5b032d7e6cc92d5073", "sha256": "5849b6a110e6a75fa38899a0d2d3d98a4c6773e049e2db9809a20127ea81f284" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.1.1.tar.gz", "has_sig": false, "md5_digest": "f694868c9ad0ec5b032d7e6cc92d5073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18147, "upload_time": "2009-10-13T10:43:16", "url": "https://files.pythonhosted.org/packages/21/78/a4335bed1b4d76299c8b466bbb1bb541a512ea76d8f99b711068c6c76ff9/zopyx.smartprintng.server-0.6.1.1.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "c95053783f423b5a8c8a9d3f7a6de45b", "sha256": "7869bb994e2937a660c2bd55a084fe72f1ce096cec7b81dea063f0d2e729897f" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.3.tar.gz", "has_sig": false, "md5_digest": "c95053783f423b5a8c8a9d3f7a6de45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19822, "upload_time": "2009-11-29T18:08:19", "url": "https://files.pythonhosted.org/packages/f7/17/480c4d287849a4ec3ab6062119f801e6c5d5811d5fef20f14f9f1855c081/zopyx.smartprintng.server-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "6f484ead964ce6e79c2226a569d783fb", "sha256": "083975fa47bc170eea56276cc0590fc4c455c85b8939faec0a9b888fde0bafa6" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.4.tar.gz", "has_sig": false, "md5_digest": "6f484ead964ce6e79c2226a569d783fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19827, "upload_time": "2010-01-25T19:12:42", "url": "https://files.pythonhosted.org/packages/b0/c3/393511b9e8f95c273ce4c12df143b04656b9732dfff404515c09c278790c/zopyx.smartprintng.server-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "0cccbd67d6c329577f05d452d6e3aeab", "sha256": "c2796e1b36eabd45c22513deeec2d44a274f304da39d68843c087ba166788f8e" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.5.tar.gz", "has_sig": false, "md5_digest": "0cccbd67d6c329577f05d452d6e3aeab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18667, "upload_time": "2010-02-04T09:24:36", "url": "https://files.pythonhosted.org/packages/c9/da/5d7c01f02490f358c650a68d21b417894b1c9eba42cf5bd95395db73c3bc/zopyx.smartprintng.server-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "070d83dacb848332334363733010c42c", "sha256": "4c8b3ebcb9352da2e2b53cd1b13a25011d238e11aa80582e43ff9ac72b18ec6a" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.6.tar.gz", "has_sig": false, "md5_digest": "070d83dacb848332334363733010c42c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20082, "upload_time": "2010-05-15T16:38:06", "url": "https://files.pythonhosted.org/packages/ce/89/338de8707b7954096ac22582f4b622510c33bf10cb1fa29dafcdfef162aa/zopyx.smartprintng.server-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "f34d374d34d148eb4c0673a0e3a3804c", "sha256": "e8bc37fb8512969fca7b4039b30e1900778c28fa12742669fbc228c0ce68128f" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.6.7.tar.gz", "has_sig": false, "md5_digest": "f34d374d34d148eb4c0673a0e3a3804c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21772, "upload_time": "2010-07-19T07:39:17", "url": "https://files.pythonhosted.org/packages/23/20/e82749ec10198a94285c3110866ea6faaede6d6aa3299a126b17903a177f/zopyx.smartprintng.server-0.6.7.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "9cedbbc950bfb21a0b92379c3a03b708", "sha256": "f6514a6ca8ad5947f38443ccbec1e86591aba4cd84b171507057d1f01f9e4d8c" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.7.0.tar.gz", "has_sig": false, "md5_digest": "9cedbbc950bfb21a0b92379c3a03b708", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20526, "upload_time": "2010-12-11T16:27:50", "url": "https://files.pythonhosted.org/packages/ce/3d/b649d129f0bc343ab42b014faf952182408f6e237b9d0451bb61ebf5bb3f/zopyx.smartprintng.server-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "da7c17d467e58a9b3399b329913b3623", "sha256": "bbfa54b6a3ac878ef2e056f5749889cd27732f03427c5b20f2509c989582a57e" }, "downloads": -1, "filename": "zopyx.smartprintng.server-0.7.1.tar.gz", "has_sig": false, "md5_digest": "da7c17d467e58a9b3399b329913b3623", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21127, "upload_time": "2011-01-10T08:12:46", "url": "https://files.pythonhosted.org/packages/b7/7f/f3eadf1e6cd9c659cf19bb38590b3b5f5e031aeac400bb823c50c13b531e/zopyx.smartprintng.server-0.7.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "c1ab7c3683599c6e41a4b46dfd330904", "sha256": "714aeedabcf06d4229bc698f38d7a35d42cc215debe3a743eae6c7a0d1531c03" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c1ab7c3683599c6e41a4b46dfd330904", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20619, "upload_time": "2011-01-16T15:06:12", "url": "https://files.pythonhosted.org/packages/f7/ce/f893569cc55ea634275a347efdbdbfc5a66ec41443f7e8cecc6678eea605/zopyx.smartprintng.server-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5b46803c3c05e530150386cee95bc1e1", "sha256": "f4d46069bea5ff28a2de05e8d9d76c6b5406315a80e83307c24ae7a206b49054" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.0.1.tar.gz", "has_sig": false, "md5_digest": "5b46803c3c05e530150386cee95bc1e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21225, "upload_time": "2011-01-30T14:24:56", "url": "https://files.pythonhosted.org/packages/e9/ae/b0425211edcb03307e4428363fae19380697f9d10159dd112756f030654e/zopyx.smartprintng.server-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "6d9e054fb8d595be2a9cf7c2c8c290a5", "sha256": "0fbe014da9cc7879fdf4f4cded43ade4c86c9e853e4db700ef65cb7414d24870" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.1.0.zip", "has_sig": false, "md5_digest": "6d9e054fb8d595be2a9cf7c2c8c290a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35538, "upload_time": "2011-08-23T14:00:58", "url": "https://files.pythonhosted.org/packages/b8/c8/f2e631a42dc2c0c98b4184c08fa3d9b63afa0a27605400391ca257f4d64c/zopyx.smartprintng.server-1.1.0.zip" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "a9ac6cb6e33e8c584920fad8b9c84575", "sha256": "5e2ce214fbe4f7b104bd6814257dc431eb3dd0d6781dfc96cc805d3fc4e42742" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.1.1.zip", "has_sig": false, "md5_digest": "a9ac6cb6e33e8c584920fad8b9c84575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44389, "upload_time": "2012-02-03T07:54:46", "url": "https://files.pythonhosted.org/packages/58/54/32afcfa922d9b68604465836ec96a665bd23b1dd6cfc642498e042b82cbf/zopyx.smartprintng.server-1.1.1.zip" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "027e9491e6ea7085540277ea24e750f4", "sha256": "e7c5b0b37246d2588034f24a164548b88729c5fe62528ee831cbc6e3cd5c02fa" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.1.2.zip", "has_sig": false, "md5_digest": "027e9491e6ea7085540277ea24e750f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44464, "upload_time": "2012-10-14T06:28:07", "url": "https://files.pythonhosted.org/packages/68/c5/f054126e68e530d69911936c43a084433bb8b592b8e95ac2d2640b53beff/zopyx.smartprintng.server-1.1.2.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "027e9491e6ea7085540277ea24e750f4", "sha256": "e7c5b0b37246d2588034f24a164548b88729c5fe62528ee831cbc6e3cd5c02fa" }, "downloads": -1, "filename": "zopyx.smartprintng.server-1.1.2.zip", "has_sig": false, "md5_digest": "027e9491e6ea7085540277ea24e750f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44464, "upload_time": "2012-10-14T06:28:07", "url": "https://files.pythonhosted.org/packages/68/c5/f054126e68e530d69911936c43a084433bb8b592b8e95ac2d2640b53beff/zopyx.smartprintng.server-1.1.2.zip" } ] }