{ "info": { "author": "Zuzu_Typ", "author_email": "zuzu.typ@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Multimedia :: Sound/Audio" ], "description": "# PyOgg\n\nPyOgg provides bindings for Xiph.org's OGG Vorbis, OGG Opus and FLAC audio file formats.\n\nIt comes bundled with the required dynamic libraries (.dll) in the Windows WHEEL (.whl) distributions.\n\nThe required libraries include the OGG library (e.g. libogg.dll) and at least either OGG Opus' libraries (e.g. libopus.dll, libopusfile.dll) and / or OGG Vorbis' libraries (e.g. libvorbis.dll, libvorbisfile.dll) \nto support Opus and Vorbis respectively, or the FLAC C library (e.g. libFLAC.dll) for FLAC support.\n\nYou can install PyOgg using PyPI.\n\n\tpip install PyOgg\n\n\nAll the functions, structures and datatypes are the same as in the C++ implementation, except for some that couldn't be translated.\nIf you want to use them natively you will have to use ctypes' data types.\nPlease refer to the official documentation and the C++ headers.\n\nYou can import the various functions from pyogg.ogg, pyogg.vorbis, pyogg.opus and pyogg.flac or use the predefined classes and functions from pyogg.\n\nPyOgg is not capable of playing files, however, you can use OpenAL for normal or even 3D playback with [PyOpenAL](https://github.com/Zuzu-Typ/PyOpenAL).\n\nHere's a reference for PyOgg's own classes and functions:\n\n\t pyogg.VorbisFile(path)\n\t\t# opens and reads an OGG Vorbis file to a buffer. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t VorbisFile.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t VorbisFile.frequency\n\t\t\t# audio frequency (e.g. 48000, 44100, etc.)\n\n\t\t VorbisFile.buffer\n\t\t\t# audio data\n\n\t\t VorbisFile.buffer_length\n\t\t\t# length of the buffer\n\n\t pyogg.OpusFile(path)\n\t\t# opens and reads an OGG Opus file to a buffer. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t OpusFile.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t OpusFile.frequency\n\t\t\t# audio frequency (always 48000)\n\n\t\t OpusFile.buffer\n\t\t\t# audio data\n\n\t\t OpusFile.buffer_length\n\t\t\t# length of the buffer\n\n\t pyogg.FlacFile(path)\n\t\t# opens and reads a FLAC file to a buffer. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t FlacFile.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t FlacFile.frequency\n\t\t\t# audio frequency (e.g. 48000, 44100, etc.)\n\n\t\t FlacFile.buffer\n\t\t\t# audio data\n\n\t\t FlacFile.buffer_length\n\t\t\t# length of the buffer\n\n\t pyogg.VorbisFileStream(path)\n\t\t# opens an OGG Vorbis file and prepares it for repeated reading. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t VorbisFileStream.vf\n\t\t\t# Vorbis audio file stream\n\n\t\t VorbisFileStream.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t VorbisFileStream.frequency\n\t\t\t# audio frequency (always 48000)\n\n\t\t get_buffer() -> [buffer, buffer_length] or None\n\t\t\t# reads some audio data into a buffer (to set the buffer size, see pyoggSetStreamBufferSize)\n\t\t\t# if the file reaches it's end this method returns None\n\t\t\t\t buffer # a buffer containing some audio data\n\t\t\t\t buffer_length # length of the buffer\n\n\t\t clean_up() -> None\n\t\t\t# deletes the buffer and closes the file\n\n\t pyogg.OpusFileStream(path)\n\t\t# opens an OGG Opus file and prepares it for repeated reading. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t OpusFileStream.of\n\t\t\t# Opus audio file stream\n\n\t\t OpusFileStream.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t OpusFileStream.frequency\n\t\t\t# audio frequency (always 48000)\n\n\t\t get_buffer() -> [buffer, buffer_length] or None\n\t\t\t# reads some audio data into a buffer (to set the buffer size, see pyoggSetStreamBufferSize)\n\t\t\t# if the file reaches it's end this method returns None\n\t\t\t\t buffer # a buffer containing some audio data\n\t\t\t\t buffer_length # length of the buffer\n\n\t\t clean_up() -> None\n\t\t\t# deletes the buffer and closes the file\n\n\t pyogg.FlacFileStream(path)\n\t\t# opens a FLAC file and prepares it for repeated reading. \n\t\t\t path # path to the file (can be relative or absolute)\n\n\t\t FlacFileStream.decoder\n\t\t\t# FLAC audio file stream decoder\n\n\t\t FlacFileStream.channels\n\t\t\t# how many audio channels the audio data has (1 = mono, 2 = stereo, etc.)\n\n\t\t FlacFileStream.frequency\n\t\t\t# audio frequency (e.g. 48000, 44100, etc.)\n\n\t\t get_buffer() -> [buffer, buffer_length] or None\n\t\t\t# reads some audio data into a buffer (to set the buffer size, see pyoggSetStreamBufferSize)\n\t\t\t# if the file reaches it's end this method returns None\n\t\t\t\t buffer # a buffer containing some audio data\n\t\t\t\t buffer_length # length of the buffer\n\n\t\t clean_up() -> None\n\t\t\t# deletes the buffer and closes the file\n\n\t pyogg.pyoggSetStreamBufferSize(size)\n\t\t# changes the maximum size for stream buffers (initially 8192)\n\t\t\t size # how much data each stream buffer holds\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Zuzu-Typ/PyOgg", "keywords": "Xiph ogg vorbis opus flac sound playback audio", "license": "BSD 3-clause \"New\" or \"Revised\"", "maintainer": "", "maintainer_email": "", "name": "PyOgg", "package_url": "https://pypi.org/project/PyOgg/", "platform": "", "project_url": "https://pypi.org/project/PyOgg/", "project_urls": { "Homepage": "https://github.com/Zuzu-Typ/PyOgg" }, "release_url": "https://pypi.org/project/PyOgg/0.6.11a1/", "requires_dist": null, "requires_python": "", "summary": "Xiph.org's Ogg Vorbis, Opus and FLAC for Python", "version": "0.6.11a1" }, "last_serial": 5661563, "releases": { "0.5.0a1": [ { "comment_text": "", "digests": { "md5": "be423e19b762c8e3216a0ec8063bf65d", "sha256": "3e06d855510885c1efef0317a925b592eeee6effdb6757554694d54ea38922f2" }, "downloads": -1, "filename": "PyOgg-0.5.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "be423e19b762c8e3216a0ec8063bf65d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14197, "upload_time": "2017-07-27T01:48:58", "url": "https://files.pythonhosted.org/packages/05/af/a0d157aaa229f132266b8a630a2a4ca8226ff4fa2d222e426702ab94bca9/PyOgg-0.5.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "164eb518dc8bdbfd35489876519d3419", "sha256": "fe27e4aa68e2287e2db2f6786356a12411619cae7ded00f3ed1d524939368ec7" }, "downloads": -1, "filename": "PyOgg-0.5.0a1.tar.gz", "has_sig": false, "md5_digest": "164eb518dc8bdbfd35489876519d3419", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16183, "upload_time": "2017-07-27T01:49:00", "url": "https://files.pythonhosted.org/packages/0b/7e/1cca8e5b635b9c1bd71364adf28776185b848585b27acc13e086b3ff45e3/PyOgg-0.5.0a1.tar.gz" } ], "0.5.10a1": [ { "comment_text": "", "digests": { "md5": "f7e1dca1575bcaf4bea4ba2d71429136", "sha256": "4d974c4f4cba78a56b0a5e4f7640a389849e678e1603557b58a57e2e2e5f848a" }, "downloads": -1, "filename": "PyOgg-0.5.10a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7e1dca1575bcaf4bea4ba2d71429136", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33429, "upload_time": "2017-08-12T18:40:16", "url": "https://files.pythonhosted.org/packages/36/d4/bd8d966993ec1b21fb735dfd8f0561c1f5cebf7b635f53c4d6f1b4b5adcc/PyOgg-0.5.10a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1607704970019c18ef4275f25d13b40", "sha256": "263cebd7be9d9e0e524ea9502fdc18ca90c72dff32d20ac2f20f58a4ed0e15d2" }, "downloads": -1, "filename": "PyOgg-0.5.10a1.tar.gz", "has_sig": false, "md5_digest": "d1607704970019c18ef4275f25d13b40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33882, "upload_time": "2017-08-12T18:40:17", "url": "https://files.pythonhosted.org/packages/0b/40/480da13059e9a4e0b5db088ede9bd422ca5769d2cd796df3c4bbbe7af32d/PyOgg-0.5.10a1.tar.gz" } ], "0.5.11a1": [ { "comment_text": "", "digests": { "md5": "221f123138d906c5207655f40c64cfb9", "sha256": "99158d32a6d7c5b175811ed42dfd0b7f715671dd5fb9c1309feb95a640e53a8f" }, "downloads": -1, "filename": "PyOgg-0.5.11a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "221f123138d906c5207655f40c64cfb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 33532, "upload_time": "2017-08-21T14:15:53", "url": "https://files.pythonhosted.org/packages/5f/18/87a2b5ed521caf8564e5e1529c0efad3e874e97d85aa4f2d9940a7bc7732/PyOgg-0.5.11a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61f42fd6d5a042b9d9fdc85ed55f7ab4", "sha256": "acdf505789503bb2469bd4d3a0569bf37b1b27247f76472db4f8951f189c4b97" }, "downloads": -1, "filename": "PyOgg-0.5.11a1.tar.gz", "has_sig": false, "md5_digest": "61f42fd6d5a042b9d9fdc85ed55f7ab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34014, "upload_time": "2017-08-21T14:15:54", "url": "https://files.pythonhosted.org/packages/fb/6a/2125293dfd55ee08f47f4299fcf3fa5069368d6a577a1c13cde5645e8f8a/PyOgg-0.5.11a1.tar.gz" } ], "0.5.1a1": [ { "comment_text": "", "digests": { "md5": "75961004456b1cb3a89752f950039be6", "sha256": "267c564802494fcaaf2ba9aeba2eba5bdf8bf981424fae1e25b3370c2efc2d9d" }, "downloads": -1, "filename": "PyOgg-0.5.1a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75961004456b1cb3a89752f950039be6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14197, "upload_time": "2017-07-27T01:55:22", "url": "https://files.pythonhosted.org/packages/19/5f/b0e3b9bc985023dec942751f5f80148612a4e3b45f560e858ec81a68b1de/PyOgg-0.5.1a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d0a3e110252b15724d057e1c5ccbe43", "sha256": "e2bc217dee7d956d0cbb61f2eaf8a6ee1edea9046fe0269e1b2a1c23117b1d5c" }, "downloads": -1, "filename": "PyOgg-0.5.1a1.tar.gz", "has_sig": false, "md5_digest": "7d0a3e110252b15724d057e1c5ccbe43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16211, "upload_time": "2017-07-27T01:55:23", "url": "https://files.pythonhosted.org/packages/5d/26/11ef9d9638030eacbc42de812bbf72412b1b1cd22c497e612fea47d185fb/PyOgg-0.5.1a1.tar.gz" } ], "0.5.2a1": [ { "comment_text": "", "digests": { "md5": "c03c1d5c7d7870fc06c37c47d907c1a0", "sha256": "4d1ff0c579a5a744ff0e404f25adb2e40cec2dcc8fd99357183d7cabd1a2ece1" }, "downloads": -1, "filename": "PyOgg-0.5.2a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c03c1d5c7d7870fc06c37c47d907c1a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14191, "upload_time": "2017-07-27T02:13:58", "url": "https://files.pythonhosted.org/packages/ed/8d/992156f6657ac36e69584969174b6a1dda57f37de81e2b513d484092ec68/PyOgg-0.5.2a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6d0525abc387e7ddc69018262cb70697", "sha256": "787a2a15201dc74bc6d17e1309e15465a9790f81a8b016594a781f5036fdb356" }, "downloads": -1, "filename": "PyOgg-0.5.2a1.tar.gz", "has_sig": false, "md5_digest": "6d0525abc387e7ddc69018262cb70697", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15202, "upload_time": "2017-07-27T02:14:00", "url": "https://files.pythonhosted.org/packages/ae/3b/7f1668e358f777550e5cf194ebdb204fd0bd2e82388fe18fcd097b331385/PyOgg-0.5.2a1.tar.gz" } ], "0.5.3a1": [ { "comment_text": "", "digests": { "md5": "9f0b43c3afec179400430e183862edcb", "sha256": "c6476fbe795d493335a5110f6e332d8bfacf5f12991e5ea0a696c6dfd005ba9f" }, "downloads": -1, "filename": "PyOgg-0.5.3a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f0b43c3afec179400430e183862edcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15576, "upload_time": "2017-07-27T02:28:09", "url": "https://files.pythonhosted.org/packages/08/26/90d99c217e2d6f77cd03f5033a703810c6014556ea83fba1117071a1f6b1/PyOgg-0.5.3a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3f9352fcd0587880e3b38efe9d362b1d", "sha256": "7617f2353ddef494616322fbefd7fbc83055c66fb746025f0f4e75bc48ee3f95" }, "downloads": -1, "filename": "PyOgg-0.5.3a1.tar.gz", "has_sig": false, "md5_digest": "3f9352fcd0587880e3b38efe9d362b1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15234, "upload_time": "2017-07-27T02:28:11", "url": "https://files.pythonhosted.org/packages/f3/61/1c01b2802ce7ad8865148fbdedbdc77ac8c0e08a3f205e6986dd27764caa/PyOgg-0.5.3a1.tar.gz" } ], "0.5.4a1": [ { "comment_text": "", "digests": { "md5": "3e20845916d772bd5739186265df9085", "sha256": "76a6f8e5ddeed5c99d177775eb1bed07fccb60d04e27144b9417433ac10e46b7" }, "downloads": -1, "filename": "PyOgg-0.5.4a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e20845916d772bd5739186265df9085", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15688, "upload_time": "2017-07-29T19:57:52", "url": "https://files.pythonhosted.org/packages/0f/b5/ff2147620cef0cd6e14e8ed5d18b981d92b0a1cbfd69a80a1a8530546736/PyOgg-0.5.4a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b7ed4c65a7f9ed08e265c74dce83c9a1", "sha256": "56285aece8b365cc61ab3eb92de792c7063b14d77adba91a9aed8b69ab85b0d8" }, "downloads": -1, "filename": "PyOgg-0.5.4a1.tar.gz", "has_sig": false, "md5_digest": "b7ed4c65a7f9ed08e265c74dce83c9a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15324, "upload_time": "2017-07-29T19:57:54", "url": "https://files.pythonhosted.org/packages/a7/b5/558aa478a04b535dd1501585a455b4dc8a4996d014e907374ff2e743d32d/PyOgg-0.5.4a1.tar.gz" } ], "0.5.5a1": [ { "comment_text": "", "digests": { "md5": "bce95b1ce95f7a0a4177aa1712ab07d3", "sha256": "7fe00761e8a2b4728670d3688e67a2fe5cccb3b318e00fa954ecff156dd67973" }, "downloads": -1, "filename": "PyOgg-0.5.5a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bce95b1ce95f7a0a4177aa1712ab07d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16354, "upload_time": "2017-07-30T14:57:05", "url": "https://files.pythonhosted.org/packages/98/fc/68ac5940805d7cf2627ed026ededa13ec6306a7e0a164afdf96c26f7bd1e/PyOgg-0.5.5a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d318223963b78eb5b32e235d3c585061", "sha256": "be01d119ecb0ea2746b6d3d0727f17c09bf5e7779d73fcd2553d414e9e68cc58" }, "downloads": -1, "filename": "PyOgg-0.5.5a1.tar.gz", "has_sig": false, "md5_digest": "d318223963b78eb5b32e235d3c585061", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15772, "upload_time": "2017-07-30T14:57:06", "url": "https://files.pythonhosted.org/packages/7a/42/302f2659ee9be6573412112c441450a60ebc5cf71cd0f9b5d47b5bf8174f/PyOgg-0.5.5a1.tar.gz" } ], "0.5.6a1": [ { "comment_text": "", "digests": { "md5": "d05f500d7b33e1c61eb127948946367b", "sha256": "f4e791284d087e18b1a646da91497caf0d94c2471ba08313cff13c83abe4693e" }, "downloads": -1, "filename": "PyOgg-0.5.6a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d05f500d7b33e1c61eb127948946367b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16264, "upload_time": "2017-07-30T19:56:56", "url": "https://files.pythonhosted.org/packages/7f/fa/9a5e52db9285d0d828af5580d8cfc0936bb4db3f5ee393f2d071f83fe38c/PyOgg-0.5.6a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "139c332280567892051b093316f97cb2", "sha256": "51528b11c6812684331172181c02ff6c75add5a71cdfcf80e4cb81c5f3a7914b" }, "downloads": -1, "filename": "PyOgg-0.5.6a1.tar.gz", "has_sig": false, "md5_digest": "139c332280567892051b093316f97cb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15683, "upload_time": "2017-07-30T19:56:57", "url": "https://files.pythonhosted.org/packages/7a/64/4d6bd2457248ea84c36ab6f195d16d68a2430bc11369830478af33173118/PyOgg-0.5.6a1.tar.gz" } ], "0.5.7a1": [ { "comment_text": "", "digests": { "md5": "20a2790ed4a5acf9b555049edbf96fea", "sha256": "6f198c91611eca60e744376edbb62537028edfa3b6b402cb19f944f91190893e" }, "downloads": -1, "filename": "PyOgg-0.5.7a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "20a2790ed4a5acf9b555049edbf96fea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17727, "upload_time": "2017-07-31T15:36:00", "url": "https://files.pythonhosted.org/packages/68/41/60ed4c23886d870537a8801533e0690a538b99b20bc554c2b7b20495281a/PyOgg-0.5.7a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc74b79a5a659db810a729bd3497f002", "sha256": "9fe1ca9a4a6b7737c18bb3b4b236095c105b3d80d1f90294c22528ab6d925421" }, "downloads": -1, "filename": "PyOgg-0.5.7a1.tar.gz", "has_sig": false, "md5_digest": "bc74b79a5a659db810a729bd3497f002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17188, "upload_time": "2017-07-31T15:36:01", "url": "https://files.pythonhosted.org/packages/82/df/0447cc03dd700bf9338d7a07b508ec38845b82d5c9daee512b6b79f43822/PyOgg-0.5.7a1.tar.gz" } ], "0.5.8a1": [ { "comment_text": "", "digests": { "md5": "376c461b8b66767dc4ef292c8949b837", "sha256": "d651f17322317111f304fc18be1b06cb84a28d6ba2b498ac2a96468aef3a18bc" }, "downloads": -1, "filename": "PyOgg-0.5.8a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "376c461b8b66767dc4ef292c8949b837", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28191, "upload_time": "2017-08-05T18:22:32", "url": "https://files.pythonhosted.org/packages/48/ca/3fd320a703249a65143e3fcdcec5a449869194420e1953e243ce633be753/PyOgg-0.5.8a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bbe34faf771c1dbc08c7a65ab14aa47", "sha256": "16713086419fc96962c341eca9557c988a90316902d31df2bc2b44a321f016a8" }, "downloads": -1, "filename": "PyOgg-0.5.8a1.tar.gz", "has_sig": false, "md5_digest": "6bbe34faf771c1dbc08c7a65ab14aa47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27637, "upload_time": "2017-08-05T18:22:35", "url": "https://files.pythonhosted.org/packages/33/c2/395672a3cca4044626d4bce9a967d9e62323d262810604c6670dcf75eeb2/PyOgg-0.5.8a1.tar.gz" } ], "0.5.9a1": [ { "comment_text": "", "digests": { "md5": "f599dcc2b32147efeb60473e4bc35c6e", "sha256": "52f78a88fa9c380f0b587e8b7380891740eecb567300ded17e7f7b726f2fa4c0" }, "downloads": -1, "filename": "PyOgg-0.5.9a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f599dcc2b32147efeb60473e4bc35c6e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29526, "upload_time": "2017-08-11T21:30:12", "url": "https://files.pythonhosted.org/packages/a9/f0/7577055f9b49c3dfa20d764c5a4d2e6783e1f62a5e16021a0caac1d7240f/PyOgg-0.5.9a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35c8657847fb76c548bb0a9bc45be47e", "sha256": "c7ac21fbdee1b98aab89791c0dd065cb0630372cda720bf0ac8997274ec9ac85" }, "downloads": -1, "filename": "PyOgg-0.5.9a1.tar.gz", "has_sig": false, "md5_digest": "35c8657847fb76c548bb0a9bc45be47e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28912, "upload_time": "2017-08-11T21:30:14", "url": "https://files.pythonhosted.org/packages/ea/dc/359081b12e1b1ce52bbb7e7ebb86b5c2820c1c122283e5060a9e0c8c8a1a/PyOgg-0.5.9a1.tar.gz" } ], "0.6.10a1": [ { "comment_text": "", "digests": { "md5": "16949aec745be6684a8ddd13589e7055", "sha256": "b9045667ae3b0c27e58f4cf02685c62333aa4c31021cfa35fcef4c91061608bd" }, "downloads": -1, "filename": "PyOgg-0.6.10a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "16949aec745be6684a8ddd13589e7055", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1037833, "upload_time": "2019-05-21T06:36:11", "url": "https://files.pythonhosted.org/packages/05/65/8dcaf8c0cd34cca36dacc049e3769e8058c592f56c2978733ababa8a3ee5/PyOgg-0.6.10a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "24b88ed3c7fce3815cf0c88220c57378", "sha256": "0545f7dda3269a7ecccdad6af8db7723955553c90fb43a745e87265b2da22293" }, "downloads": -1, "filename": "PyOgg-0.6.10a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "24b88ed3c7fce3815cf0c88220c57378", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1174170, "upload_time": "2019-05-21T06:36:15", "url": "https://files.pythonhosted.org/packages/bc/be/b8acd56a90624446798f4f72d09682b1445dfe00495f0ed2572d6cd160b3/PyOgg-0.6.10a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d201a2e351259b13f23318dc49d05d83", "sha256": "64004c332798838875c0d9227f438efa9a66408ee07ae0d8dfad17116b55a4d3" }, "downloads": -1, "filename": "PyOgg-0.6.10a1.tar.gz", "has_sig": false, "md5_digest": "d201a2e351259b13f23318dc49d05d83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34551, "upload_time": "2019-05-21T06:36:17", "url": "https://files.pythonhosted.org/packages/ae/d3/0ac464e36baf412ddbbbab83ba7d716146b664b723bd21cd5749567362e2/PyOgg-0.6.10a1.tar.gz" } ], "0.6.11a1": [ { "comment_text": "", "digests": { "md5": "79d3aad2dd2ce7dbc7506cf4339df60d", "sha256": "6f1c7bb9081b43c8368fa26fef22c9eac6f8c7eb2917edc51c64a28e65d107df" }, "downloads": -1, "filename": "PyOgg-0.6.11a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "79d3aad2dd2ce7dbc7506cf4339df60d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1037850, "upload_time": "2019-08-11T09:15:11", "url": "https://files.pythonhosted.org/packages/ab/86/bbbcb68e728e982ef8b76a3ceeaab1fee95bc5d0a8c72fc4732e600b4773/PyOgg-0.6.11a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "677b359bdec2b6e126b98c8f44d40e80", "sha256": "f34f7f366548f5ee557f4b8314c8b407b147b6ca7b8511e23112d819fef86ce4" }, "downloads": -1, "filename": "PyOgg-0.6.11a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "677b359bdec2b6e126b98c8f44d40e80", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1174184, "upload_time": "2019-08-11T09:15:14", "url": "https://files.pythonhosted.org/packages/64/8f/a69a0f94fc5e6a7ee04a6f01af7d246788a0b357522ed1b7ba892c046db9/PyOgg-0.6.11a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd8337198f26e51fe1ed21e1ace762fa", "sha256": "0a05d2ece580b4c461d70950bc0ba14d81440d2925c05910851fac9e5d2de69a" }, "downloads": -1, "filename": "PyOgg-0.6.11a1.tar.gz", "has_sig": false, "md5_digest": "cd8337198f26e51fe1ed21e1ace762fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34569, "upload_time": "2019-08-11T09:15:16", "url": "https://files.pythonhosted.org/packages/25/00/1dc3a0b5b7ed0bd3837fb486824936031aefdd5e35fc541a522a90e8dd32/PyOgg-0.6.11a1.tar.gz" } ], "0.6.1a1": [ { "comment_text": "", "digests": { "md5": "68e31d067147e56c2bc5e9e23367633b", "sha256": "d9e2760426f5208c4fb217daf89fae8f2c77926eb59d6bf481d6445f185920e5" }, "downloads": -1, "filename": "PyOgg-0.6.1a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "68e31d067147e56c2bc5e9e23367633b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1083552, "upload_time": "2018-03-31T00:29:02", "url": "https://files.pythonhosted.org/packages/a1/e7/fdbdbbe8d5d74f03f1f79fdfc25c5c74d389f573d2af54231fee1cab2f9c/PyOgg-0.6.1a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "259829167411023391592496a3321f06", "sha256": "6f337b20cb108ce92f18229fe748a6bc6947e121cb8034034a62a93c60d34709" }, "downloads": -1, "filename": "PyOgg-0.6.1a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "259829167411023391592496a3321f06", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1172846, "upload_time": "2018-03-31T00:29:06", "url": "https://files.pythonhosted.org/packages/c2/48/18a0e07f37e6281c7b1683435d695994295e713fbf5f622120286ab68866/PyOgg-0.6.1a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6d67cabd05e762d824b33a37f85fe278", "sha256": "8737efed0312fe257c7c23104dddb70f63e27fb017a15df036971bb9606a60df" }, "downloads": -1, "filename": "PyOgg-0.6.1a1.tar.gz", "has_sig": false, "md5_digest": "6d67cabd05e762d824b33a37f85fe278", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34317, "upload_time": "2018-03-31T00:29:07", "url": "https://files.pythonhosted.org/packages/d6/3b/0a41cebb61237cbe56b21dcf5de7c0475b3e903133a3c856e6db2b5cb761/PyOgg-0.6.1a1.tar.gz" } ], "0.6.2a1": [ { "comment_text": "", "digests": { "md5": "e108001c3dab86e7309622594301ab0d", "sha256": "90bac103e9d5505c07592980dd8139b59d3627a23ab4533ba03e8765a77bba2d" }, "downloads": -1, "filename": "PyOgg-0.6.2a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "e108001c3dab86e7309622594301ab0d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32418, "upload_time": "2018-05-02T19:36:08", "url": "https://files.pythonhosted.org/packages/a0/6a/d06dcb5d2823bbf0b462c36b0b12aecf9c28e379b595a011be36015c5870/PyOgg-0.6.2a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "584075f96e7d6726b8b0bed09b67f002", "sha256": "693e8778200ea9c9a9b6abac7c88dd60bb51cfb50618408d6b268852d341060d" }, "downloads": -1, "filename": "PyOgg-0.6.2a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "584075f96e7d6726b8b0bed09b67f002", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 32426, "upload_time": "2018-05-02T19:36:09", "url": "https://files.pythonhosted.org/packages/4b/ee/f98baeb86f64250d66f6ad36620825f607378bbcb0e11d236a66a9672b22/PyOgg-0.6.2a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2c08a596784932e5cd3b748fa3edcac5", "sha256": "d4ecb018d7cca6159da50bb5f5cb36ff124ca4200c07e5a921c2bb7afa2f50d6" }, "downloads": -1, "filename": "PyOgg-0.6.2a1.tar.gz", "has_sig": false, "md5_digest": "2c08a596784932e5cd3b748fa3edcac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34377, "upload_time": "2018-05-02T19:36:10", "url": "https://files.pythonhosted.org/packages/84/be/806404954d70dbed100bef8c6fd3624210accaf8e1ec182deb12aadde50f/PyOgg-0.6.2a1.tar.gz" } ], "0.6.3a1": [ { "comment_text": "", "digests": { "md5": "d7430aac65a55e2592dd6465a38ae9cd", "sha256": "3d12ea8b150bceaa304154502569f8835bb0196c9412e366814da9c29325d4ec" }, "downloads": -1, "filename": "PyOgg-0.6.3a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "d7430aac65a55e2592dd6465a38ae9cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1082681, "upload_time": "2018-05-22T10:12:52", "url": "https://files.pythonhosted.org/packages/66/1d/bbd58013463b4c31737fe5d1af34da3eb2c8f6b1f9ca5bc01939e96ae0c3/PyOgg-0.6.3a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "a2bb38649d9d028646a255569e8d0c3a", "sha256": "e4a31cdcb879d3f6aa01fcffec52243caa6b1ccf07faf3c7046a4c941e2d3260" }, "downloads": -1, "filename": "PyOgg-0.6.3a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "a2bb38649d9d028646a255569e8d0c3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1171976, "upload_time": "2018-05-22T10:13:05", "url": "https://files.pythonhosted.org/packages/d3/7e/521e77dbd9f03d4bda5ec89e3662b6ec7337bce6b956b2c7827579d505c3/PyOgg-0.6.3a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7f38ccf6522e71bd9300af9ae6aff89d", "sha256": "d05e17592cb75264e500fe2240d7d5b3a10ed4c0d92aa0254abf5bdfce81dc24" }, "downloads": -1, "filename": "PyOgg-0.6.3a1.tar.gz", "has_sig": false, "md5_digest": "7f38ccf6522e71bd9300af9ae6aff89d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35435, "upload_time": "2018-05-22T10:13:07", "url": "https://files.pythonhosted.org/packages/64/e9/5200a0c6d08652a19b83ce46f44bb1c2d87d5b26d1fc34f5c10e9b7980f1/PyOgg-0.6.3a1.tar.gz" } ], "0.6.4a1": [ { "comment_text": "", "digests": { "md5": "598191d4df2068060e277849a419089f", "sha256": "7d4a7f8a8c5e2568c2cffd4edd67c3c5ec2f7fd79046c4505124cbe58c70fc72" }, "downloads": -1, "filename": "PyOgg-0.6.4a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "598191d4df2068060e277849a419089f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1082770, "upload_time": "2018-06-25T13:00:37", "url": "https://files.pythonhosted.org/packages/0f/6d/9a7ae4c5eb7c33e6d23b9478f9f7b3459197bf1b9685f7831e86616606d7/PyOgg-0.6.4a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2cc27abd1388905377f45912285c8fe4", "sha256": "2faa22ecc648cdb36f9d425482e16bbfc838dc830df079990fa973628b9253fe" }, "downloads": -1, "filename": "PyOgg-0.6.4a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "2cc27abd1388905377f45912285c8fe4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1172067, "upload_time": "2018-06-25T13:00:41", "url": "https://files.pythonhosted.org/packages/fc/9f/c3cb55122316658ff8c67a0aee29b4e6c7be0910133b10f5c48e083a0047/PyOgg-0.6.4a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e61feda20c1cb3d5ac6c708560e8a0fa", "sha256": "0119cce6ef4531036342565f57b2ff20773fc960c0f63e6616dd5f5f040582c2" }, "downloads": -1, "filename": "PyOgg-0.6.4a1.tar.gz", "has_sig": false, "md5_digest": "e61feda20c1cb3d5ac6c708560e8a0fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35470, "upload_time": "2018-06-25T13:00:42", "url": "https://files.pythonhosted.org/packages/ba/44/ca94dd062fcf6b59488df6052070e0d533a618c2321cdfe991afa6e4d65a/PyOgg-0.6.4a1.tar.gz" } ], "0.6.5a1": [ { "comment_text": "", "digests": { "md5": "d128ff0c460214c454341cd9701922e9", "sha256": "6bd4f4c1f57c505eb2957f3b5bc82524797ee8ae2e4836fb22c526219c8ac7ba" }, "downloads": -1, "filename": "PyOgg-0.6.5a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "d128ff0c460214c454341cd9701922e9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1082727, "upload_time": "2018-12-03T14:34:02", "url": "https://files.pythonhosted.org/packages/2e/fc/dc4dd91fa49af1b794e50c4f0810898b33ebca261333224b1030c515b290/PyOgg-0.6.5a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "eebcf4fc286cf41fe749613ad6ba363d", "sha256": "f18890399c848d0dcd2866ca3450dddf38b99c570c4c8885e6d3341c66a15560" }, "downloads": -1, "filename": "PyOgg-0.6.5a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "eebcf4fc286cf41fe749613ad6ba363d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1172020, "upload_time": "2018-12-03T14:34:06", "url": "https://files.pythonhosted.org/packages/ea/8b/53b9ee7e77c2ae69e5049f1723d6c88097cbc35ac49638ecd7203f32dc72/PyOgg-0.6.5a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3345f332f1c40016639915abcf4bfdd8", "sha256": "11d5950c14121b88e173eda1657d4e477909823bce11b847b62ed8b61540a06d" }, "downloads": -1, "filename": "PyOgg-0.6.5a1.tar.gz", "has_sig": false, "md5_digest": "3345f332f1c40016639915abcf4bfdd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35002, "upload_time": "2018-12-03T14:34:08", "url": "https://files.pythonhosted.org/packages/46/c9/2a4ab50e15715dbd953729a0f84d8f08428248fa632dbd23ab18e7130b1d/PyOgg-0.6.5a1.tar.gz" } ], "0.6.6a1": [ { "comment_text": "", "digests": { "md5": "fd162537c65b0c86dadb7b170593ac3f", "sha256": "d66f167ee8d01aa5fb78a8040e7fa165a5ee45835002b062c13e3d99463246ef" }, "downloads": -1, "filename": "PyOgg-0.6.6a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "fd162537c65b0c86dadb7b170593ac3f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1082368, "upload_time": "2019-01-14T15:40:08", "url": "https://files.pythonhosted.org/packages/3b/33/f33de14cdcf1fb0e31dc7dab3ed950272b9680396b15a1c314b582d0a6ee/PyOgg-0.6.6a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "04169d1243b12e0644584541adee9baf", "sha256": "96c036c1f6ff133d47610f60ef4fb573169cf46c1a6c4374526c7938fd003c4f" }, "downloads": -1, "filename": "PyOgg-0.6.6a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "04169d1243b12e0644584541adee9baf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1171665, "upload_time": "2019-01-14T15:40:11", "url": "https://files.pythonhosted.org/packages/95/f4/1e3f43c23f2e60ddea471874b8b19b7f5f50d4135ca85d3c9a19fa3a9dc7/PyOgg-0.6.6a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a555bdcdc35b3ace85fb379091b916bc", "sha256": "3a03888e559b460a1e479bd0e27cc90a932c74ceed1f71b5f4836570117d1fc6" }, "downloads": -1, "filename": "PyOgg-0.6.6a1.tar.gz", "has_sig": false, "md5_digest": "a555bdcdc35b3ace85fb379091b916bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34535, "upload_time": "2019-01-14T15:40:13", "url": "https://files.pythonhosted.org/packages/e6/f7/18ba1d324f5888195452e688aa97943e580bf9e97c6161251c887c403292/PyOgg-0.6.6a1.tar.gz" } ], "0.6.7a1": [ { "comment_text": "", "digests": { "md5": "2fc8a93a4da8c802c95d0d42f6ddbc99", "sha256": "820dc1006be9b921fef23f15365b562c6ee345bd5ac0be0f521cfa3e7b38faa9" }, "downloads": -1, "filename": "PyOgg-0.6.7a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "2fc8a93a4da8c802c95d0d42f6ddbc99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1082389, "upload_time": "2019-03-01T10:44:32", "url": "https://files.pythonhosted.org/packages/ab/6a/9388769ae4266324e44ef687fc4f11eb7e7bffe3e0627751952525c47d2b/PyOgg-0.6.7a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ccc4fb3af47b55d6ac113f94d346b21a", "sha256": "1218b4efbe2909fd0091c66e67fd10ceffc939398863797290860c5bf496f66e" }, "downloads": -1, "filename": "PyOgg-0.6.7a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "ccc4fb3af47b55d6ac113f94d346b21a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1171686, "upload_time": "2019-03-01T10:44:41", "url": "https://files.pythonhosted.org/packages/3b/73/638130edec86c11425c4b3d6aae0d002b62887f60e552c512d8a52e1c4b7/PyOgg-0.6.7a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "33888e1d8160af766a8e1c685fc0d6ac", "sha256": "e37abdca4499167f89704d7397500818c0206927e4a572acfb292a3fa83c7071" }, "downloads": -1, "filename": "PyOgg-0.6.7a1.tar.gz", "has_sig": false, "md5_digest": "33888e1d8160af766a8e1c685fc0d6ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34563, "upload_time": "2019-03-01T10:44:44", "url": "https://files.pythonhosted.org/packages/d1/c1/820415e42e3277311fe65d2e7f8514b2fa9a012a1a9361e947d3193fe2a3/PyOgg-0.6.7a1.tar.gz" } ], "0.6.9a1": [ { "comment_text": "", "digests": { "md5": "8ffdc01324a18657fc7b3044493b9499", "sha256": "a31a9c8d8ec59b8286f7c0e454a28783c8bb8836894b54373e36f05f66c069b1" }, "downloads": -1, "filename": "PyOgg-0.6.9a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "8ffdc01324a18657fc7b3044493b9499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1084855, "upload_time": "2019-04-01T11:24:35", "url": "https://files.pythonhosted.org/packages/af/5b/12a8acbadfa23e76f5a89f5e0c9c32975304a542491db89cfd41c4dd6ca9/PyOgg-0.6.9a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "9e040f33e8750f0d215a04bedce7b909", "sha256": "5b5d5a90ccacadfb320b799c902de862adca1686b94e8cc0765c69fcf32a65a1" }, "downloads": -1, "filename": "PyOgg-0.6.9a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "9e040f33e8750f0d215a04bedce7b909", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1174154, "upload_time": "2019-04-01T11:24:38", "url": "https://files.pythonhosted.org/packages/6b/91/db9c19196a56ff747e776293de4d9a42a8becaa2569d24dfdc112b26145c/PyOgg-0.6.9a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "42b3ebf2855abdcde3fa3fc0a898ca6c", "sha256": "356e2c80415cad3bf4da25aef23756cc1db00cbe85c6a347616e5f3b3dc74b75" }, "downloads": -1, "filename": "PyOgg-0.6.9a1.tar.gz", "has_sig": false, "md5_digest": "42b3ebf2855abdcde3fa3fc0a898ca6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34536, "upload_time": "2019-04-01T11:24:40", "url": "https://files.pythonhosted.org/packages/05/f2/a57d05035c8b0273f4d7500a670256e02d49731bf1fba006342f9b651ecd/PyOgg-0.6.9a1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "79d3aad2dd2ce7dbc7506cf4339df60d", "sha256": "6f1c7bb9081b43c8368fa26fef22c9eac6f8c7eb2917edc51c64a28e65d107df" }, "downloads": -1, "filename": "PyOgg-0.6.11a1-py2.py3-none-win32.whl", "has_sig": false, "md5_digest": "79d3aad2dd2ce7dbc7506cf4339df60d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1037850, "upload_time": "2019-08-11T09:15:11", "url": "https://files.pythonhosted.org/packages/ab/86/bbbcb68e728e982ef8b76a3ceeaab1fee95bc5d0a8c72fc4732e600b4773/PyOgg-0.6.11a1-py2.py3-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "677b359bdec2b6e126b98c8f44d40e80", "sha256": "f34f7f366548f5ee557f4b8314c8b407b147b6ca7b8511e23112d819fef86ce4" }, "downloads": -1, "filename": "PyOgg-0.6.11a1-py2.py3-none-win_amd64.whl", "has_sig": false, "md5_digest": "677b359bdec2b6e126b98c8f44d40e80", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1174184, "upload_time": "2019-08-11T09:15:14", "url": "https://files.pythonhosted.org/packages/64/8f/a69a0f94fc5e6a7ee04a6f01af7d246788a0b357522ed1b7ba892c046db9/PyOgg-0.6.11a1-py2.py3-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cd8337198f26e51fe1ed21e1ace762fa", "sha256": "0a05d2ece580b4c461d70950bc0ba14d81440d2925c05910851fac9e5d2de69a" }, "downloads": -1, "filename": "PyOgg-0.6.11a1.tar.gz", "has_sig": false, "md5_digest": "cd8337198f26e51fe1ed21e1ace762fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34569, "upload_time": "2019-08-11T09:15:16", "url": "https://files.pythonhosted.org/packages/25/00/1dc3a0b5b7ed0bd3837fb486824936031aefdd5e35fc541a522a90e8dd32/PyOgg-0.6.11a1.tar.gz" } ] }