{ "info": { "author": "Nathan Van Gheem", "author_email": "vangheem@gmail.com", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Programming Language :: Python" ], "description": "Introduction\n============\n\nThis package is a Plone product that will add a `Page Turner` view to the PDF File content type. \nThe result is that you'll be able to view PDFs much in the same way you can view them on\nscribd.com. It uses the open source project, Flex Paper, to display the PDFs. You can find\ninformation about it at `http://flexpaper.devaldi.com/`.\n\n\nRequirements\n------------\n\nThis product requires that you have pdf2swf installed. pdf2swf is included in older versions of SWFTools, \nup to 0.9.0 (the most recent version of SWFTools is 0.9.2 dating from 2012).\n\n\nInstalling pdf2swf with package managers\n----------------------------------------\n\nWhere possible, we recommend you use package managers to install SWFTools as there are some dependencies\nthat need to be installed. \n\nIf you're using Ubuntu Lucid (10.04) (and possibly later versions, but not Trusty Tahr, 14.04):\n\n # sudo apt-get install swftools\n\nOn Mac, if you have MacPorts installed you can,\n\n # sudo port install swftools\n\nOn Debian, you'll need to install from source as the swftools package does not include pdf2swf: `http://wiki.swftools.org/wiki/Installation`\n\nChecking that you have installed pdf2swf\n----------------------------------------\n\nOnce you have installed the package, check if pdf2swf is in your path. On Linux:\n\n # which pdf2swf\n \nOn Windows: make sure pdf2swf.exe is in your path:\n\n C:\\> pdf2swf\n\nIf it isn't in your path (ie. you get an error message above), you'll have to install manually; see below.\n\nInstalling pdf2swf manually\n---------------------------\n\nIf your package manager installs a version of SWFTools that does not include pdf2swf, you can install an older version of the package that does.\n\nThese instructions for installing on Ubuntu are based on http://serverfault.com/questions/623604/install-pdf2swf-on-ubuntu-trusty-tahr14-04.\n\nFor AMD64:\n\n # wget -P /tmp/ http://archive.canonical.com/ubuntu/pool/partner/s/swftools/swftools_0.9.0-0ubuntu2_amd64.deb\n # chmod a+x /tmp/swftools_0.9.0-0ubuntu2_amd64.deb\n # sudo dpkg -i /tmp/swftools_0.9.0-0ubuntu2_amd64.deb\n\nFor i386:\n\n # wget -P /tmp/ http://archive.canonical.com/ubuntu/pool/partner/s/swftools/swftools_0.9.0-0ubuntu2_i386.deb\n # chmod a+x /tmp/swftools_0.9.0-0ubuntu2_i386.deb\n # sudo dpkg -i /tmp/swftools_0.9.0-0ubuntu2_i386.deb\n \nOther architectures are available at http://archive.canonical.com/ubuntu/pool/partner/s/swftools/\n\nIf all else fails, you can download SWFTools from `http://www.swftools.org/` and install it yourself.\n\nHow-To\n------\n\n* Add your PDF as a File to your Plone site (Add New -> File menu).\n\n* Edit the various setting of the Page turner by clicking the `Page Turner Settings` button.\n\n* To turn off auto-selecting of the page turner layout for PDF files, go to ZMI -> portal_properties -> site_properties and\n customize the page_turner_auto_select_layout property to off.\n \n* PDFs that were on your site before you activated this add-on will need to be converted (you will see an\n error message on each File until you convert it). To convert an individual PDF, click the Flexpaper Convert \n button. Large PDFs will take some time to be converted. To convert all PDFs on your site, go to your site's \n URL and append /@@convertall-to-flexpaper, e.g. http://www.yoursite.com/@@convertall-to-flexpaper\n\n\nTested With\n-----------\n\n* Plone 3 and 4\n\n* Also works with Blob storage transparently so the converted PDFs aren't stored in the ZODB\n\n\nCredits\n-------\n\nCredit goes to Wildcard Corp and Talin Senner for sponsoring and designing the product, and Nathan Van Gheem for coding it.\n\n\nAsynchronous Conversion\n-----------------------\n\nWith large PDFs the conversion to Flex Paper can take some time. If you have plone.app.async installed and configured, \nthis conversion will happen asynchronously.\n\n\nConvert All\n-----------\n\nIf you'd like to convert all the existing documents on your site, visit the URL http://www.yoursite.com/@@convertall-to-flexpaper\n\n\nTODO\n----\n\n- Add support for Dexterity content types. Maybe via a behavior.\n\n\nVersions\n--------\n\nFlexpaper: 1.5.1\n\n\nUpgrade Path\n------------\n\nFor a more fully featured add-on, see https://pypi.python.org/pypi/collective.documentviewer \n\n\nChangelog\n=========\n\n1.3.7 ~ 2015-06-03\n------------------\n\n- more detail for instructions\n [tkimnguyen]\n\n- only queue conversion job if layout is page-turner\n [vangheem]\n\n\n1.3.6 ~ 2013-05-07\n------------------\n\n- 4.3 template compatibility fix.\n [vangheem]\n\n\n1.3.5 ~ 2013-05-07\n------------------\n\n- Remove zope.app.* dependencies.\n [esteele]\n\n1.3.4 ~ 2012-10-02\n------------------\n\n- add back 1.3.2 change that was missed\n [vangheem]\n\n1.3.3 ~ 2012-10-02\n------------------\n\n- changed 'cachebusting' to be false for all browsers\n [Joel.Kleier]\n\n1.3.2 ~ 2012-07-31\n------------------\n\n- fix wmode used\n\n1.3.1 ~ 2012-06-19\n------------------\n\n- fix uninstall profile\n\n\n1.3.0 ~ 2012-04-11\n------------------\n\n- upgrade to flexpaper 1.5.1\n\n1.2.5 ~ 2012-04-06\n------------------\n\n- fix js error when rendering pdf.\n [vangheem]\n\n1.2.4 ~ 2011-10-16\n------------------\n\n- Plone 4.1 fix\n [vangheem]\n\n\n1.2.3 ~ 2011-07-28\n------------------\n\n- fix default value for fit_width so the global setting\n will work now.\n [vangheem]\n \n\n1.2.2 ~ 2011-04-01\n------------------\n\n- reference some of the resources off the portal root\n [vangheem]\n\n1.2.1rc2 ~ 2011-04-01\n---------------------\n\n- fixes for windows users. \n [fhurter]\n\n\n1.2.1rc1 ~ 2011-03-14\n---------------------\n\n- fit page width for flex paper setting integration\n [espen]\n \n\n1.2b1 ~ 2011-02-20\n------------------\n\n- re-convert pdf is password is provided on save of page turner settings\n\n\n1.2a1 ~ 2011-02-15\n------------------\n\n- provide global settings configuration\n\n- provide ability to enter password for encrypted pdf\n\n- provide ability to convert all pdfs on the site to flex paper\n\n\n1.1b1 ~ 2010-12-31\n------------------\n\n- work seamlessly with new version of wildcard.pdfpal so it will only\n create a flex paper after the new searchable PDF is provided.\n \n- provide ability to provide extra command line options when converting the PDF.\n\n\n1.0b4 ~ 2010-12-06\n------------------\n\n- add wmode transparent for flash params so that flash does not overlap\n other elements.\n \n- switch to more accurate time format\n\n- remove temp files even when there was an error\n\n\n1.0b3 ~ 2010-12-02\n------------------\n\n- remove tmp files after using them on flex paper gen\n\n\n1.0b2 ~ 2010-12-02\n------------------\n\n- added support for plone.app.async. Flex Paper conversion can now \n happen in the background.\n [vangheem]\n \n\n1.0b1 ~ 2010-11-29\n------------------\n\n- update flexpaper to 1.4.0\n [vangheem]\n \n- auto select page turner view for pdf files now and make configurable\n via portal_properties -> site_properties\n [vangheem]\n \n- better error checking when converting PDFs. pdf2swf still seems very\n touchy for converting some PDFs...\n [vangheem]\n \n- Added progressive loading, print enabled, full screen visible, \n search tools visible and cursor tools visible options\n [vangheem]\n\n\n0.6\n---\n\n- Fix for storing blobs.\n [davisagli]\n\n- Don't swallow exceptions while converting; log them.\n [davisagli]\n\n- Use the subprocess module instead of popen2 to communicate with pdf2swf.\n [davisagli]\n\n- Protect the page turner settings page with the \"Modify view template\"\n permission.\n [davisagli]\n\n- Avoid purging existing view methods for the File type on installation.\n [davisagli]\n\n0.5 ~ 2010-05-21\n----------------\n\n- Initial release\n\n\nRoad Map\n========\n\n1.0\n---\n\n* option to automatically enable the page turner view if PDF format is detected\n for a new file\n\n* support other formats besides PDF--is this possible?", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/collective/wc.pageturner", "keywords": "plone pdf flexpaper flex paper scridb", "license": "GPL", "maintainer": null, "maintainer_email": null, "name": "wc.pageturner", "package_url": "https://pypi.org/project/wc.pageturner/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/wc.pageturner/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/collective/wc.pageturner" }, "release_url": "https://pypi.org/project/wc.pageturner/1.3.7/", "requires_dist": null, "requires_python": null, "summary": "A Plone product that provides the PDF viewer FlexPaper.", "version": "1.3.7" }, "last_serial": 2800528, "releases": { "0.5": [ { "comment_text": "", "digests": { "md5": "4cdcfb9dd810cb568733de59b747a07f", "sha256": "ce2aca044c798211d8d57909e65b3f579b108dc2b84cbc049e3ed4147172a36b" }, "downloads": -1, "filename": "wc.pageturner-0.5.tar.gz", "has_sig": false, "md5_digest": "4cdcfb9dd810cb568733de59b747a07f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 324586, "upload_time": "2010-05-22T05:16:41", "url": "https://files.pythonhosted.org/packages/c5/84/2ff38aae4a6b216df81d1de4603728f2202db4b013d0166f0b6eb116b743/wc.pageturner-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "d6b0ccbab5521252a4e86a59c059a7e4", "sha256": "6cd04d244d3aa0b32b55be5e60c4e2c0a6a4c4a7666bab8af6ea96313905ec60" }, "downloads": -1, "filename": "wc.pageturner-0.6.tar.gz", "has_sig": false, "md5_digest": "d6b0ccbab5521252a4e86a59c059a7e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 324927, "upload_time": "2010-06-26T05:43:54", "url": "https://files.pythonhosted.org/packages/67/b9/3c56d2151cc04d7ff0c3a95f1a323b100cd7bb171307d27f7c55ba2e7536/wc.pageturner-0.6.tar.gz" } ], "1.0b1": [ { "comment_text": "", "digests": { "md5": "44d426c4b85631ed828a5cc639068343", "sha256": "e4af43ba43b35437024f7f08da8ab28340cf9ed8f9158b838b97cbfebf854284" }, "downloads": -1, "filename": "wc.pageturner-1.0b1.tar.gz", "has_sig": false, "md5_digest": "44d426c4b85631ed828a5cc639068343", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 351537, "upload_time": "2010-11-30T02:43:26", "url": "https://files.pythonhosted.org/packages/57/aa/c6b280d44aded841d67897df506dfcc4d70677e447ba5bfd50dbcb12e401/wc.pageturner-1.0b1.tar.gz" } ], "1.0b2": [ { "comment_text": "", "digests": { "md5": "fdd52cc1c8328792ada795c242b58180", "sha256": "af5d530e3fef65325ea96c68ae6f53820ba71cc5ce266dc45734344ba83ea587" }, "downloads": -1, "filename": "wc.pageturner-1.0b2.zip", "has_sig": false, "md5_digest": "fdd52cc1c8328792ada795c242b58180", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361132, "upload_time": "2010-12-02T20:06:03", "url": "https://files.pythonhosted.org/packages/8d/78/f1670c7a254e29ab5148b0de241b909e7dc78b62335c33ecce3de3150635/wc.pageturner-1.0b2.zip" } ], "1.0b3": [ { "comment_text": "", "digests": { "md5": "0d1bfd3b920beff29998553cb16398f5", "sha256": "bdd24e1beb7171484f99ced11c7c6dbf1e2f5de374d1aa050ee89d8c0d775cce" }, "downloads": -1, "filename": "wc.pageturner-1.0b3.zip", "has_sig": false, "md5_digest": "0d1bfd3b920beff29998553cb16398f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361269, "upload_time": "2010-12-02T21:46:10", "url": "https://files.pythonhosted.org/packages/76/52/484ecd90d94f1d9a8098b4f2a798d6526e8be50cd973125698b9160c1ada/wc.pageturner-1.0b3.zip" } ], "1.0b4": [ { "comment_text": "", "digests": { "md5": "ab18f7d08cffdad9551c58aa4774a0c6", "sha256": "f98b378df727c2f741c7f52a121599ac74cb5b7f0d104e3a0f3f59fc3db786f3" }, "downloads": -1, "filename": "wc.pageturner-1.0b4.zip", "has_sig": false, "md5_digest": "ab18f7d08cffdad9551c58aa4774a0c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361533, "upload_time": "2010-12-07T05:05:34", "url": "https://files.pythonhosted.org/packages/ca/77/4ed31c8e0f1aa9aae104563d773f0b15c7a8332e38fe4d750982ed2b0b84/wc.pageturner-1.0b4.zip" } ], "1.1b1": [ { "comment_text": "", "digests": { "md5": "bc91108b00e896ac9a49e08796417020", "sha256": "8027c1a919a73d50d1ff8d2ca431b27751f713975f6c22b654d08851ddbcd61a" }, "downloads": -1, "filename": "wc.pageturner-1.1b1.zip", "has_sig": false, "md5_digest": "bc91108b00e896ac9a49e08796417020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 364356, "upload_time": "2010-12-31T18:41:59", "url": "https://files.pythonhosted.org/packages/18/c0/7f318f25c5b698fe3ca198ca71b17737103a30069913023e8109e32f184e/wc.pageturner-1.1b1.zip" } ], "1.2.1rc1": [ { "comment_text": "", "digests": { "md5": "3b6a7e4295c4275e4fd50f1bd8de3f72", "sha256": "7624e32f843d98be6b210cd60e846f72c08ba52421c89bfb7d2086e1d4e7dd87" }, "downloads": -1, "filename": "wc.pageturner-1.2.1rc1.zip", "has_sig": false, "md5_digest": "3b6a7e4295c4275e4fd50f1bd8de3f72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366551, "upload_time": "2011-03-15T03:34:22", "url": "https://files.pythonhosted.org/packages/f9/ae/75b850deafb5f66b217aee06a495ba57357791703f4a125209ca29887817/wc.pageturner-1.2.1rc1.zip" } ], "1.2.1rc2": [ { "comment_text": "", "digests": { "md5": "90de9fc5c6141ced5441e8e770840a0f", "sha256": "d64e7592909bbf3a25b5ca61f15be67f9a7f00f7d1f4799f6e21b54ae91235da" }, "downloads": -1, "filename": "wc.pageturner-1.2.1rc2.zip", "has_sig": false, "md5_digest": "90de9fc5c6141ced5441e8e770840a0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366832, "upload_time": "2011-04-01T13:29:01", "url": "https://files.pythonhosted.org/packages/79/2c/f880bba59e7056111d9dac712ae96e63a1b99cc0e330c8bd934d06c0f979/wc.pageturner-1.2.1rc2.zip" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "548d49de83371f1df7ad6794963c0700", "sha256": "7d0ca49a4e3bd3c866c225ed03a5da434924d380d8f059808c0d03697b10ac1a" }, "downloads": -1, "filename": "wc.pageturner-1.2.2.zip", "has_sig": false, "md5_digest": "548d49de83371f1df7ad6794963c0700", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366715, "upload_time": "2011-04-01T20:14:14", "url": "https://files.pythonhosted.org/packages/36/b0/b58fa2b5e55dd68426c43f7cd0d298781e259d9bbfc915f5a6e9f9ce615d/wc.pageturner-1.2.2.zip" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "20dc268bf9080600d61e9f4a1b8d5cf8", "sha256": "170c4c758627b1e0522e0a956d2f7f3ed4ff8a0a1f89ab8140bdd35e1a582279" }, "downloads": -1, "filename": "wc.pageturner-1.2.3.zip", "has_sig": false, "md5_digest": "20dc268bf9080600d61e9f4a1b8d5cf8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366838, "upload_time": "2011-07-28T20:45:08", "url": "https://files.pythonhosted.org/packages/bd/04/b08257bdebeadec3507af305f6ecbe3363a9dbf623a636b8272330ef8966/wc.pageturner-1.2.3.zip" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "56194dda599b8082fd3523dbfe665ad5", "sha256": "5f52c0e9e488c63c98b189e1e980e4c2483bea4b6e8663d31ab9f8feba175f74" }, "downloads": -1, "filename": "wc.pageturner-1.2.4.zip", "has_sig": false, "md5_digest": "56194dda599b8082fd3523dbfe665ad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367065, "upload_time": "2011-10-17T03:14:31", "url": "https://files.pythonhosted.org/packages/fa/5f/67c209ceae6680eb083758f966cca5f0285b2ec0d910cb364fd952e891a7/wc.pageturner-1.2.4.zip" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "3aaf147d1e247e64cabecc4431bf6910", "sha256": "4467359c80d34ce0ea5844caf879e08b2f4fc7717c11ecb0d087d6cde3058774" }, "downloads": -1, "filename": "wc.pageturner-1.2.5.zip", "has_sig": false, "md5_digest": "3aaf147d1e247e64cabecc4431bf6910", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367157, "upload_time": "2012-04-06T19:33:47", "url": "https://files.pythonhosted.org/packages/b6/95/7d9da3da7bf4361410d2067bd4e3c1dfabaaafcf6588d7175feaba27db0f/wc.pageturner-1.2.5.zip" } ], "1.2a1": [ { "comment_text": "", "digests": { "md5": "e2f161d700b85f43c8903781e7034703", "sha256": "93b0cfa0f96f3e59786c421654197284a3cef98c7a9758eda63455d1beed193c" }, "downloads": -1, "filename": "wc.pageturner-1.2a1.zip", "has_sig": false, "md5_digest": "e2f161d700b85f43c8903781e7034703", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 365780, "upload_time": "2011-02-15T18:03:30", "url": "https://files.pythonhosted.org/packages/65/15/1ac658c3f32d0d67640a9e8e7ea7290c484b183e281df25172e197deeb76/wc.pageturner-1.2a1.zip" } ], "1.2b1": [ { "comment_text": "", "digests": { "md5": "4ed5db3b67f495bfc8f4b9938618b577", "sha256": "6fc483eed085e476684861c8f84ddb941bf4f59cd1d4d82a31c6c51f95470821" }, "downloads": -1, "filename": "wc.pageturner-1.2b1.zip", "has_sig": false, "md5_digest": "4ed5db3b67f495bfc8f4b9938618b577", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 366032, "upload_time": "2011-02-20T19:56:24", "url": "https://files.pythonhosted.org/packages/87/64/b01cf32795f1f35dcf408ea4a4680037a167eeba188a86f40d16f444762f/wc.pageturner-1.2b1.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "c6160e9477b115b0489d79b75c64b7a2", "sha256": "fbf62b3aa77bda88949506e8f1609b48c00696cd6333ecc78a57b8774c9e994e" }, "downloads": -1, "filename": "wc.pageturner-1.3.0.zip", "has_sig": false, "md5_digest": "c6160e9477b115b0489d79b75c64b7a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453649, "upload_time": "2012-04-11T22:34:43", "url": "https://files.pythonhosted.org/packages/e9/cf/93218d5a1b816b7f1fb686859ae4e8720db7225ec8e565a1fa6ef0397356/wc.pageturner-1.3.0.zip" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "bfbd5cc81979b33ba97d6b8b7b873032", "sha256": "c528295c8b9f3cb7e6f012faf8162b145ef9c25d305a593264ff29da206e9f8a" }, "downloads": -1, "filename": "wc.pageturner-1.3.1.zip", "has_sig": false, "md5_digest": "bfbd5cc81979b33ba97d6b8b7b873032", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453711, "upload_time": "2012-06-19T15:33:25", "url": "https://files.pythonhosted.org/packages/2f/62/6d2f3430c59ea25f976538e69be4cc49df69cd7045f96867c4dafd245462/wc.pageturner-1.3.1.zip" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "64e09e2410ef861811ac8b523ad392d3", "sha256": "4f7362f8409e23685a76f4bd3b5aa355ea05d4c72707e8d1afdd506117b8f9b5" }, "downloads": -1, "filename": "wc.pageturner-1.3.2.zip", "has_sig": false, "md5_digest": "64e09e2410ef861811ac8b523ad392d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 453808, "upload_time": "2012-08-01T01:42:36", "url": "https://files.pythonhosted.org/packages/6e/7f/2b3887ba1ba084d51572571682073d452f216c89df1f5d7675a4e3c57c0e/wc.pageturner-1.3.2.zip" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "41798ea88a112db19a4b403ba702537e", "sha256": "96afa12f2596015b908c6c7aad19677bebbfe55e55b9d4d2c535eb7516914a4d" }, "downloads": -1, "filename": "wc.pageturner-1.3.3.tar.gz", "has_sig": false, "md5_digest": "41798ea88a112db19a4b403ba702537e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 443551, "upload_time": "2012-10-02T15:48:42", "url": "https://files.pythonhosted.org/packages/04/ce/20c086f0415c1c370275e7e2278840d6d5ccd575b1329c8c199ed7db5dc8/wc.pageturner-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "016b55cef390135ce4e8f76d4a4f7755", "sha256": "a6af3c203bf103789ef970aceab5756a3bf15de02db4fdc64bae7620defb6805" }, "downloads": -1, "filename": "wc.pageturner-1.3.4.zip", "has_sig": false, "md5_digest": "016b55cef390135ce4e8f76d4a4f7755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454122, "upload_time": "2012-10-02T16:09:01", "url": "https://files.pythonhosted.org/packages/f3/2d/80531f38f0f79583dc4383bd45f12b047bdfee2a384c9e3a21b205ff5988/wc.pageturner-1.3.4.zip" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "5bfa077d3d52ea80376c84aba5d7e696", "sha256": "c76fb6732d6dc798672f20f769a74261507bc695a449163008f6b8ce15d97272" }, "downloads": -1, "filename": "wc.pageturner-1.3.5.zip", "has_sig": false, "md5_digest": "5bfa077d3d52ea80376c84aba5d7e696", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454708, "upload_time": "2013-05-07T10:52:47", "url": "https://files.pythonhosted.org/packages/52/69/8a451a746d9703115ee71a1c9061639bb5a6e41ccfa58f848d512252eb33/wc.pageturner-1.3.5.zip" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "21cd49622ad79ea36b567a706ea57c0f", "sha256": "6f8d915bd691b6c5b2b6f45e42f1e2103131fb4736cd1d3baaea96033c74348c" }, "downloads": -1, "filename": "wc.pageturner-1.3.6.zip", "has_sig": false, "md5_digest": "21cd49622ad79ea36b567a706ea57c0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 456054, "upload_time": "2013-05-10T15:20:38", "url": "https://files.pythonhosted.org/packages/f6/21/9758a847c01a6c03e60e24fe24430f9a9ce295fb84001997316ab2ce3ee3/wc.pageturner-1.3.6.zip" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "6a68afbd2a4cbf903154082cc192441f", "sha256": "255bf17432b726eb678eaa4f48c6f850789953d4bb11e97501aeb9594c5a8dbe" }, "downloads": -1, "filename": "wc.pageturner-1.3.7.zip", "has_sig": false, "md5_digest": "6a68afbd2a4cbf903154082cc192441f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 456228, "upload_time": "2015-06-03T14:53:56", "url": "https://files.pythonhosted.org/packages/2d/c4/2de3f70b53c2a3c845cfc6fe6bdb213100d122c566fde5d9a7d4801a5026/wc.pageturner-1.3.7.zip" } ], "2.0a1": [ { "comment_text": "", "digests": { "md5": "47d73c67257920f3ece07adedbc41562", "sha256": "798248416d72d890bab05e247486d50910aea2d4db634640e0d8df58e54af862" }, "downloads": -1, "filename": "wc.pageturner-2.0a1.zip", "has_sig": false, "md5_digest": "47d73c67257920f3ece07adedbc41562", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 454011, "upload_time": "2014-08-25T01:51:07", "url": "https://files.pythonhosted.org/packages/f9/ed/cb37ac502a78b9f0bbe0400b2614e76a68dafbc16a4a9c7fa3b350a8414c/wc.pageturner-2.0a1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6a68afbd2a4cbf903154082cc192441f", "sha256": "255bf17432b726eb678eaa4f48c6f850789953d4bb11e97501aeb9594c5a8dbe" }, "downloads": -1, "filename": "wc.pageturner-1.3.7.zip", "has_sig": false, "md5_digest": "6a68afbd2a4cbf903154082cc192441f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 456228, "upload_time": "2015-06-03T14:53:56", "url": "https://files.pythonhosted.org/packages/2d/c4/2de3f70b53c2a3c845cfc6fe6bdb213100d122c566fde5d9a7d4801a5026/wc.pageturner-1.3.7.zip" } ] }