{ "info": { "author": "Stephan H\u00fcgel", "author_email": "urschrei@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: GIS", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "[![Travis (.org)](https://img.shields.io/travis/:urschrei/:convertbng.svg)](https://travis-ci.org/urschrei/convertbng)\n[![Windows Build Status](https://ci.appveyor.com/api/projects/status/t9icsmbsut93k7pg?branch=master&svg=true)](https://ci.appveyor.com/project/urschrei/convertbng) [![Coverage Status](https://coveralls.io/repos/github/urschrei/convertbng/badge.svg?branch=master)](https://coveralls.io/github/urschrei/convertbng?branch=master) [![PyPI Version](https://img.shields.io/pypi/v/convertbng.svg)](https://pypi.python.org/pypi/convertbng) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](license.txt)\n\n# Description\nA utility library for converting decimal [WGS84](http://spatialreference.org/ref/epsg/wgs-84/) longitude and latitude coordinates into ETRS89 ([EPSG:25830](http://spatialreference.org/ref/epsg/etrs89-utm-zone-30n/)) and/or British National Grid (More correctly: OSGB36, or [EPSG:27700](http://spatialreference.org/ref/epsg/osgb-1936-british-national-grid/)) Eastings and Northings, and vice versa. \n\nConversion is handled by a [Rust binary](https://github.com/urschrei/rust_bng) using FFI, and is quite fast. Some benchmarks can be found [here](https://github.com/urschrei/lonlat_bng#benchmark).\n\n# Installation\n`pip install convertbng` \nPlease use an up-to-date version of pip (`8.1.2` as of June 2016)\n\n## Supported Platforms\nThe package has been built for and tested on the following platforms:\n- Linux 64-bit, Python 2.7 and 3.6, as a [manylinux1](https://www.python.org/dev/peps/pep-0513) wheel\n- OS X 64-bit, Python 2.7, 3.6 and 3.7, as a wheel for versions 10.6 and above\n- Windows 32-bit and 64-bit Python 2.7 and 32-bit Python 3.4, as a wheel.\n\n### Windows Binaries\nThe Rust DLL and the Cython extension used by this package have been built with an MSVC toolchain. You shouldn't need to install any additional runtimes in order for the wheel to work, but please open an issue if you encounter any errors.\n\n# Usage\nThe functions accept either a sequence (such as a list or numpy array) of longitude or easting values and a sequence of latitude or northing values, **or** a single longitude/easting value and single latitude/northing value. Note the return type: \n`\"returns a list of two lists containing floats, respectively\"`\n\n**NOTE**: Coordinate pairs outside the BNG bounding box, or without OSTN15 coverage will return a result of \n`[[nan], [nan]]`, which cannot be mapped. Since transformed coordinates are guaranteed to be returned in the same order as the input, it is trivial to check for this value. Alternatively, ensure your data fall within the bounding box before transforming them: \n\n**Longitude**: \nEast: 1.7800 \nWest: -7.5600 \n**Latitude**: \nNorth: 60.8400 \nSouth: 49.9600 \n\nAll functions try to be liberal about what containers they accept: `list`, `tuple`, `array.array`, `numpy.ndarray`, and pretty much anything that has the `__iter__` attribute should work, including generators.\n\n```python\nfrom convertbng.util import convert_bng, convert_lonlat\n\n# convert a single value\nres = convert_bng(lon, lat)\n\n# convert lists of longitude and latitude values to OSGB36 Eastings and Northings, using OSTN15 corrections\nlons = [lon1, lon2, lon3]\nlats = [lat1, lat2, lat3]\nres_list = convert_bng(lons, lats)\n\n# convert lists of BNG Eastings and Northings to longitude, latitude\neastings = [easting1, easting2, easting3]\nnorthings = [northing1, northing2, northing3]\nres_list_en = convert_lonlat(eastings, northings)\n\n# assumes numpy imported as np\nlons_np = np.array(lons)\nlats_np = np.array(lats)\n res_list_np = convert_bng(lons_np, lats_np)\n```\n\n## But I Have a List of Coordinate Pairs\n coords = [[1.0, 2.0], [3.0, 4.0]]\n a, b = list(zip(*coords))\n # a is (1.0, 3.0)\n # b is (2.0, 4.0)\n\n### But I have `Shapely` Geometries\n from shapely.geometry import LineString\n\n ls = LineString([[651307.003, 313255.686], [651307.004, 313255.687]])\n new_linestring = LineString(\n zip(*convert_etrs89_to_lonlat(*zip(*ls.coords)))\n )\n\n# Experimental Cython Module\nIf you're comfortable with restricting yourself to `NumPy f64` arrays, you may use the Cython functions instead. These are identical to those listed below, and are selected by changing the import statement \n`from convertbng.util import` to \n**`from convertbng.cutil import`** \n\nThe conversion functions will accept most sequences which implement `__iter__`, as above (`list`, `tuple`, `float`, `array.array`, `numpy.ndarray`), but **will always return `NumPy f64 ndarray`**. In addition, you must ensure that your inputs are `float`, `f64`, or `d` in the case of `array.array`. \n\n\n\n# Available Conversions (AKA I Want To\u2026)\n- transform longitudes and latitudes to OSGB36 Eastings and Northings **very accurately**:\n - use `convert_bng()`\n- transform OSGB36 Eastings and Northings to longitude and latitude, **very accurately**:\n - use `convert_lonlat()`\n- transform longitudes and latitudes to ETRS89 Eastings and Northings, **very quickly** (without OSTN15 corrections):\n - use `convert_to_etrs89()`\n- transform ETRS89 Eastings and Northings to ETRS89 longitude and latitude, **very quickly** (the transformation does not use OSTN15):\n - use `convert_etrs89_to_lonlat()`\n- convert ETRS89 Eastings and Northings to their most accurate real-world representation, using the OSTN15 corrections:\n - use `convert_etrs89_to_osgb36()`\n\nProvided for completeness:\n\n- transform accurate OSGB36 Eastings and Northings to *less-accurate* ETRS89 Eastings and Northings:\n - use `convert_osgb36_to_etrs89()`\n\n# Relationship between ETRS89 and WGS84\nFrom [Transformations and OSGM02\u2122 User guide](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/formats-for-developers.html), p7. Emphasis mine.\n>[\u2026] ETRS89 is a precise version of the better known WGS84 reference system optimised for use in Europe; **however, for most purposes it can be considered equivalent to WGS84**.\nSpecifically, the motion of the European continental plate is not apparent in ETRS89, which allows a fixed relationship to be established between this system and Ordnance Survey mapping coordinate systems.\nAdditional precise versions of WGS84 are currently in use, notably ITRS; these are not equivalent to ETRS89. The difference between ITRS and ETRS89 is in the order of 0.25 m (in 1999), and growing by 0.025 m per year in UK and Ireland. This effect is only relevant in international scientific applications. **For all navigation, mapping, GIS, and engineering applications within the tectonically stable parts of Europe (including UK and Ireland), the term ETRS89 should be taken as synonymous with WGS84**.\n\nIn essence, this means that anywhere you see ETRS89 in this README, you can substitute WGS84. \n\n## What CRS Are My Data In\n- if you have latitude and longitude coordinates: \n - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!\n- if you got your coordinates from a smartphone or a consumer GPS:\n - They're probably [WGS84](http://spatialreference.org/ref/epsg/wgs-84/). Everything's fine!\n- if you have x and y coordinates, or you got your coordinates from Google Maps or Bing Maps and they look something like `(-626172.1357121646, 6887893.4928337997)`, or the phrase \"Spherical Mercator\" is mentioned anywhere:\n - they're probably in [Web Mercator](http://spatialreference.org/ref/sr-org/6864/). You **must** convert them to WGS84 first. Use `convert_epsg3857_to_wgs84([x_coordinates], [y_coordinates])` to do so.\n\n# Accuracy\n`convert_bng` and `convert_lonlat` first use the standard seven-step [Helmert transform](https://en.wikipedia.org/wiki/Helmert_transformation) to convert coordinates. This is fast, but not particularly accurate \u2013 it can introduce positional error up to approximately 5 metres. For most applications, this is not of particular concern \u2013 the input data (especially those originating with smartphone GPS) probably exceed this level of error in any case. In order to adjust for this, the OSTN15 adjustments for the kilometer-grid the ETRS89 point falls in are retrieved, and a linear interpolation to give final, accurate coordinates is carried out. This process happens in reverse for `convert_lonlat`.\n\n## OSTN15\n[OSTN15](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html) data are used for highly accurate conversions from ETRS89 latitude and longitude, or ETRS89 Eastings and Northings to OSGB36 Eastings and Northings, and vice versa. These data will usually have been recorded using the [National GPS Network](https://www.ordnancesurvey.co.uk/business-and-government/products/os-net/index.html):\n\n### Accuracy of *Your* Data\nConversion of your coordinates using OSTN15 transformations will be accurate, but if you're using consumer equipment, or got your data off the web, be aware that you're converting coordinates which probably weren't accurately recorded in the first place. That's because [accurate surveying is difficult](https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/surveying.html).\n\n### Accuracy of the OSTN15 transformation used in this library\n- ETRS89 longitude and latitude / Eastings and Northings to OSGB36 conversion agrees with the provided Ordnance Survey test data in **31 of the 42** test coordinates (excluding two coordinates designed to return no data; these correctly fail).\n- The 11 discrepancies are of **1mm** in each case.\n- OSGB36 to ETRS89 longitude and latitude conversion is accurate to within 8 decimal places, or 1.1mm.\n\n### A Note on Ellipsoids\nWGS84 and ETRS89 coordinates use the GRS80 ellipsoid, whereas OSGB36 uses the Airy 1830 ellipsoid, which provides a regional best fit for Britain. Positions for coordinates in Great Britain can differ by over 100m as a result. It is thus inadvisable to attempt calculations using mixed ETRS89 and OSGB36 coordinates.\n\n[![OSTN15](ostn002_s.gif)]( \"OSTN15\")\n\n## Implementation\nThe main detail of interest is the FFI interface between Python and Rust, the Python side of which can be found in [util.py](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L64-L100) (the `ctypes` implementation), [cutil.pyx](https://github.com/urschrei/convertbng/blob/master/convertbng/cutil.pyx#L51-L86) (the `cython` implementation), and the Rust side of which can be found in [ffi.rs](https://github.com/urschrei/rust_bng/blob/master/src/ffi.rs#L47-L271). \nThe [ctypes](https://docs.python.org/2/library/ctypes.html) library expects C-compatible data structures, which we define in Rust (see above). We then define methods which allow us to receive, safely access, return, and free data across the FFI boundary. \nFinally, we link the Rust conversion functions from `util.py` [again](https://github.com/urschrei/convertbng/blob/master/convertbng/util.py#L103-L205). Note the `errcheck` assignments, which convert the FFI-compatible ctypes data structures to tuple lists. \n\n# Building the binary for local development\n- ensure you have Rust 1.x and Cargo [installed](https://www.rustup.rs)\n- clone https://github.com/urschrei/lonlat_bng, and ensure it's adjacent to this dir (i.e. `code/witnessme/convertbng` and `code/witnessme/rust_bng`)\n- in this dir, run `make clean` then `make`\n\n# Tests\nYou can run the Python module tests by running \"make test\". \nTests require both `numpy` and `nose`.\n\n# License\n[MIT](license.txt)\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/urschrei/convertbng/tarball/v0.6.10", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/urschrei/convertbng", "keywords": "Geo,BNG,OSGB36,GIS,ETRS89,OSTN02", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "convertbng", "package_url": "https://pypi.org/project/convertbng/", "platform": "", "project_url": "https://pypi.org/project/convertbng/", "project_urls": { "Download": "https://github.com/urschrei/convertbng/tarball/v0.6.10", "Homepage": "https://github.com/urschrei/convertbng" }, "release_url": "https://pypi.org/project/convertbng/0.6.10/", "requires_dist": [ "numpy (>=1.11.0)" ], "requires_python": "", "summary": "Fast lon, lat to and from ETRS89 and BNG (OSGB36) using Rust FFI", "version": "0.6.10" }, "last_serial": 5090902, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "b50b3f7ed36d94edb0228cfd1861e788", "sha256": "546b3da3c1735faac18f1e888f5b77a19617247ce8607ee9a50bbc8bd4997949" }, "downloads": -1, "filename": "convertbng-0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b50b3f7ed36d94edb0228cfd1861e788", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730955, "upload_time": "2015-06-21T21:35:38", "url": "https://files.pythonhosted.org/packages/e1/3e/a742d8dd82ef769a37c331e6f8c1e7eb0329c8f1897380bdd55ec029349e/convertbng-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1e7f811c8a6ac27e846391ca34d5f09", "sha256": "634f2619cc1d37f7e934dba44d2f1f7bde9c81fb63086a1ae1d8618a19a73347" }, "downloads": -1, "filename": "convertbng-0.1.tar.gz", "has_sig": true, "md5_digest": "d1e7f811c8a6ac27e846391ca34d5f09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726925, "upload_time": "2015-06-21T21:35:57", "url": "https://files.pythonhosted.org/packages/d5/81/5edb6f84053b5f7d172f690d4ca9e5a0d46a3c2b408d4e15db3ecf998b10/convertbng-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "18f0603c1bbf4959251c82d70b61c61d", "sha256": "49a4dc300a3b51f0656465c5c3e8dc7ef41256a963a34d8d891e546003f127b7" }, "downloads": -1, "filename": "convertbng-0.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "18f0603c1bbf4959251c82d70b61c61d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730989, "upload_time": "2015-06-21T21:38:58", "url": "https://files.pythonhosted.org/packages/55/19/ee080d792ae1327ecaeead71316ff46165d1e7983b3a319f4ba72e5f0b2e/convertbng-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe2cfa269deedde0addfed53686dd573", "sha256": "efe38ab38a7441ed81783cdc12951da95e81595728f4baf8b48c3870abec0678" }, "downloads": -1, "filename": "convertbng-0.1.1.tar.gz", "has_sig": true, "md5_digest": "fe2cfa269deedde0addfed53686dd573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726936, "upload_time": "2015-06-21T21:39:14", "url": "https://files.pythonhosted.org/packages/6a/c3/8af62807b0eaf793606ddc032192089f09ecdde51e5688aa2329471d46a5/convertbng-0.1.1.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "cb8548f0f77cf5f5b171ca95682c9a02", "sha256": "df0e962b34ec4e6d48439ed6015fafa527abae759f1ca54c20803a710a451bab" }, "downloads": -1, "filename": "convertbng-0.1.10-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "cb8548f0f77cf5f5b171ca95682c9a02", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 739127, "upload_time": "2015-06-23T16:41:18", "url": "https://files.pythonhosted.org/packages/2b/79/19a69759523c4b46b9ea86c23d995ae560a6082830f1d4e3f63f64a59007/convertbng-0.1.10-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "672bfdb76111de9ce290730d70992fed", "sha256": "821cada0266066a9a567dbee6f560c4b0cd6de2f4d485a3fb08550b59a9513fd" }, "downloads": -1, "filename": "convertbng-0.1.10.tar.gz", "has_sig": true, "md5_digest": "672bfdb76111de9ce290730d70992fed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734260, "upload_time": "2015-06-23T16:42:01", "url": "https://files.pythonhosted.org/packages/2e/69/f9709b8029daee61711fa03a83d5815449c2b00730c2fd23fd476de49d57/convertbng-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "041343474bfd8d3f92811bc558d10819", "sha256": "0762c3a0e59c2189e7c8f613385e869007c0e6df93fab57bfab9699c520d0a87" }, "downloads": -1, "filename": "convertbng-0.1.11-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "041343474bfd8d3f92811bc558d10819", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 739250, "upload_time": "2015-06-23T23:06:17", "url": "https://files.pythonhosted.org/packages/7d/0e/adbf8c346205f3e262c50c06e0731068de3ca886dfd20d0e74a2e56e07f2/convertbng-0.1.11-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "86c64a324423423ffa0fad51d58fc315", "sha256": "8abf5ef77caa6d4bb84f1fda016350ec5dffa5f127b002e2391cfbc4b16575a3" }, "downloads": -1, "filename": "convertbng-0.1.11.tar.gz", "has_sig": true, "md5_digest": "86c64a324423423ffa0fad51d58fc315", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734388, "upload_time": "2015-06-23T23:06:35", "url": "https://files.pythonhosted.org/packages/bb/93/a8648077d53fea71ea9ad2530f89cad454b75d4e80f59718125389ccaedc/convertbng-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "3e345a548e30ad82e32064aa0d31059d", "sha256": "4ede3612a6de7751f785aa4d48f46c85505b65802a184ace1210246d1a19a791" }, "downloads": -1, "filename": "convertbng-0.1.12-cp27-none-macosx_10_6_x86_64.whl", "has_sig": true, "md5_digest": "3e345a548e30ad82e32064aa0d31059d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 739940, "upload_time": "2015-06-24T12:44:26", "url": "https://files.pythonhosted.org/packages/8c/4a/194fcdf5abd5c4ad4b932203b12505d48a355a8a78c28ac676d7920c3b83/convertbng-0.1.12-cp27-none-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4b47f6896b293ab2ad2274bc09a0f67b", "sha256": "be62cc3d2c1386183ec14a70516abe3f01942c815ca4ecc2464d30f23dbc7b3f" }, "downloads": -1, "filename": "convertbng-0.1.12.tar.gz", "has_sig": true, "md5_digest": "4b47f6896b293ab2ad2274bc09a0f67b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734439, "upload_time": "2015-06-24T12:44:32", "url": "https://files.pythonhosted.org/packages/b7/cf/09bd8f85248fcb2586e84f050f1fb9aa50a95b71b89f2e08c7de1a1a511c/convertbng-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "ba464b8ed004ad68186ee12ae1172e03", "sha256": "fd5f0311b9b2a3b8886c7b1a7a408ed7c603c486e914b49c44843f64d5523ad0" }, "downloads": -1, "filename": "convertbng-0.1.13-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "ba464b8ed004ad68186ee12ae1172e03", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 781600, "upload_time": "2015-06-30T22:49:51", "url": "https://files.pythonhosted.org/packages/06/10/e31782fb1b1709506ad3b13539d5e9e6f2c5cb249cbe9e7f3bfdf07feeb3/convertbng-0.1.13-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "618c7e0f7c09bb0c2ead4cf3e85ef345", "sha256": "5f68058ca7f07f7a27c0acb4c592bdbe28c3815deb5d2e44886d1383159f064c" }, "downloads": -1, "filename": "convertbng-0.1.13.tar.gz", "has_sig": true, "md5_digest": "618c7e0f7c09bb0c2ead4cf3e85ef345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 778134, "upload_time": "2015-06-30T22:50:06", "url": "https://files.pythonhosted.org/packages/98/52/aac5bf73fa21fdf4fcfeabc0d3e45451fcd2fbb60d6fa05c279db8dca494/convertbng-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "08773b62b7112ea615d6238311dc2b5b", "sha256": "65afedf0be820d92a9acfc984669f163dd13bda6d2ee40fa0ca3fb5bb7ef7806" }, "downloads": -1, "filename": "convertbng-0.1.14-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "08773b62b7112ea615d6238311dc2b5b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 782151, "upload_time": "2015-07-01T01:25:08", "url": "https://files.pythonhosted.org/packages/e2/7d/cdd53b8eda08d1db800884fd44d9c1b1f04d2bc292f2bb730f8904431025/convertbng-0.1.14-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "bed428280533ee6e7270db3900decd15", "sha256": "7da3c12c689d7b04af0ea83e33d9af6ad13e8fd87b3a33c75b6367ed9f05101d" }, "downloads": -1, "filename": "convertbng-0.1.14.tar.gz", "has_sig": true, "md5_digest": "bed428280533ee6e7270db3900decd15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 778674, "upload_time": "2015-07-01T01:25:27", "url": "https://files.pythonhosted.org/packages/7f/9e/f74e9c51ee57b4ff0aed6eb50a855b4a4a377e2892ccd146be070f6fab9c/convertbng-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "28412109c0262d52e72a7562e7509adc", "sha256": "199e4cd289c3605e40ecd1272b38acffdcf56ff137eaf6c5e2f2eeae2dfb73e3" }, "downloads": -1, "filename": "convertbng-0.1.15-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "28412109c0262d52e72a7562e7509adc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1836385, "upload_time": "2015-07-01T13:11:34", "url": "https://files.pythonhosted.org/packages/a7/e7/ccb62a130272f41c9ee8c34d5b2cd3d898bc9253521fdd55e1f8ce005136/convertbng-0.1.15-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "4e54a7c19cc6a142d3ce11460c3e55ca", "sha256": "ad7024faa14ceb23e879bb31d60e1f85815f3b83790b7095b0c0cf6680606a2c" }, "downloads": -1, "filename": "convertbng-0.1.15.tar.gz", "has_sig": true, "md5_digest": "4e54a7c19cc6a142d3ce11460c3e55ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1825918, "upload_time": "2015-07-01T13:11:55", "url": "https://files.pythonhosted.org/packages/8e/8c/32f8ae042c8c5464049e4e3434854a1bae609fe8c746eba9f708fdac5a49/convertbng-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "bdadd89ff003a5535bbc908c037a27cc", "sha256": "4d924dd02aefde4a82ded8f081448d8de4afae2961a91975d89f2379426035f4" }, "downloads": -1, "filename": "convertbng-0.1.16-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "bdadd89ff003a5535bbc908c037a27cc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1835855, "upload_time": "2015-07-02T00:36:21", "url": "https://files.pythonhosted.org/packages/f3/7b/a45fbab3301486e24e9da7f9947f9328f18432ee9b15630b21d8f83d1d53/convertbng-0.1.16-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e2baa733cf3e744261596b6d8f9f7571", "sha256": "a35ad289c26cfa240338028181451bc18a24b253bcbb8d44e742f1308355546b" }, "downloads": -1, "filename": "convertbng-0.1.16.tar.gz", "has_sig": true, "md5_digest": "e2baa733cf3e744261596b6d8f9f7571", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1824668, "upload_time": "2015-07-02T00:36:43", "url": "https://files.pythonhosted.org/packages/57/7d/ba70d43f4e5a4ba3a1bb91efdc51b3b6db79bb050dfbd21f4e6825249880/convertbng-0.1.16.tar.gz" } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "0ef853fc7260e9e66a2ae51761fdbbbc", "sha256": "ccc391021d5da89e10e734277433ca38abb75e12caadb932aea7ed53e25d732a" }, "downloads": -1, "filename": "convertbng-0.1.17-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "0ef853fc7260e9e66a2ae51761fdbbbc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1836400, "upload_time": "2015-07-05T18:07:00", "url": "https://files.pythonhosted.org/packages/78/65/1954fac49139fb8cc7a02ebaa3e57913b67fdae28689c4e2f9a5bb602ab7/convertbng-0.1.17-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "88fb87a5c59bbc7e2071182f4df0625e", "sha256": "24d4c6f66c4a2c894c832af92fe77efc400a325e27871750ce1f629b31a63061" }, "downloads": -1, "filename": "convertbng-0.1.17.tar.gz", "has_sig": true, "md5_digest": "88fb87a5c59bbc7e2071182f4df0625e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1824871, "upload_time": "2015-07-05T18:07:19", "url": "https://files.pythonhosted.org/packages/7b/13/0afceb8821db167f9f812bdd39aa8680678b3ac405a962980cb2af0931fe/convertbng-0.1.17.tar.gz" } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "630224cdabb1c30016e71b30be3ac38f", "sha256": "b0d710eae5217d8d3507e968e67d0d048571d2ff63e646c44b35a622b1030206" }, "downloads": -1, "filename": "convertbng-0.1.18-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "630224cdabb1c30016e71b30be3ac38f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1840209, "upload_time": "2015-07-14T18:17:43", "url": "https://files.pythonhosted.org/packages/1e/72/81d7284417a66022ac09be43d5aea54bfb9030d18b0a336d8eea53d504be/convertbng-0.1.18-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "7df096d3a77afdc5c4e80c7c5f3ffc24", "sha256": "e7bcf06866d1db4b8dcd2290032303ac70d3f2bac5b95a5fa77f878de90fde73" }, "downloads": -1, "filename": "convertbng-0.1.18.tar.gz", "has_sig": true, "md5_digest": "7df096d3a77afdc5c4e80c7c5f3ffc24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1831820, "upload_time": "2015-07-14T18:18:01", "url": "https://files.pythonhosted.org/packages/08/f9/e96cdbd4d8a3c22e9a5863993e85977490bfc0b059b677d5d1eb95ab49a6/convertbng-0.1.18.tar.gz" } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "fc357ef605697244bef18e285acaabf2", "sha256": "f3b431fbee43fea54e2c1029ef6d4531a8111573505c227f3f9af1cc7c3537e2" }, "downloads": -1, "filename": "convertbng-0.1.19-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "fc357ef605697244bef18e285acaabf2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1654400, "upload_time": "2016-01-07T13:08:02", "url": "https://files.pythonhosted.org/packages/de/df/7d1a521d1c565d1b03a1ad25f25f10162b9d42d3b3ff2d4fc2ed3f00bc3d/convertbng-0.1.19-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "916e884b213c0c40edac4f453205cb29", "sha256": "698e45d76c0bd2ecad64ddd69006a32443b1ac4bd4b976ddb8e587a2b2694085" }, "downloads": -1, "filename": "convertbng-0.1.19.tar.gz", "has_sig": true, "md5_digest": "916e884b213c0c40edac4f453205cb29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1644706, "upload_time": "2016-01-07T13:08:18", "url": "https://files.pythonhosted.org/packages/5e/7e/eb3d1862d9e12b36a3451c35a225317dc7acd97832a3fc99ded26b362035/convertbng-0.1.19.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "7572985ee330eb2f5c48fca933eaf048", "sha256": "5c6389209776010d3951fd5e2d64a0a9c2563eb8bf1e607648a240b6578787b2" }, "downloads": -1, "filename": "convertbng-0.1.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7572985ee330eb2f5c48fca933eaf048", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730989, "upload_time": "2015-06-21T21:44:00", "url": "https://files.pythonhosted.org/packages/70/d5/cbf7e374c142c1710d424e0e2d357e9da0eb5fdd2ba3b5bceb8a2f3fe5c0/convertbng-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8065ed281f2b41a389b051e3aade83e7", "sha256": "824673374de3901364fccb28bcce2976f12de62dc8ad37ce78235bef68120504" }, "downloads": -1, "filename": "convertbng-0.1.2.tar.gz", "has_sig": true, "md5_digest": "8065ed281f2b41a389b051e3aade83e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726938, "upload_time": "2015-06-21T21:44:19", "url": "https://files.pythonhosted.org/packages/bf/0d/75591b4c260fa03cc68c30a9671acb4a6ecee7422bbe7a9591878e40bc53/convertbng-0.1.2.tar.gz" } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "9bc881d64eee3e48decb1eb73cb9467d", "sha256": "5b8155518cc2448ba7bc48036200bcb72ed6329482496290718496788bcb5554" }, "downloads": -1, "filename": "convertbng-0.1.20-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "9bc881d64eee3e48decb1eb73cb9467d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1657004, "upload_time": "2016-01-12T15:47:45", "url": "https://files.pythonhosted.org/packages/10/b5/cabde57fdb4d59dd9543427a8ec4e83af5f43b0ca0552aa0fdb7f31c80f8/convertbng-0.1.20-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ddc6fd50cb2b890bc4d5d4ac542c58de", "sha256": "81a6f7c159db7cbb284ce7ae92b99f923f7416fbb1cdf3c7fd05cbb55e7f2dde" }, "downloads": -1, "filename": "convertbng-0.1.20.tar.gz", "has_sig": true, "md5_digest": "ddc6fd50cb2b890bc4d5d4ac542c58de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1648721, "upload_time": "2016-01-12T15:47:53", "url": "https://files.pythonhosted.org/packages/e7/e6/c40da8e93a5083cea70e4585460dd15d2dd2f85c67d5c3e46fa10790aee1/convertbng-0.1.20.tar.gz" } ], "0.1.21": [ { "comment_text": "", "digests": { "md5": "86275164b96c3262caf2b960a2ce0cbf", "sha256": "90651c52bb82d0ac39140a2b9e1e3cef49d5b9c9a47fcbe601d9ea2d6c9e63c1" }, "downloads": -1, "filename": "convertbng-0.1.21-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "86275164b96c3262caf2b960a2ce0cbf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1373280, "upload_time": "2016-01-13T14:52:58", "url": "https://files.pythonhosted.org/packages/a8/4f/01a66176eea84f06daa75688b0e441e6bae467f77cf2f5188de5654dff83/convertbng-0.1.21-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d8d69921648878e0d306925fbe2db64a", "sha256": "1f1b9651dc52edaf62240ccf9270a6b241fbc1725f12799cbe7816c43d8986d1" }, "downloads": -1, "filename": "convertbng-0.1.21.tar.gz", "has_sig": true, "md5_digest": "d8d69921648878e0d306925fbe2db64a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362346, "upload_time": "2016-01-13T14:53:07", "url": "https://files.pythonhosted.org/packages/01/da/e7f3e1ac1d0b32ce66e5c91fd95deb9384a6e4431a17d944105ff0b66c2a/convertbng-0.1.21.tar.gz" } ], "0.1.22": [ { "comment_text": "", "digests": { "md5": "7163ec700425fcd8c5b98f1d227d2b6a", "sha256": "ac8b3a84e5aa9c56b095c133fe09789f70652d2e7c3f04d7557e7f421ed779eb" }, "downloads": -1, "filename": "convertbng-0.1.22-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "7163ec700425fcd8c5b98f1d227d2b6a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1373279, "upload_time": "2016-01-13T15:58:15", "url": "https://files.pythonhosted.org/packages/51/5a/9e47bb23f110d01de64b45ab60e2bd014f134c644481aef79c1fc0a61808/convertbng-0.1.22-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "dca9ccc89bff8c85cc3e90b53f6e9edc", "sha256": "ba1e0d1fa44663e45eddd0f484cfdc3e65bfec6ab2256fa7fd7dc5f6d365f489" }, "downloads": -1, "filename": "convertbng-0.1.22.tar.gz", "has_sig": true, "md5_digest": "dca9ccc89bff8c85cc3e90b53f6e9edc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362491, "upload_time": "2016-01-13T15:58:31", "url": "https://files.pythonhosted.org/packages/9c/9a/ed946c036793609a84bac698a84f1a2f75186c10c68f7b3bbe0a54332715/convertbng-0.1.22.tar.gz" } ], "0.1.23": [ { "comment_text": "", "digests": { "md5": "ec2d0697ccf4a6b5d5d4862a117cdf8b", "sha256": "af8cf490f3e3c0c620fffdb83d3df3e1381d5d784e4ab0686de2f015b7d3402e" }, "downloads": -1, "filename": "convertbng-0.1.23-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "ec2d0697ccf4a6b5d5d4862a117cdf8b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1373229, "upload_time": "2016-01-13T17:19:44", "url": "https://files.pythonhosted.org/packages/b8/09/5a6c12e45e350044e8b546f56292bd033deaa560e7b8c642ca5b5cfe0fd8/convertbng-0.1.23-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d564d87992d91a3fb3c5e8a16d3750a6", "sha256": "2a2743c82dcc426c3c9e45524b7eca257f6adc1346ac6b3e84343e62924552a8" }, "downloads": -1, "filename": "convertbng-0.1.23.tar.gz", "has_sig": true, "md5_digest": "d564d87992d91a3fb3c5e8a16d3750a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362500, "upload_time": "2016-01-13T17:20:01", "url": "https://files.pythonhosted.org/packages/db/96/556fd6a5907f7f4a729e4c6d2c1ff29f60c8c601f2422976ee3e8b28df68/convertbng-0.1.23.tar.gz" } ], "0.1.24": [ { "comment_text": "", "digests": { "md5": "ef8723f54504270bbbf63b6a449b66dd", "sha256": "71c7c221a780790cf523fa397f39be1d6932d3bfbed3a4192939284b570ad3bd" }, "downloads": -1, "filename": "convertbng-0.1.24-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "ef8723f54504270bbbf63b6a449b66dd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1373230, "upload_time": "2016-01-13T17:21:42", "url": "https://files.pythonhosted.org/packages/de/86/68be36765a6a65204732ffd71878d1c4380d8e8da0cf2e0aa84e984d9516/convertbng-0.1.24-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "646c25cbcbbc0e44e246dd2011d1429b", "sha256": "722236b2a6cdbca654b5a411f3e5c6241321c81e08ed000daa6eaed82d7934c3" }, "downloads": -1, "filename": "convertbng-0.1.24.tar.gz", "has_sig": true, "md5_digest": "646c25cbcbbc0e44e246dd2011d1429b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362490, "upload_time": "2016-01-13T17:22:16", "url": "https://files.pythonhosted.org/packages/b8/39/e03cb6753815fcb7e06e9434afd7f4d013d736aa70d28d7d411291e48e0a/convertbng-0.1.24.tar.gz" } ], "0.1.25": [ { "comment_text": "", "digests": { "md5": "56a86223f278fcad9826e6b11a13c053", "sha256": "981a2ac087715a9b3b7c452113f55074c85e4f0c8c4edd2f2fa69bca090a38f2" }, "downloads": -1, "filename": "convertbng-0.1.25-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "56a86223f278fcad9826e6b11a13c053", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1373177, "upload_time": "2016-01-14T17:22:20", "url": "https://files.pythonhosted.org/packages/83/55/c613d7b0e89d7a37017375974b38cd3464eb947acb053f6697b1f0f00e44/convertbng-0.1.25-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ddd6f307c9ca0602be1e088c881bd418", "sha256": "9132a91c8109781c9f44e4b5f0f2bbb0959cf76a50753f58c954ec574351b169" }, "downloads": -1, "filename": "convertbng-0.1.25.tar.gz", "has_sig": true, "md5_digest": "ddd6f307c9ca0602be1e088c881bd418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362519, "upload_time": "2016-01-14T17:22:29", "url": "https://files.pythonhosted.org/packages/94/e0/41d1a74326ec73046f8dd0340c83dd1dc545a109e84fa0c37f49fe1d4760/convertbng-0.1.25.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "6db464c1a5e35f036d95f4c928fae1ba", "sha256": "27f6c3fbbc3de1d436467a4b8963fe3bf01452d75b5e9269e9f1955e01522242" }, "downloads": -1, "filename": "convertbng-0.1.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6db464c1a5e35f036d95f4c928fae1ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730958, "upload_time": "2015-06-21T21:48:26", "url": "https://files.pythonhosted.org/packages/fe/30/c3174fee521dac3c32cd695b4042d5101944873864c769a8b9cea0ed97e5/convertbng-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24bdc7d03a1df553b92109d02d87dc6e", "sha256": "f84a8dad7c8d270e3aa547bc4badd55ea9105b57587007e3499a67531e5e0759" }, "downloads": -1, "filename": "convertbng-0.1.3.tar.gz", "has_sig": true, "md5_digest": "24bdc7d03a1df553b92109d02d87dc6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726925, "upload_time": "2015-06-21T21:48:42", "url": "https://files.pythonhosted.org/packages/95/b8/d01f0286d788a088bb4d6dd22cc9bf079917b26933361c826a4bba30e25d/convertbng-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "1f1c06cde9b59d890acd8fae5906324b", "sha256": "099b1e0cadf3927b2c45c2aaf9ca42499289df41f816deb9744dbfc755aec5b1" }, "downloads": -1, "filename": "convertbng-0.1.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "1f1c06cde9b59d890acd8fae5906324b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730958, "upload_time": "2015-06-21T21:55:07", "url": "https://files.pythonhosted.org/packages/15/e1/21f1bd6a13ae872f8616f0a053315af47326c70f064af6d8ae994c62bf03/convertbng-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "628910124e62b48ae251cb0cf0b69404", "sha256": "1b064c6d484c0394340c31718033786e91f749f3f0536edfad0aad7f2288e9f2" }, "downloads": -1, "filename": "convertbng-0.1.4.tar.gz", "has_sig": true, "md5_digest": "628910124e62b48ae251cb0cf0b69404", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726922, "upload_time": "2015-06-21T21:55:25", "url": "https://files.pythonhosted.org/packages/c5/88/32d16c74427deee46377d361ee7e6fd87da25ef252fdb9da9b86da638a25/convertbng-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "be50d9e3b91c704957f3b848a6bd6eb0", "sha256": "dce9bcef90a820abba5023cd9614fd7ccc5d85f078d31761eddf701eaee4dafd" }, "downloads": -1, "filename": "convertbng-0.1.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "be50d9e3b91c704957f3b848a6bd6eb0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 730964, "upload_time": "2015-06-21T22:11:22", "url": "https://files.pythonhosted.org/packages/0c/c7/dd1edd9f505b054a2b2ca86d0522d8aea62e71886599c6f4c0ea2068980f/convertbng-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "493c91c3ea304087756251abd906ecf7", "sha256": "ece1095d23d8fc605a75c4c9d1b3afdf7c398c783bf65eb5e93ef91a2448ca27" }, "downloads": -1, "filename": "convertbng-0.1.5.tar.gz", "has_sig": true, "md5_digest": "493c91c3ea304087756251abd906ecf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 726916, "upload_time": "2015-06-21T22:11:40", "url": "https://files.pythonhosted.org/packages/53/f3/1bdb82d5b6d457a66ac04ad4cc07281cb1ff23c28d299a75fed0834d035b/convertbng-0.1.5.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "271ae828989a4f7b384178cc0c2a4c2c", "sha256": "dad401b5fe0bbea0fdd61de0511eb9575ae1aac100558a0438c48e795b82af74" }, "downloads": -1, "filename": "convertbng-0.1.7-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "271ae828989a4f7b384178cc0c2a4c2c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 731085, "upload_time": "2015-06-22T00:15:07", "url": "https://files.pythonhosted.org/packages/53/bf/06d23605b7dd30084dbc795332d59587a8f02441450464ea6a344d64b941/convertbng-0.1.7-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "e52cbfcf5a8fe0a9559978222d5bd73f", "sha256": "8b6da3040224fd4ed7051bc3d7df0e7f6a494f2c1ee8df8b3667e8bd7fdcdfbe" }, "downloads": -1, "filename": "convertbng-0.1.7.tar.gz", "has_sig": true, "md5_digest": "e52cbfcf5a8fe0a9559978222d5bd73f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 728049, "upload_time": "2015-06-22T00:15:25", "url": "https://files.pythonhosted.org/packages/db/11/46e38b14e246d103bc8c601bb3e6dda18456f9fef4f7e9fdaeef3bfe371e/convertbng-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "d5ae4ff748fd688382d4c02de10ddf32", "sha256": "bf18845c87e7298ca5fec90bfab668246b2834b02930df6958145e7aedcd19b6" }, "downloads": -1, "filename": "convertbng-0.1.8-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "d5ae4ff748fd688382d4c02de10ddf32", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 733124, "upload_time": "2015-06-22T19:12:29", "url": "https://files.pythonhosted.org/packages/28/b4/21c259b6669ac1254e7824de352a5de5de795f9c36b05be1c69a44d38cea/convertbng-0.1.8-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "88f2e3679af5a07432bb5c7f893f61e5", "sha256": "c05cbc5f5d681818e495f243a0e1d2c0f0b8dd8a82bc65fb5e4be574f0f3a3d5" }, "downloads": -1, "filename": "convertbng-0.1.8.tar.gz", "has_sig": true, "md5_digest": "88f2e3679af5a07432bb5c7f893f61e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729627, "upload_time": "2015-06-22T19:12:44", "url": "https://files.pythonhosted.org/packages/37/32/c11aaf8f18c736ffe8b13d63066e63651ad98237ad9dd48b8e2360944d01/convertbng-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "b2166a0e97a245a92860eb4a7a6c8ffe", "sha256": "e796ace321c3106ef767564830a2dc516b04978db5999b2ea0a86b466ab90b7d" }, "downloads": -1, "filename": "convertbng-0.1.9-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "b2166a0e97a245a92860eb4a7a6c8ffe", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 733112, "upload_time": "2015-06-23T00:18:32", "url": "https://files.pythonhosted.org/packages/49/c4/2eda0f0571c2cd98eb96e180e112ee4e8c568771c733372fda75c38bf1cb/convertbng-0.1.9-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c2fe612bda26350ac0e23994a344c6f6", "sha256": "d141090f962d872db6e87450dc593c4bd0d3ea2b2644af8bdb0b5b74c3d8c358" }, "downloads": -1, "filename": "convertbng-0.1.9.tar.gz", "has_sig": true, "md5_digest": "c2fe612bda26350ac0e23994a344c6f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 729615, "upload_time": "2015-06-23T00:18:51", "url": "https://files.pythonhosted.org/packages/f1/f3/921f06a90e9aac8445965438754662ce8234208f1e4d773635d25ec5e45e/convertbng-0.1.9.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "1cb9dd089c6a8a5c83cb1a9cdf016d7a", "sha256": "c0770cb171d7075898bc6d41d70efc2955ce448c03cb90a79532586e7ff7eac5" }, "downloads": -1, "filename": "convertbng-0.2.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "1cb9dd089c6a8a5c83cb1a9cdf016d7a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1368632, "upload_time": "2016-01-31T19:52:34", "url": "https://files.pythonhosted.org/packages/a4/a0/95a9adb3e0276f42dbd746afee048f556a2c17c61c0fa081c418b429ecf1/convertbng-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f737442ddd2fd7aa33055d7ff91eeef", "sha256": "0619c293f13fb83f8d2226a5acecb3636ced565db02bb8baee455cc174bb7e3b" }, "downloads": -1, "filename": "convertbng-0.2.3.tar.gz", "has_sig": true, "md5_digest": "7f737442ddd2fd7aa33055d7ff91eeef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1357106, "upload_time": "2016-01-31T19:52:50", "url": "https://files.pythonhosted.org/packages/84/92/e225f8397a1530ede2dc4714335aa7e132e5e020ae2bc043828f1e3b1600/convertbng-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "b1358d3f552f64fc67851b22efb366b1", "sha256": "768f8916133fdc63d61c71a9378e0310b35472aa72fef186a30114f11b9f3e1e" }, "downloads": -1, "filename": "convertbng-0.2.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b1358d3f552f64fc67851b22efb366b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1369015, "upload_time": "2016-02-02T10:40:29", "url": "https://files.pythonhosted.org/packages/37/7a/abc678a40d02783e8fe4afaee1ed9ad80080ddbf4ff2f5b31f1a7a437663/convertbng-0.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f62882cde690fef4cc81e17457f54ee2", "sha256": "f66681697badaa09a95a68c663bdadcc6712afa46ba8b009bbeadc7669887e9c" }, "downloads": -1, "filename": "convertbng-0.2.4.tar.gz", "has_sig": true, "md5_digest": "f62882cde690fef4cc81e17457f54ee2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1358647, "upload_time": "2016-02-02T10:40:47", "url": "https://files.pythonhosted.org/packages/ba/b8/1e86c3155b45614013bfc07184e6b7112e283c8734f741519b15ae4821fe/convertbng-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "a858c26515753e2eef4204ea0b547d7d", "sha256": "582b158655e140879a75b795a85bad562b9a015574d05d914c57e58ea5664fb7" }, "downloads": -1, "filename": "convertbng-0.2.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a858c26515753e2eef4204ea0b547d7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 1369301, "upload_time": "2016-02-02T16:59:17", "url": "https://files.pythonhosted.org/packages/a0/ff/243b172072a53b8951e7bdc89fecd9ca17c7dd4d3d8528997ac3096b583c/convertbng-0.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abe71cc7dcd42c1b31992a73d3d6195a", "sha256": "60352b89a0303117e4833e01ebade52a898445b9b0b08a63cb576029b6d24771" }, "downloads": -1, "filename": "convertbng-0.2.5.tar.gz", "has_sig": true, "md5_digest": "abe71cc7dcd42c1b31992a73d3d6195a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1358827, "upload_time": "2016-02-02T16:59:45", "url": "https://files.pythonhosted.org/packages/e9/55/672f0d677a90d3ba0b0dd6dad2466ff99004316810fc905b9f8295b32978/convertbng-0.2.5.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "4c6a7424788f78d376f21b2c37033da4", "sha256": "00170543601468f5bdc79cdb6a36a4d675201e8115934cb0f67e91ad8adb2e08" }, "downloads": -1, "filename": "convertbng-0.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4c6a7424788f78d376f21b2c37033da4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15122103, "upload_time": "2016-02-11T16:14:08", "url": "https://files.pythonhosted.org/packages/08/4d/ae5a5efaf856cb0b710d2d0f0c7c2f69793a00c4a21166632a4e88b3c640/convertbng-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70fa875af0e1476af835d2c6de7e3ad5", "sha256": "9bb7270db750a5240cbeda05a42a5f643419d887901d70fc79971a63763da505" }, "downloads": -1, "filename": "convertbng-0.3.0.tar.gz", "has_sig": true, "md5_digest": "70fa875af0e1476af835d2c6de7e3ad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15102050, "upload_time": "2016-02-11T16:14:45", "url": "https://files.pythonhosted.org/packages/95/f5/50275b4605823c7219328b40107fc288f427efc5ce853d5566dfc3e92c4a/convertbng-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "04583dfed375a9d5d060f199d52bfeb3", "sha256": "8e17005d91b3c1111e0c0010683b69b48594bb0610f578690886306e9665eb8b" }, "downloads": -1, "filename": "convertbng-0.3.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "04583dfed375a9d5d060f199d52bfeb3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15127159, "upload_time": "2016-02-16T12:40:54", "url": "https://files.pythonhosted.org/packages/92/47/334907cc31d9a48e4ced6a1b0716b00abce89d64e114c8941c54d0bd5035/convertbng-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e39236320ef64813f5d14bc0fae5d7bd", "sha256": "60862af4417bf1f8d7a4193bc6fdf8d1c2d98c6e49957cd38be885e566c6cdd0" }, "downloads": -1, "filename": "convertbng-0.3.1.tar.gz", "has_sig": true, "md5_digest": "e39236320ef64813f5d14bc0fae5d7bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15105268, "upload_time": "2016-02-16T12:41:19", "url": "https://files.pythonhosted.org/packages/bc/bd/ace899c86b06b42ac1e894e8a8b0fbab7a3a12f07d0bea3f36d0590445a9/convertbng-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ca8aa17dce55e2c2df56c172d4ef3cfb", "sha256": "f84659f124659830b8cae72df9090cafbfee71a674e407058028e785feb2ae68" }, "downloads": -1, "filename": "convertbng-0.3.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ca8aa17dce55e2c2df56c172d4ef3cfb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15123582, "upload_time": "2016-02-17T15:20:52", "url": "https://files.pythonhosted.org/packages/ea/97/c6c8e1a4569be50c864b472d21d67af99441111bd8c5b0cc384401ee5cd1/convertbng-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "923df8f78d645079e11f651b0e11296c", "sha256": "0cff3493d1dff583d26c0f21f08d6f48c72d41f0c253fa04979b52a102b0dcae" }, "downloads": -1, "filename": "convertbng-0.3.2.tar.gz", "has_sig": true, "md5_digest": "923df8f78d645079e11f651b0e11296c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15099685, "upload_time": "2016-02-17T15:21:24", "url": "https://files.pythonhosted.org/packages/58/3a/dab998fb685da384170044d797e8c07cd2ecf10dfe8f175a5753c7024536/convertbng-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "8d7368db4c1bf8ea1b476f849b7d28e2", "sha256": "51e29c1de56cd5ee7ed3e050c0be26ba7a0ff60690794de7a1ba78f38d300c62" }, "downloads": -1, "filename": "convertbng-0.3.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "8d7368db4c1bf8ea1b476f849b7d28e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15168102, "upload_time": "2016-02-19T19:05:50", "url": "https://files.pythonhosted.org/packages/5f/e8/0ce09641b049c6ae77b38cbc9bdf45a23712bbc89674c1e1cdb55363401f/convertbng-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "481f438d29607156c171749698f7a6d9", "sha256": "8d65751e02aa5a90b7fb48bd8bfb73e623c39e2ab4d3671aa79f68cc730fb8bb" }, "downloads": -1, "filename": "convertbng-0.3.3.tar.gz", "has_sig": true, "md5_digest": "481f438d29607156c171749698f7a6d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15152744, "upload_time": "2016-02-19T19:06:19", "url": "https://files.pythonhosted.org/packages/21/fd/fca982c943514ab152378543ab6090092d6ec7fc9589ce3902493fbafdb0/convertbng-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "c8cfaaddf84b72e17d15b1f2351b2dda", "sha256": "976c36e8bf4a61804d26f5b212b688a42c34334c8d544aad65d193dccafb0148" }, "downloads": -1, "filename": "convertbng-0.3.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c8cfaaddf84b72e17d15b1f2351b2dda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15179711, "upload_time": "2016-02-22T16:55:13", "url": "https://files.pythonhosted.org/packages/3d/13/538bac12cb6df02b557701cb2c86dbf88cf4c73d871bc8f8bc0bbd8e443f/convertbng-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67d9245aabdec105d222f909d3ebc70a", "sha256": "6c2e638945050d50aeee70249391894f6edd12ca43203b83f56645cf782da1c4" }, "downloads": -1, "filename": "convertbng-0.3.4.tar.gz", "has_sig": true, "md5_digest": "67d9245aabdec105d222f909d3ebc70a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15166805, "upload_time": "2016-02-22T16:55:32", "url": "https://files.pythonhosted.org/packages/8c/cc/2f82d1492be31af6337ca1a7b02171389a87d9bb67b217623ce4d8867fbe/convertbng-0.3.4.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "c40f502b66a9a03ed41346146a336fea", "sha256": "859d97ff6d576b0391944b2d97ca78bba5202d12b148185eb081616cbfa1d51c" }, "downloads": -1, "filename": "convertbng-0.4.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c40f502b66a9a03ed41346146a336fea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15228350, "upload_time": "2016-02-23T18:26:32", "url": "https://files.pythonhosted.org/packages/a7/4b/b7089abec5593ffe5b90814ed38d5a1a1c1d14eb8291160986c4a5837019/convertbng-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2156f7f531b9adf046c503a1c4f62db9", "sha256": "ab7eecfc3d0656893d4cfe3d6e2b119f33ff7165de101ef59c6b65586fd77163" }, "downloads": -1, "filename": "convertbng-0.4.0.tar.gz", "has_sig": true, "md5_digest": "2156f7f531b9adf046c503a1c4f62db9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15213207, "upload_time": "2016-02-23T18:27:00", "url": "https://files.pythonhosted.org/packages/f6/e5/e123ab3e1631161840c461c1f6308dfb5d8b05395682354c1133e57bc420/convertbng-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "b6535b964e975a6d8cc4f7596a524b46", "sha256": "f2f94f1f4f33cd46f4415d0d54de173d416ecd5e6179f4a4e5e76ecc2f8a5530" }, "downloads": -1, "filename": "convertbng-0.4.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b6535b964e975a6d8cc4f7596a524b46", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10161107, "upload_time": "2016-03-09T16:54:01", "url": "https://files.pythonhosted.org/packages/73/fd/a942b6e525b3b8daff9a369851f0988403c27ca61205d83908aeae7df8c5/convertbng-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b5c2d31d74ab0c8c17d1a3be5dfd0d8", "sha256": "1ede56ca7c90e6f6bc8fa8c5c1692638030cdc8cb1e5ed63db73285c4f595f10" }, "downloads": -1, "filename": "convertbng-0.4.1.tar.gz", "has_sig": true, "md5_digest": "4b5c2d31d74ab0c8c17d1a3be5dfd0d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10178412, "upload_time": "2016-03-09T16:54:28", "url": "https://files.pythonhosted.org/packages/a0/a8/0be499ade50b4f3dabe21f7c2b9bbddb2cab6053118ef99f8360a9eaed93/convertbng-0.4.1.tar.gz" } ], "0.4.10": [ { "comment_text": "", "digests": { "md5": "7a2668ae223a2ca90cf7a2f3ceb5e92f", "sha256": "a1cff5ab8f189f4018c9d52e80592ca9120507ac4a8cac0dca1e9121762bcc26" }, "downloads": -1, "filename": "convertbng-0.4.10-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "7a2668ae223a2ca90cf7a2f3ceb5e92f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11498100, "upload_time": "2016-06-01T09:21:34", "url": "https://files.pythonhosted.org/packages/5c/c6/4f1849228cc2bd71f794585dc50c6b259fc099c824d824aabd2fad26fb24/convertbng-0.4.10-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "c95ea060528c0660179e1bf01da93c9f", "sha256": "61878f05fc96aad4efdcb480ebd35eb9ed316a40d89826927c1962b95af8aa9f" }, "downloads": -1, "filename": "convertbng-0.4.10.tar.gz", "has_sig": true, "md5_digest": "c95ea060528c0660179e1bf01da93c9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6442027, "upload_time": "2016-06-01T09:21:52", "url": "https://files.pythonhosted.org/packages/2d/0b/7a156ecd5229189e6878ed91ce1bff73ec538579d2fe9fd1d4fb6c1f1e67/convertbng-0.4.10.tar.gz" } ], "0.4.11": [ { "comment_text": "", "digests": { "md5": "d58ec71fa67199b193ed557efc300cda", "sha256": "4c9b7e9888cd35a56e3099a0194004faf0013de5a0fd9ee821ac9f9947820e80" }, "downloads": -1, "filename": "convertbng-0.4.11-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "d58ec71fa67199b193ed557efc300cda", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11500672, "upload_time": "2016-06-01T10:06:32", "url": "https://files.pythonhosted.org/packages/97/50/798ae80809f36fb84a9d185aa08dcbb71a7bb54385a2dc41150b307bb38a/convertbng-0.4.11-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "5cac0749acd64dfcf557374f090fcc1e", "sha256": "a9a24497b2c8a8a0b04ecbbd22ccbb7243b02cdb3990a0c98e65a3a16c1f2d65" }, "downloads": -1, "filename": "convertbng-0.4.11.tar.gz", "has_sig": true, "md5_digest": "5cac0749acd64dfcf557374f090fcc1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6443556, "upload_time": "2016-06-01T10:06:50", "url": "https://files.pythonhosted.org/packages/67/37/fa6929031062d9ad576823cfead6d04a33807bf973db2da0413f0c2ed3b3/convertbng-0.4.11.tar.gz" } ], "0.4.12": [ { "comment_text": "", "digests": { "md5": "fc0880e1837dde73fed989cad7975a77", "sha256": "9c6138a4a90cb077a0a493ea336c763fa91570e19d73d533f3ac3e2957dbf239" }, "downloads": -1, "filename": "convertbng-0.4.12-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "fc0880e1837dde73fed989cad7975a77", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11500667, "upload_time": "2016-06-01T10:18:40", "url": "https://files.pythonhosted.org/packages/8f/7a/4f41d27356a7da660f92b2f38577ea5cc3d3c83e888a0c2dbc864a052067/convertbng-0.4.12-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "d6bd1a87cabc7e1a5c302a261e505989", "sha256": "c51b90811182baa2160b2e775ee48830d6c4ed802f8fd2bf76671d7047ea565c" }, "downloads": -1, "filename": "convertbng-0.4.12.tar.gz", "has_sig": true, "md5_digest": "d6bd1a87cabc7e1a5c302a261e505989", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6309946, "upload_time": "2016-06-01T10:19:05", "url": "https://files.pythonhosted.org/packages/6b/10/90032218875b614f04391d88ff0532a9c9fb52c8acc6f210ceba4fb4e9b5/convertbng-0.4.12.tar.gz" } ], "0.4.13": [ { "comment_text": "", "digests": { "md5": "8178b57c778d8da3dd14f9b0ef7e4f46", "sha256": "c95bf82902f8239d3addb83317890bd5ca8004019fca86f191a1790c724b1531" }, "downloads": -1, "filename": "convertbng-0.4.13-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "8178b57c778d8da3dd14f9b0ef7e4f46", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11500462, "upload_time": "2016-06-01T16:08:36", "url": "https://files.pythonhosted.org/packages/d9/42/fc17e6bd7e420265dc2a84692750f84834b65a48ed8234f48b3eeb08ad52/convertbng-0.4.13-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "ead764d43c149dcf5705b4d6249d8367", "sha256": "361d2e5f3e6e064162d7380bb4daf3e95b9c22b5f26b2cde3069420e7da29eea" }, "downloads": -1, "filename": "convertbng-0.4.13.tar.gz", "has_sig": true, "md5_digest": "ead764d43c149dcf5705b4d6249d8367", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11361159, "upload_time": "2016-06-01T16:08:56", "url": "https://files.pythonhosted.org/packages/22/fe/8ffcb63e19213251558f424e78fcf02c1e31fea12f350810caa4d110b03d/convertbng-0.4.13.tar.gz" } ], "0.4.14": [ { "comment_text": "", "digests": { "md5": "88a4d2ca614879b701934360bb04170e", "sha256": "81023dffcc45292b70630ea23db1f98d2567f33f35c651e32bcbdad91b223d02" }, "downloads": -1, "filename": "convertbng-0.4.14-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "88a4d2ca614879b701934360bb04170e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11500456, "upload_time": "2016-06-02T11:01:24", "url": "https://files.pythonhosted.org/packages/4a/ca/41fc7cde78efe9e7be68c73ee4514cbada51a46408d5281baec9d3020f85/convertbng-0.4.14-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "2c8a329620163b1d85d34410ca175114", "sha256": "1983900c9f1f8a28a7d2101b549a9405674b74be780fd97b00917ebc24b24097" }, "downloads": -1, "filename": "convertbng-0.4.14.tar.gz", "has_sig": true, "md5_digest": "2c8a329620163b1d85d34410ca175114", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11361225, "upload_time": "2016-06-02T11:01:40", "url": "https://files.pythonhosted.org/packages/cd/2d/bb9106209ce785e8925ee813edda316faa52e2ff856fa76109f10ba63232/convertbng-0.4.14.tar.gz" } ], "0.4.18": [ { "comment_text": "", "digests": { "md5": "78665416ffe6162fff12b42499876ab0", "sha256": "513c06bdb08c32589f22937457997400e631f022e24724d1ba103ab8e379c3b4" }, "downloads": -1, "filename": "convertbng-0.4.18-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "78665416ffe6162fff12b42499876ab0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5227153, "upload_time": "2016-06-13T15:16:31", "url": "https://files.pythonhosted.org/packages/bd/8f/d6904a10bf9ed69d5b52f86a53cd2c94bdd4bd395e18e72460819a1f52a7/convertbng-0.4.18-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e9522fbd7e78a78d61fb9f566e4798cb", "sha256": "8f9144356328c584982a96a99cd53917a26ede70eff1b61fa70059c3d95d1839" }, "downloads": -1, "filename": "convertbng-0.4.18-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e9522fbd7e78a78d61fb9f566e4798cb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6566502, "upload_time": "2016-06-13T15:17:13", "url": "https://files.pythonhosted.org/packages/37/90/f4613ef18bc4e066cbb8c6dbca791f710f528faebf39c06c98910265a2b0/convertbng-0.4.18-cp27-cp27mu-manylinux1_x86_64.whl" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "fe7b4d049749fed2477a8331f8cb64ee", "sha256": "e1ecf518b2ed041f864f958911cf35a14606d6ff7daf3090b9316ba6c6ffc3f5" }, "downloads": -1, "filename": "convertbng-0.4.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fe7b4d049749fed2477a8331f8cb64ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11258204, "upload_time": "2016-04-04T17:02:45", "url": "https://files.pythonhosted.org/packages/fb/67/23956db5115547ebde2b6c78f8b0f37fb196e3c91f82403f6cc0494a779a/convertbng-0.4.2-py2.py3-none-any.whl" } ], "0.4.21": [], "0.4.22": [ { "comment_text": "", "digests": { "md5": "debd9cb695ddde8a7f44b829ad4f012c", "sha256": "b4166b00a81bcafa0b97b7c09b96384ad98e4104c0718af4ac9ddb779dc46e36" }, "downloads": -1, "filename": "convertbng-0.4.22-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "debd9cb695ddde8a7f44b829ad4f012c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5227197, "upload_time": "2016-06-15T13:16:20", "url": "https://files.pythonhosted.org/packages/47/e6/fc721b448aa52dac574defcb1bb3d0b80733e7aae2cb2a66b59b9e4324e9/convertbng-0.4.22-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "bd3ee9d624754fac9c4254e94fb1c4ad", "sha256": "99f32490739394f45a74d0e0aba50afed6d4e1e99dd350ae71a3ed0cdd04b71f" }, "downloads": -1, "filename": "convertbng-0.4.22-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "bd3ee9d624754fac9c4254e94fb1c4ad", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6566526, "upload_time": "2016-06-15T13:21:35", "url": "https://files.pythonhosted.org/packages/f3/9c/e478a36a8b46275c02d0fe7dddf92b6ab3fab478d9bcd36585172787b9be/convertbng-0.4.22-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "36a22c35e61e05af347e40b9c6fc5de6", "sha256": "1679bebc8174ebd9b6fb1bc0542115e336fd25818ab0e8b5e3541c827c159b65" }, "downloads": -1, "filename": "convertbng-0.4.22-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "36a22c35e61e05af347e40b9c6fc5de6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5721224, "upload_time": "2016-06-15T13:20:01", "url": "https://files.pythonhosted.org/packages/7e/cd/168479115b3aedcea1c76cc1805de688fca8c7a31d27fe26d5f509097d1b/convertbng-0.4.22-cp27-cp27m-win_amd64.whl" } ], "0.4.23": [ { "comment_text": "", "digests": { "md5": "4fe5c68ee84fba6c79ed3cfe607d26ef", "sha256": "f8a227abb62fa4d0e25f167bcf2cf57586b0861bee4ba396166a5f0513088ca6" }, "downloads": -1, "filename": "convertbng-0.4.23-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "4fe5c68ee84fba6c79ed3cfe607d26ef", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5227479, "upload_time": "2016-06-19T17:26:20", "url": "https://files.pythonhosted.org/packages/26/c0/9c7961dd513497d76533bba1e4fb6d140326ec2589963b9c8d596eb2d3bf/convertbng-0.4.23-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "15a5f85c7cf9fed8ace0cc33fcd4fa50", "sha256": "8e703e634cbaaddec7884080e3bdbb7078c40f7ecd72815bfa5c2de6d298c760" }, "downloads": -1, "filename": "convertbng-0.4.23-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "15a5f85c7cf9fed8ace0cc33fcd4fa50", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6568615, "upload_time": "2016-06-19T17:26:42", "url": "https://files.pythonhosted.org/packages/3f/e6/a4df47bffd94bc564e3b5163da5a7ae3efb105bf97b6719b6c8e30c64f03/convertbng-0.4.23-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "321bcaac96d6437a1c798a547f709752", "sha256": "6a0215dbc4389466e2ec197ff7017e1c470af383a4a21d8c0fa17d9c7b7088c7" }, "downloads": -1, "filename": "convertbng-0.4.23-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "321bcaac96d6437a1c798a547f709752", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5721679, "upload_time": "2016-06-19T17:26:31", "url": "https://files.pythonhosted.org/packages/99/07/60e909a7c040f96ad0f6306f168644d34ad0e123bdaa2046ae8f3412d83f/convertbng-0.4.23-cp27-cp27m-win_amd64.whl" } ], "0.4.24": [ { "comment_text": "", "digests": { "md5": "9a06a80664dd89f5b23d9ef00dd83bf6", "sha256": "f3639b818548caa2da3f497a4f850b5e7b37fb82f728df9048c883c9c7c7c226" }, "downloads": -1, "filename": "convertbng-0.4.24-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "9a06a80664dd89f5b23d9ef00dd83bf6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5227518, "upload_time": "2016-06-20T10:54:14", "url": "https://files.pythonhosted.org/packages/62/6a/53dace312716ef75f7ebd152a942f83b780f05d63173680c562c737cbade/convertbng-0.4.24-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "23e345d1dbaa85d914a5d5bc09893159", "sha256": "324072bc8e2b7156308f41ca4dbb1f292900ab4f2903f313993dcd2dd6896479" }, "downloads": -1, "filename": "convertbng-0.4.24-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "23e345d1dbaa85d914a5d5bc09893159", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6568652, "upload_time": "2016-06-20T10:54:37", "url": "https://files.pythonhosted.org/packages/cc/ed/cc0931fc1a36bbe611c99b1c3dd4f502d591c354487ee6fb329a5098ce39/convertbng-0.4.24-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "62612a902d50bb927b7496034a15c087", "sha256": "1efa5b9efeff869876d0bfa59ffa704e6952f24f26b1d6ffde0be96afe75bdc8" }, "downloads": -1, "filename": "convertbng-0.4.24-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "62612a902d50bb927b7496034a15c087", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5721715, "upload_time": "2016-06-20T10:54:27", "url": "https://files.pythonhosted.org/packages/2f/15/ccd9cd02250966e5432b8954e96d0a8fa4ed2ef9cbdda673f2f079c37be9/convertbng-0.4.24-cp27-cp27m-win_amd64.whl" } ], "0.4.25": [ { "comment_text": "", "digests": { "md5": "20e86524f78cff2c2fef981d180d933e", "sha256": "1e702387ab334b3a4020f1537ab07d1ad58ac20ec228936407223b12a150977d" }, "downloads": -1, "filename": "convertbng-0.4.25-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "20e86524f78cff2c2fef981d180d933e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5229751, "upload_time": "2016-06-20T19:04:02", "url": "https://files.pythonhosted.org/packages/a4/29/960405d2ebd522aeea130356cf3ab312d44d17594257298851b2faf97edd/convertbng-0.4.25-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a4704a048586e7aa5be9f5af17116b65", "sha256": "38b81bd9e98e963e0087a55b9f9d90267022797dca15890513c2e52469731f75" }, "downloads": -1, "filename": "convertbng-0.4.25-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "a4704a048586e7aa5be9f5af17116b65", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6570888, "upload_time": "2016-06-20T19:04:24", "url": "https://files.pythonhosted.org/packages/3c/fe/9976cedff84d1e19eaf27a4ef1c82c7a9ba2ad64f54d0e24d447add4992d/convertbng-0.4.25-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4721d0fc99f6afbf3f8e1f16aa7c6944", "sha256": "3ebe9e6e971d2860fa85633c4ea988061b6a7e230250603b5adcdf44d0e843e6" }, "downloads": -1, "filename": "convertbng-0.4.25-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "4721d0fc99f6afbf3f8e1f16aa7c6944", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5723951, "upload_time": "2016-06-20T19:04:13", "url": "https://files.pythonhosted.org/packages/50/dd/f16dbdc6d0274762d6bf65e46de6281ea2e5c6d9807cd0f71734f085865d/convertbng-0.4.25-cp27-cp27m-win_amd64.whl" } ], "0.4.26": [ { "comment_text": "", "digests": { "md5": "18616c76da4eac3d5fbace1fffb870fb", "sha256": "9055d69b62d08a52f40ef7c37ba8fc98c5f7e641821d70e07ca16a7fab636fc0" }, "downloads": -1, "filename": "convertbng-0.4.26-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "18616c76da4eac3d5fbace1fffb870fb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5229977, "upload_time": "2016-06-23T17:13:10", "url": "https://files.pythonhosted.org/packages/33/af/944981ac4a9d3e1bc71122682b9142a644f67602d09e620638a212012598/convertbng-0.4.26-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "40e56c6011e998f061701fab0e1f4243", "sha256": "e4432ede04c28d91be4f3e50178696f1e6e1e00071a20fb0d7c51cf949e2e84b" }, "downloads": -1, "filename": "convertbng-0.4.26-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "40e56c6011e998f061701fab0e1f4243", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571123, "upload_time": "2016-06-23T17:13:43", "url": "https://files.pythonhosted.org/packages/53/9c/7b33cef6204af08999e967256ac73497323237b5ea6c25d68bde04617c08/convertbng-0.4.26-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f068c4a61ac8041e98d8bd4bb7846b64", "sha256": "b8d9091945124c4e860b7c63f2e1e9ec9056f8767dccdc6e4d42d5a0e4ef1cbd" }, "downloads": -1, "filename": "convertbng-0.4.26-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "f068c4a61ac8041e98d8bd4bb7846b64", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398448, "upload_time": "2016-06-23T17:13:29", "url": "https://files.pythonhosted.org/packages/c9/42/d7fe6d1c77de8d8f81299dde8e7080ccd7360c69b1eba4dbf0616942e654/convertbng-0.4.26-cp27-cp27m-win_amd64.whl" } ], "0.4.27": [ { "comment_text": "", "digests": { "md5": "6e666974ac68164c50b69b44d802bd71", "sha256": "0080b9400130a664e27c7063802065f871602526ce726dbd1516cbf7ae1a6b81" }, "downloads": -1, "filename": "convertbng-0.4.27-cp27-cp27m-macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "6e666974ac68164c50b69b44d802bd71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5229972, "upload_time": "2016-06-23T22:42:31", "url": "https://files.pythonhosted.org/packages/26/92/c4797259b7a0d9eff60ee63d6a51ebd15521141c3c5291169491a0b6a273/convertbng-0.4.27-cp27-cp27m-macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ba2d003f8bfb94d56e01fb2dee69532e", "sha256": "a7464995fafd2ce90a179903223d7d4f7c6cacd5b3ccfa62e7683a6c4bcafae0" }, "downloads": -1, "filename": "convertbng-0.4.27-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ba2d003f8bfb94d56e01fb2dee69532e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571111, "upload_time": "2016-06-23T22:43:11", "url": "https://files.pythonhosted.org/packages/ee/da/52fee96485f56c642dbdc6580835db5544196a42de0dadc4c3d3172f7dfa/convertbng-0.4.27-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3f7816bfd99c3169afa7a18f2caef7bc", "sha256": "830790b7813001f813369b5b31c47006ddd1de916c971ebe194c2aabfffc2859" }, "downloads": -1, "filename": "convertbng-0.4.27-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "3f7816bfd99c3169afa7a18f2caef7bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7184211, "upload_time": "2016-06-23T22:42:47", "url": "https://files.pythonhosted.org/packages/62/ff/4031225f768ffba8aecd588162a4300ce00e0e01c38b3c7d9c7c86762e84/convertbng-0.4.27-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d96fa6e31d16a21d58429873d13d3dba", "sha256": "cdd0098b39ed92d3bf7cfa4d3f77a80fe5c6ae2eedc81116bfa919e7cb618dfe" }, "downloads": -1, "filename": "convertbng-0.4.27-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "d96fa6e31d16a21d58429873d13d3dba", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398438, "upload_time": "2016-06-23T22:42:59", "url": "https://files.pythonhosted.org/packages/29/b0/b013d60579fc56b131151436184ae8087f333a6408135e2dc2b9c9378611/convertbng-0.4.27-cp27-cp27m-win_amd64.whl" } ], "0.4.28": [ { "comment_text": "", "digests": { "md5": "3fa7927cbf37e23e4b3b955f71eb5d9a", "sha256": "f8cab4a3e729a81266492424a24a8eda978ddfc4dcafd91b32e472d67ecdaf43" }, "downloads": -1, "filename": "convertbng-0.4.28-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "3fa7927cbf37e23e4b3b955f71eb5d9a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5307271, "upload_time": "2016-06-24T15:36:48", "url": "https://files.pythonhosted.org/packages/84/3d/fa1efb69ac952e0cbf0788e7003d8ee18bea29d13b97efeb743741f8734d/convertbng-0.4.28-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b3f4898b77b95542183027f089e80467", "sha256": "e3c2766d70a1c2aa35b9229004f089075e4053996d58c8d95ab531fe471632c2" }, "downloads": -1, "filename": "convertbng-0.4.28-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b3f4898b77b95542183027f089e80467", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571160, "upload_time": "2016-06-24T15:37:55", "url": "https://files.pythonhosted.org/packages/f5/1c/a618c54a7035776fffb74eac8b3cb2235e8090dc7703dac1b266fc7d93a8/convertbng-0.4.28-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ab2004dae07e00194a2a027d9fa095f1", "sha256": "004cdae97e22807690a00ae330796261de96a87cd531bdd233fb476fb4900464" }, "downloads": -1, "filename": "convertbng-0.4.28-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "ab2004dae07e00194a2a027d9fa095f1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7184256, "upload_time": "2016-06-24T15:37:08", "url": "https://files.pythonhosted.org/packages/fe/dd/775e1cff78dad9f60737c432849c88021d79b70d1405fe369e48c2553af9/convertbng-0.4.28-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "0c974053b37466e81c253b4a444d8bf8", "sha256": "09b5cc221d7b14a36157b8de83bc8f34c868eb3c68ecd3c04a7e993aba46d7b2" }, "downloads": -1, "filename": "convertbng-0.4.28-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "0c974053b37466e81c253b4a444d8bf8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398460, "upload_time": "2016-06-24T15:37:34", "url": "https://files.pythonhosted.org/packages/94/8b/9e2adadbec60a6170b9ec541578a99684e8a38104aea0920a7a7e31cb258/convertbng-0.4.28-cp27-cp27m-win_amd64.whl" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "2e8e0fb36f1b51bdd827fcfd50f7179d", "sha256": "eab1f565b946ab99d35a8d08074480f6e6b9a4fad25058b0fb82b2cea9ee9d11" }, "downloads": -1, "filename": "convertbng-0.4.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2e8e0fb36f1b51bdd827fcfd50f7179d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11258208, "upload_time": "2016-04-04T17:06:19", "url": "https://files.pythonhosted.org/packages/3b/80/b64c8f5ef8c6d1a3fec50a5780b176b1bb9c510bf06a6ce19bf29711e430/convertbng-0.4.3-py2.py3-none-any.whl" } ], "0.4.30": [ { "comment_text": "", "digests": { "md5": "c9f336467140dc9bb30f118325513d2c", "sha256": "639cde17a37168f7cd87c6a2a0b8e92036308299fafb8fdafbfbf1da55dbf3e0" }, "downloads": -1, "filename": "convertbng-0.4.30-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c9f336467140dc9bb30f118325513d2c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571267, "upload_time": "2016-06-25T11:38:12", "url": "https://files.pythonhosted.org/packages/54/5f/be8531b93b726964377989fdf4cc571fa307f33f360cb22bf83b4e601242/convertbng-0.4.30-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "faa613c40a969be0c9c2caa20a25d78d", "sha256": "27e057a8ba14355517f730aaa8ffbf9427a258c710a1a02bf99d24bbd7d03844" }, "downloads": -1, "filename": "convertbng-0.4.30-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "faa613c40a969be0c9c2caa20a25d78d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7184357, "upload_time": "2016-06-25T11:37:48", "url": "https://files.pythonhosted.org/packages/11/1d/17238a4aa94648eb7fb79f01830f007c44170376fe461febb98d840da4f5/convertbng-0.4.30-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e86b93f9122d12bf88f34d52f3089a0e", "sha256": "016dc6c71237af19d8c41f4698a95e1afc12e02eebc74d737e31972bb2c4e2ea" }, "downloads": -1, "filename": "convertbng-0.4.30-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "e86b93f9122d12bf88f34d52f3089a0e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398567, "upload_time": "2016-06-25T11:38:00", "url": "https://files.pythonhosted.org/packages/03/e3/794e0877cbf55a64fa22d61cc7dbe06b1f069926657bab9333caaca63203/convertbng-0.4.30-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "475674a075b630af6c4d2dc61c66623f", "sha256": "6415bee858fc2c3bdcdc9c6facb3212f59168e1dfb0a78b62b923b5d1d5c3790" }, "downloads": -1, "filename": "convertbng-0.4.30-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "475674a075b630af6c4d2dc61c66623f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5309451, "upload_time": "2016-06-25T11:38:22", "url": "https://files.pythonhosted.org/packages/91/30/29fd0957102da1b6f1c623668f0efdef09a1c0ddc53cec35c827ba3fd0ab/convertbng-0.4.30-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d6c51caf0f738ddeb6a60d90acda4aa6", "sha256": "37c384ed84138c3a6577d5c6355dfacfcda0e0d6fefe7d24d89ab62a71751d7d" }, "downloads": -1, "filename": "convertbng-0.4.30-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d6c51caf0f738ddeb6a60d90acda4aa6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6586533, "upload_time": "2016-06-25T11:38:33", "url": "https://files.pythonhosted.org/packages/73/86/79a75aef36b7dc7e56b61cccd28c6590e02f5d034c1de17d538390220cf4/convertbng-0.4.30-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.4.33": [ { "comment_text": "", "digests": { "md5": "b0e83707bccb6cd09d9b277b70f6732b", "sha256": "f13d9261e1eabb2f406b19210c2d3c42a0aa712105f78676ff4939dd4a5f5e09" }, "downloads": -1, "filename": "convertbng-0.4.33-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "b0e83707bccb6cd09d9b277b70f6732b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5307375, "upload_time": "2016-06-25T13:10:16", "url": "https://files.pythonhosted.org/packages/01/41/b2cd2983246bc4f276b904c2ee3b5c6101c33df52cc90b54c04fdb5e4dd5/convertbng-0.4.33-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "39ad6bd4c99ac519552b146b828ca39e", "sha256": "48f2cbbe4be208289a2a701270252d933993495bedbcd35925cff98375358cd3" }, "downloads": -1, "filename": "convertbng-0.4.33-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "39ad6bd4c99ac519552b146b828ca39e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571262, "upload_time": "2016-06-25T13:10:54", "url": "https://files.pythonhosted.org/packages/a2/f1/6de856363d43bbda426ebf7559ef468d3e37687a3f52fbbd72f1ab287046/convertbng-0.4.33-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c3f8ab2da4f8e6e30e0334eac739ed27", "sha256": "95369055e3bb2dedd08242f002497d66461843436bc5e18dfa5a0b80fcf76360" }, "downloads": -1, "filename": "convertbng-0.4.33-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "c3f8ab2da4f8e6e30e0334eac739ed27", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7184358, "upload_time": "2016-06-25T13:10:30", "url": "https://files.pythonhosted.org/packages/4b/3d/250c0d195a7cef8ce98d1afd1831c285dbc5be76f449fec028a513b58186/convertbng-0.4.33-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "95db15988dd8bb61341af7d18077721b", "sha256": "ac14f656a91a76809f8b79648866dddca275e589c0720a3bab91f77f45323fe6" }, "downloads": -1, "filename": "convertbng-0.4.33-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "95db15988dd8bb61341af7d18077721b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398567, "upload_time": "2016-06-25T13:10:42", "url": "https://files.pythonhosted.org/packages/90/37/0eb88a1d8d6182f68e696d24195a53e065841ee659184d04dada385a6ed6/convertbng-0.4.33-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "85c5e75816615a85176194fe7a18bcdf", "sha256": "922407f006cd1798bd4d743a8d40ad9347762cfe0bfd2d017863fba54e218a26" }, "downloads": -1, "filename": "convertbng-0.4.33-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "85c5e75816615a85176194fe7a18bcdf", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5309447, "upload_time": "2016-06-25T13:11:04", "url": "https://files.pythonhosted.org/packages/8f/e9/b7c36117c43ec7c7b75d9538611f7030e8344e18b1199136bf3d224ae8fa/convertbng-0.4.33-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e7c38c0a4cd17747f04219d7865ded5d", "sha256": "e010c831c0045a7d820cf70801c51b6904c1eccfab8f5082587bc23255a0a84e" }, "downloads": -1, "filename": "convertbng-0.4.33-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e7c38c0a4cd17747f04219d7865ded5d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6586547, "upload_time": "2016-06-25T13:11:15", "url": "https://files.pythonhosted.org/packages/aa/26/cb35d8edf16889a6062a459d0c040f513d6614570a69fd6c258f75071706/convertbng-0.4.33-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.4.35": [ { "comment_text": "", "digests": { "md5": "962d12f079d60a69576fcdbd61fe87d9", "sha256": "b19618c3c206fca7d835d89452f0ac079fd2cedbadda5c5a6960ca6c62330884" }, "downloads": -1, "filename": "convertbng-0.4.35-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "962d12f079d60a69576fcdbd61fe87d9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5307583, "upload_time": "2016-06-26T23:31:06", "url": "https://files.pythonhosted.org/packages/99/cb/3f35fdeb246e636ebacb67f96d8e59cc964b8c35251ff55f598f819ca5fd/convertbng-0.4.35-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0c5f36f007720048523200b5bfce0350", "sha256": "16a9959fccddd4b1685ac948fe6b29ded55fe87f0cf7cd4d3975a4af8eaa1987" }, "downloads": -1, "filename": "convertbng-0.4.35-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0c5f36f007720048523200b5bfce0350", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6571456, "upload_time": "2016-06-26T23:31:43", "url": "https://files.pythonhosted.org/packages/c3/3d/38ae3fcab34907195eabb9d40b9a7ff5d7e6b0e9f646e2e99b8999c20e93/convertbng-0.4.35-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "69047cadf5be6a7c672694e1ab0e8384", "sha256": "e3acd4822b6754973f2d959d7902fc8fe5c0bef63d42441b380ffab7aa7fba67" }, "downloads": -1, "filename": "convertbng-0.4.35-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "69047cadf5be6a7c672694e1ab0e8384", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7184541, "upload_time": "2016-06-26T23:31:17", "url": "https://files.pythonhosted.org/packages/7c/53/7a0fe2a197c1ed0f46292c13ed5e7eca8d9e48e16650da851258e7e34da6/convertbng-0.4.35-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "96a2810c383b1221601f767f928dbd47", "sha256": "b812d864e0deab439345b596a7f6e1c391b4ea7b1788abe2a29ee69e4cac7224" }, "downloads": -1, "filename": "convertbng-0.4.35-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "96a2810c383b1221601f767f928dbd47", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7398786, "upload_time": "2016-06-26T23:31:30", "url": "https://files.pythonhosted.org/packages/30/8b/7c4d47a48187ca2176b71896df019a62ed875f34892a7e95ec09c769b164/convertbng-0.4.35-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "564fedae02e8fd971310062fa6bf0468", "sha256": "a0ffcf78cc756aa9dd42d3b91be4fd5025f54beff378f62e91e3c4ed86f334e9" }, "downloads": -1, "filename": "convertbng-0.4.35-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "564fedae02e8fd971310062fa6bf0468", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 7399497, "upload_time": "2016-06-26T23:31:54", "url": "https://files.pythonhosted.org/packages/cc/fb/341b3b66376f9635eadbc4443820fbb464b56f59d3b86a75b4fdbe0adc30/convertbng-0.4.35-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "32399022e313d1843d5b5036582b7d36", "sha256": "fc12dda61f517c8e3f6025bb1d405d50df624d22527eff94901384e3dcd32b4c" }, "downloads": -1, "filename": "convertbng-0.4.35-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "32399022e313d1843d5b5036582b7d36", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5309660, "upload_time": "2016-06-26T23:32:11", "url": "https://files.pythonhosted.org/packages/80/ff/5e299a273f26c79b0bd382049e141a2ad701fc0943734a21d0843a301884/convertbng-0.4.35-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3a474a205a79b7e51bd51d73fc80af57", "sha256": "0d82e80a44b253ca45f1f59d332b6bd24b1178bfa2b8dbd1a558248c18c1f1a2" }, "downloads": -1, "filename": "convertbng-0.4.35-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "3a474a205a79b7e51bd51d73fc80af57", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6586740, "upload_time": "2016-06-26T23:32:23", "url": "https://files.pythonhosted.org/packages/86/94/d2dcf1119614e0b555a57e0cb30ae14832a987e8dc73bf57413a63de5075/convertbng-0.4.35-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.4.37": [ { "comment_text": "", "digests": { "md5": "2f2907c5a2d807259e94f00d7b18196d", "sha256": "a7e61d3180b40e8b769c875777d21ecb5471cb960c3122458bfe36b8e197eaa0" }, "downloads": -1, "filename": "convertbng-0.4.37-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "2f2907c5a2d807259e94f00d7b18196d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5312792, "upload_time": "2016-08-08T18:57:37", "url": "https://files.pythonhosted.org/packages/39/3d/a5a2e18d6f37e40694fe971564a803bad6e5e9b7e41b042b1d0cc3b11f10/convertbng-0.4.37-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d796251d20cf6ba62af774905f7a37a4", "sha256": "fcf9d2d7edc9b722d99ec37fcf978583fb5338279e8fca3fa4352971bad7a378" }, "downloads": -1, "filename": "convertbng-0.4.37-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d796251d20cf6ba62af774905f7a37a4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6575831, "upload_time": "2016-08-08T18:59:17", "url": "https://files.pythonhosted.org/packages/b3/aa/6922cb2d668d4488e033045d70c3e22f244afa92a8a8814229bbd3f0b6db/convertbng-0.4.37-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "734a71fcc75d9a7e3fe42ea17f291727", "sha256": "a46a6d0c6c03aa6f8926066a1e87b3b0d3637da178fd43488587218364f2eb0f" }, "downloads": -1, "filename": "convertbng-0.4.37-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "734a71fcc75d9a7e3fe42ea17f291727", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7196032, "upload_time": "2016-08-08T18:58:12", "url": "https://files.pythonhosted.org/packages/98/bb/bdbfa2c2bf4158369889ce0e4de43d07dc595079bd21ca89d19a52bc22f9/convertbng-0.4.37-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4d2213e716368bd38ff60f8221fbe1a0", "sha256": "de0c9885be853d4a71060068eadcc572d274823fce5856161a4a014acd57b1a1" }, "downloads": -1, "filename": "convertbng-0.4.37-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "4d2213e716368bd38ff60f8221fbe1a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7347942, "upload_time": "2016-08-08T18:58:46", "url": "https://files.pythonhosted.org/packages/40/8d/17e9f5d83df1e1e5f56f0a8c7ba4dc85ffe6bed3a2172b805e1ecd4f0af0/convertbng-0.4.37-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "caf5d771fbd7a30683c9c87d8bd9d4f3", "sha256": "4638a17f21fffb90cfbb7428e6fa4d57a1578b69f7c1d10d61676830388eab60" }, "downloads": -1, "filename": "convertbng-0.4.37-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "caf5d771fbd7a30683c9c87d8bd9d4f3", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 7348656, "upload_time": "2016-08-08T18:59:51", "url": "https://files.pythonhosted.org/packages/67/6c/7e9f498032f24b24476e8b164a549e29b4e56e2deb25be68f56d3627cd23/convertbng-0.4.37-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "34ab56816fc2e4110ebd7e1dd8f65c2e", "sha256": "82adf32094da257dbcd9334b782f5c7c8059d6b44a41649b9673bd99001c62cc" }, "downloads": -1, "filename": "convertbng-0.4.37-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "34ab56816fc2e4110ebd7e1dd8f65c2e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5314869, "upload_time": "2016-08-08T19:00:17", "url": "https://files.pythonhosted.org/packages/c6/a2/66a82440bebdb24cb015b0a40f27bad0d3ff5a2e1d9d8e7303bebfdeac95/convertbng-0.4.37-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "966cd5270d6a31c8171ed259d5c2ee90", "sha256": "71fc9fa339a6af73dbefeaca2f1c7c6afe6b4f759d43f69bc25443e57225a7fb" }, "downloads": -1, "filename": "convertbng-0.4.37-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "966cd5270d6a31c8171ed259d5c2ee90", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6591111, "upload_time": "2016-08-08T19:00:53", "url": "https://files.pythonhosted.org/packages/8b/82/d046e6a61fe476fcab1f43592b3451c674a73097a7fdda235f9f7f6369e4/convertbng-0.4.37-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.4.38": [ { "comment_text": "", "digests": { "md5": "3d87f2f51a97019a556f17b382806824", "sha256": "7d66d98d2773296843aaf3ac34ce3284643c7b5920c9499c463a5998f00d30f8" }, "downloads": -1, "filename": "convertbng-0.4.38-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "3d87f2f51a97019a556f17b382806824", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5319016, "upload_time": "2016-08-29T11:43:11", "url": "https://files.pythonhosted.org/packages/e7/52/dc3021e04da8faee89892e619a1c6ed52359f0ab018ab001bf794ac1896f/convertbng-0.4.38-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fef010fa5b5d2306593b98183c62e22c", "sha256": "45c51409060e4c8a235586a0a8d6b7f95c0db668acf87bdf663f3c6ef0023564" }, "downloads": -1, "filename": "convertbng-0.4.38-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "fef010fa5b5d2306593b98183c62e22c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 6594463, "upload_time": "2016-08-29T11:44:59", "url": "https://files.pythonhosted.org/packages/3d/05/cd689b54b910cf5b29d5a5eef50c2d95611f6482f3242c2538c4f836e4b0/convertbng-0.4.38-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d073a173fe1f7ad1f7a45155c0fe4b99", "sha256": "b69b1b5997683951586c0ba420db7676e02b28e55fc905deabb1fbf68140cbdf" }, "downloads": -1, "filename": "convertbng-0.4.38-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "d073a173fe1f7ad1f7a45155c0fe4b99", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7209195, "upload_time": "2016-08-29T11:43:53", "url": "https://files.pythonhosted.org/packages/f2/c8/3038db02833498398fe5fff0b913fc4084b67a59f6867444708222875f83/convertbng-0.4.38-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4a93af5f6ee1d3e64f119b8e63c31a11", "sha256": "dfd110f5aca4e44cbfea449c22b8fd5d437f63f76b3086cb2a8508a5b97e6ba1" }, "downloads": -1, "filename": "convertbng-0.4.38-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "4a93af5f6ee1d3e64f119b8e63c31a11", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7420938, "upload_time": "2016-08-29T11:44:29", "url": "https://files.pythonhosted.org/packages/12/9f/5448ea4b1d8242187f8c0f4b12b61dd65a60985853de0a3faf8fa1056a3b/convertbng-0.4.38-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "37ec78ee003b392b5d3ac0d240487ae9", "sha256": "e287914551e560add8d10f4e53928a0f90058b853fe925a5bf80bcb238342387" }, "downloads": -1, "filename": "convertbng-0.4.38-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "37ec78ee003b392b5d3ac0d240487ae9", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 7421649, "upload_time": "2016-08-29T11:45:32", "url": "https://files.pythonhosted.org/packages/b5/d0/50696161ea50db0705853d2e63d8da67c563ed35f7c7a3a25da7a7d3986a/convertbng-0.4.38-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f97a52054b4848d44f89e400a162e5eb", "sha256": "7f70300341ea4fe413cc3d6e79e093274b1adc38b040122fc077c948a39c7668" }, "downloads": -1, "filename": "convertbng-0.4.38-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "f97a52054b4848d44f89e400a162e5eb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5321093, "upload_time": "2016-08-29T11:45:58", "url": "https://files.pythonhosted.org/packages/a9/ec/2a87f1c4c082a100d31b7e44198d74506d52bfe994385082bae08c10c63d/convertbng-0.4.38-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "591771c7a7e8cd031d5292003a9ff8c9", "sha256": "3a6a288b338f65e960493528c3ee8068978617b5fdf54eccacd2719e1e4c234a" }, "downloads": -1, "filename": "convertbng-0.4.38-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "591771c7a7e8cd031d5292003a9ff8c9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 6609736, "upload_time": "2016-08-29T11:46:28", "url": "https://files.pythonhosted.org/packages/fc/9d/bd920131d22ea144db7668d4ab9ae86a9c04b43cc1b4e75f7e39f6354f2f/convertbng-0.4.38-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "5220f62ca4a7c1db5c112b0d223ef64b", "sha256": "47a4d99710b15f706a30cddd2b7561c24a35148fea44355f4db407e29fc1f07a" }, "downloads": -1, "filename": "convertbng-0.4.4-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "5220f62ca4a7c1db5c112b0d223ef64b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11278968, "upload_time": "2016-05-17T12:40:19", "url": "https://files.pythonhosted.org/packages/cb/ed/afc3114a2b9fd25a7bcbd8b7925dadd0739e72c3374d228e7d6cccf00df7/convertbng-0.4.4-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "5cd345ebc8b622a23a0cbee19be8e0d2", "sha256": "2ace51d06dedaf87bc0865db3fe8f6e73affe6cd761cab88dc283e976766fbaa" }, "downloads": -1, "filename": "convertbng-0.4.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "5cd345ebc8b622a23a0cbee19be8e0d2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11280872, "upload_time": "2016-04-19T11:13:04", "url": "https://files.pythonhosted.org/packages/50/43/bd7cc06274d5b353a725f654fc77c9b1f6ddd54db5f2fc976cbcd22af49c/convertbng-0.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "13a30c1e756c517f0138346be997a21e", "sha256": "55265a9bb68fe696eb514e49eb86c1f568b2707c6499e3d3bc8582e75deac1a0" }, "downloads": -1, "filename": "convertbng-0.4.4.tar.gz", "has_sig": true, "md5_digest": "13a30c1e756c517f0138346be997a21e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11276005, "upload_time": "2016-05-17T12:40:42", "url": "https://files.pythonhosted.org/packages/2d/66/82a0529467d7ca86f7a310782e900b56dfd0d59163ce0fc5d76a736863f5/convertbng-0.4.4.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "50f56cee12e7cd76d6fcf3f4da6b07bc", "sha256": "576e006c44798333316e6a8d2e7dba4e5e9372eebcf9f903801008f31fd5d788" }, "downloads": -1, "filename": "convertbng-0.4.7-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "50f56cee12e7cd76d6fcf3f4da6b07bc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11500587, "upload_time": "2016-05-30T10:57:52", "url": "https://files.pythonhosted.org/packages/78/5f/9283eb40402cadd3dcfe5c8e340521f24f5bdd546840c87bf7e569a612ad/convertbng-0.4.7-cp27-none-macosx_10_6_intel.whl" }, { "comment_text": "", "digests": { "md5": "0bfcc1a906bcb58d8154150df5392a6b", "sha256": "7770d53c856330d5a89d4bb7eaa2daebaa8c7483c63418cd028756883311f6fe" }, "downloads": -1, "filename": "convertbng-0.4.7.tar.gz", "has_sig": true, "md5_digest": "0bfcc1a906bcb58d8154150df5392a6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11368680, "upload_time": "2016-05-30T10:58:08", "url": "https://files.pythonhosted.org/packages/1f/a0/e2012e8e4f336e605627dd950040984dc7b709b87e1b37c572bda4114893/convertbng-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "6c9390e78ba00656707e150d36e9b1b5", "sha256": "270b118e5e50dc91d7295dd041bd5d43cbcd7c3e485fd5f08864c5fda65eed55" }, "downloads": -1, "filename": "convertbng-0.4.8-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "6c9390e78ba00656707e150d36e9b1b5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11498085, "upload_time": "2016-05-31T16:25:07", "url": "https://files.pythonhosted.org/packages/94/48/4a7a650751ac97fc51d7b5ffb87862fa63d5f97d1f2676b56165a2f22a1e/convertbng-0.4.8-cp27-none-macosx_10_6_intel.whl" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "57f169c0cb80303a6f0412767d1b6392", "sha256": "10678c6d79ea36855453fe8497e5f9b2eab225696d5228d507174fcda6fbb186" }, "downloads": -1, "filename": "convertbng-0.4.9-cp27-none-macosx_10_6_intel.whl", "has_sig": true, "md5_digest": "57f169c0cb80303a6f0412767d1b6392", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 11498087, "upload_time": "2016-05-31T16:32:02", "url": "https://files.pythonhosted.org/packages/f0/c9/7c234ce1e1ece1f58ce0431355ea9f45460eaf0fd71884451a5d6dd1cad5/convertbng-0.4.9-cp27-none-macosx_10_6_intel.whl" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "db8ec8dae1aab56c5e80849bea3cfe71", "sha256": "695be8c18193682df6d45e7d6ca2a42da0d7eeb016e62aa5d9c8893e377e3ec1" }, "downloads": -1, "filename": "convertbng-0.5.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "db8ec8dae1aab56c5e80849bea3cfe71", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14174401, "upload_time": "2016-09-06T04:38:31", "url": "https://files.pythonhosted.org/packages/82/48/5e3552f7e3b71d0362e1d58794a568e07efe397bf420a673d238b154e911/convertbng-0.5.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6bc10a5f69b1926b4a51f9101f7a75aa", "sha256": "6c4baf0ecf17418c06ff6c5f86a7057d8562d7cca55817ba4ce3d63defd0fc93" }, "downloads": -1, "filename": "convertbng-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "6bc10a5f69b1926b4a51f9101f7a75aa", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14356697, "upload_time": "2016-09-06T04:41:28", "url": "https://files.pythonhosted.org/packages/f3/c3/da64c609d5d5eaa05634d243f777fe145720ba9c27d79172236895f581cf/convertbng-0.5.0-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e618e1449ba3db6022360c05e32771a1", "sha256": "c9347fa31d2790495467aaf60ef5aa56b15ea6d7438335ab8f4d4295ef27d4b1" }, "downloads": -1, "filename": "convertbng-0.5.0-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "e618e1449ba3db6022360c05e32771a1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14425609, "upload_time": "2016-09-06T04:39:34", "url": "https://files.pythonhosted.org/packages/cb/32/6dd036624770d5ef05d8a43bf768512abcce43a39313a64c4183f82c1fba/convertbng-0.5.0-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "458f96e5ae9956ed9852963b7c6fd87a", "sha256": "86dbb2f3d2dd946e5b4811908af023a2a591de489a52f121e793600a1761717a" }, "downloads": -1, "filename": "convertbng-0.5.0-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "458f96e5ae9956ed9852963b7c6fd87a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14348994, "upload_time": "2016-09-06T04:40:31", "url": "https://files.pythonhosted.org/packages/b5/9c/7dfadf8ecc7681f310d8d7806d5413fcf9469a1cea21018571aaddd17255/convertbng-0.5.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b45b584257c66c855ebb603d11660aac", "sha256": "e71d61c42f6e370ff6a7abcb5e1e8573ee1cd53f1880604179a8e56d5ec60c84" }, "downloads": -1, "filename": "convertbng-0.5.0-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "b45b584257c66c855ebb603d11660aac", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14349711, "upload_time": "2016-09-06T04:42:26", "url": "https://files.pythonhosted.org/packages/38/73/15b43ce57650016c88bdd3ef480f6cb24ab34620ae82f7cb87c3e6c3887a/convertbng-0.5.0-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e3570a82ddf0b950a14d6259f3e6fe7e", "sha256": "02d7a89d093a7e8d16f88b0d0ef08dfb0425e402204400b5489bbc1891d880b9" }, "downloads": -1, "filename": "convertbng-0.5.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "e3570a82ddf0b950a14d6259f3e6fe7e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14176477, "upload_time": "2016-09-06T04:43:23", "url": "https://files.pythonhosted.org/packages/0d/b5/ee838de7839aa63adcd4a67a0225d44e76341557bb3989aa2f3ed1723526/convertbng-0.5.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "111e57fabe58eacd630c420bca2cf076", "sha256": "4f2b84cd6ca4ba3b8ea8250184fd1edcb68e8412e1b01e648b62622afa5773f7" }, "downloads": -1, "filename": "convertbng-0.5.0-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "111e57fabe58eacd630c420bca2cf076", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 14371973, "upload_time": "2016-09-06T04:44:22", "url": "https://files.pythonhosted.org/packages/b9/a0/51b968b03d21548d2c0b7b9953ca629698b5ce55273ebdd4953fd42b0d65/convertbng-0.5.0-cp35-cp35m-manylinux1_x86_64.whl" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "a3389495b96759f51359253016664e7f", "sha256": "5166a2602d8efea18424abf8192e0226a1142ae7c17930908c9714b60428beb2" }, "downloads": -1, "filename": "convertbng-0.5.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "a3389495b96759f51359253016664e7f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13989614, "upload_time": "2017-01-14T17:55:26", "url": "https://files.pythonhosted.org/packages/9f/2f/964e8e888d0c8d1ebc709e7d00b8b081d8b5869e43b908fc56f387df9784/convertbng-0.5.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9a4433753ac2ced31cd09a987b47d9cf", "sha256": "0a8bba883369cc1e75e0ff29894a98ac8c721bda563233b53500d541be365467" }, "downloads": -1, "filename": "convertbng-0.5.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "9a4433753ac2ced31cd09a987b47d9cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14171587, "upload_time": "2017-01-14T18:04:48", "url": "https://files.pythonhosted.org/packages/7b/ec/264eaa7db8c86e75389f4d92be802a8a36b936480ba283a2312c448a89b6/convertbng-0.5.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "66debf7dc03870b67a2fef5a01b58191", "sha256": "62a3f88432fb7aaae41a55299bc6dbcba31376134f158e9fe697b2712b212c60" }, "downloads": -1, "filename": "convertbng-0.5.5-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "66debf7dc03870b67a2fef5a01b58191", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14188064, "upload_time": "2017-01-14T17:58:29", "url": "https://files.pythonhosted.org/packages/30/dd/7848b929d740721f315f52b21cb72046846048ad0e0c0a8b18857a126d87/convertbng-0.5.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "89aa2359821fa3c8472408ce87e66645", "sha256": "210792468e7dbcc354c01f727f2e8bd7a95d9e8959076ac5e19f261122cc8084" }, "downloads": -1, "filename": "convertbng-0.5.5-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "89aa2359821fa3c8472408ce87e66645", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14126631, "upload_time": "2017-01-14T18:01:41", "url": "https://files.pythonhosted.org/packages/07/65/9724aafdc4db8602114c8bd5491275f751996c778cf04027da13c0e5c9ee/convertbng-0.5.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "220d01db92f4291c81c1971a73716a7c", "sha256": "82062f0d25a403432bcdb24c8363d3bc4031970d7bb8752c946051f9dba222b4" }, "downloads": -1, "filename": "convertbng-0.5.5-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "220d01db92f4291c81c1971a73716a7c", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14127347, "upload_time": "2017-01-14T18:07:49", "url": "https://files.pythonhosted.org/packages/76/34/59809c73c23bd419f0e483ed6028ceb3f10e485acac8411532b0335d4dbd/convertbng-0.5.5-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a4251f44c219e3a9cbb15104a9e4e701", "sha256": "45e767f89c2e9786e3db944a1ef37fd520c088dd92e095a10b39b1f4f69c32ee" }, "downloads": -1, "filename": "convertbng-0.5.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "a4251f44c219e3a9cbb15104a9e4e701", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13989105, "upload_time": "2017-01-14T18:10:56", "url": "https://files.pythonhosted.org/packages/2a/0e/b5424868605b27a95cd49141e263fb24b26e94375f71876ad429d55dc3db/convertbng-0.5.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5ee0765698046de70ad7de66beb5bd0c", "sha256": "42d0410460165252619a459b0ad9d07c1dfce58d5a73f1a461e66efea97825bf" }, "downloads": -1, "filename": "convertbng-0.5.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "5ee0765698046de70ad7de66beb5bd0c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14187058, "upload_time": "2017-01-14T18:13:58", "url": "https://files.pythonhosted.org/packages/1e/c2/406f271fad69bdf49d4479f57d616615b95c1a864b3c573b33ccad0a6f3e/convertbng-0.5.5-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "06d5c99a19a5f309979d63bee1ecd907", "sha256": "d5b32c6fdad52353d71a9df43ba014eea63f8460ad2c6f9e36ed8b2ac916d801" }, "downloads": -1, "filename": "convertbng-0.5.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "06d5c99a19a5f309979d63bee1ecd907", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13989568, "upload_time": "2017-05-30T16:47:33", "url": "https://files.pythonhosted.org/packages/03/03/29c35a4124215c10e9f77366b4199a6e495def999804a78c7a029e26de9a/convertbng-0.5.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ba5bf9831bc3fd820c2789c6ea07e1c6", "sha256": "2d7cca5cb51170bbe8c4b5277f1df79064c4fa7705c21246138a54d3da32776d" }, "downloads": -1, "filename": "convertbng-0.5.7-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ba5bf9831bc3fd820c2789c6ea07e1c6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14172436, "upload_time": "2017-05-30T16:48:00", "url": "https://files.pythonhosted.org/packages/c2/a2/570eacceb9db9f817a6bd621c723f0c43efe37d493d2f39c4f655cfc70a7/convertbng-0.5.7-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d8315c62b88fb97293ab372964d0c95", "sha256": "db692fd6b505bc9bcaaa66c31b8ce27c9d027353bb598bc2dd43783184aef0b0" }, "downloads": -1, "filename": "convertbng-0.5.7-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "2d8315c62b88fb97293ab372964d0c95", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14188014, "upload_time": "2017-05-30T16:47:46", "url": "https://files.pythonhosted.org/packages/1b/c4/b0526c003644ed112dfad25853cac2edca69fd3cff35a494fc90a7c809dd/convertbng-0.5.7-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c7e82f8c27edd69839fca0d4710ab873", "sha256": "12e08cebf0390d55ffdca60c9c8bf11ee700812f43e019443c3d0dde89adfda6" }, "downloads": -1, "filename": "convertbng-0.5.7-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "c7e82f8c27edd69839fca0d4710ab873", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 14126583, "upload_time": "2017-05-30T16:47:52", "url": "https://files.pythonhosted.org/packages/de/30/3857ed774e99481ebf2fa6d50b08533812ce171bb6c5b657f4ce9aad3254/convertbng-0.5.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "180e091d010d4139f02876b9fe360f45", "sha256": "a9172f37e58c72471d325d3cd7128b3e464efac2b88ffb37a7f43e87fd27de02" }, "downloads": -1, "filename": "convertbng-0.5.7-cp34-cp34m-win_amd64.whl", "has_sig": true, "md5_digest": "180e091d010d4139f02876b9fe360f45", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 14127294, "upload_time": "2017-05-30T16:48:07", "url": "https://files.pythonhosted.org/packages/3f/f1/21cae3b999ac94e3c5b8255bdc6701abd3c3101b0f04dd87526fc409fe7d/convertbng-0.5.7-cp34-cp34m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a233286f4e1d915957aad134f2d6da64", "sha256": "3b814a4caf02166733c8720dcb10836923c2cf9e94181bb70e6dc683b1e33198" }, "downloads": -1, "filename": "convertbng-0.5.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "a233286f4e1d915957aad134f2d6da64", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13989061, "upload_time": "2017-05-30T16:48:15", "url": "https://files.pythonhosted.org/packages/5c/ab/9cdc68c5dc7b58bc7cb6fc7d01ca60ba00aa5e6587d9bdd81414687f0ca9/convertbng-0.5.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "becc78f384721599c9dba984ecd083f1", "sha256": "6a1b63fbf9b68a30507072c0fe43fffb3fcb3b1a67a023a0d09dc9a47416a3c0" }, "downloads": -1, "filename": "convertbng-0.5.7-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "becc78f384721599c9dba984ecd083f1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 14187801, "upload_time": "2017-05-30T16:48:26", "url": "https://files.pythonhosted.org/packages/41/e0/f1907783e749eda810960edc04d4cc9a69333eb2096a4082c90ebdeeb64c/convertbng-0.5.7-cp36-cp36m-manylinux1_x86_64.whl" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "e23dd3e54fe87b97b3da2fe1d9c33fff", "sha256": "155fc9888519cfeef0c079dbf64748170d4f3cbe48cbf0d672789d2ae79ad32b" }, "downloads": -1, "filename": "convertbng-0.6.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e23dd3e54fe87b97b3da2fe1d9c33fff", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13756316, "upload_time": "2018-08-27T21:39:47", "url": "https://files.pythonhosted.org/packages/33/48/9344f5060b524b8e33e239e12b888919f9042d0f9e1c6ffb1057fccc3f90/convertbng-0.6.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2bfd00632abc407994afa8e6c50f5643", "sha256": "2fe6f4650f7e15fedc1f014d7583e024af3bbf1c4806291c7653890b07b82ea0" }, "downloads": -1, "filename": "convertbng-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2bfd00632abc407994afa8e6c50f5643", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13874940, "upload_time": "2018-08-27T21:40:12", "url": "https://files.pythonhosted.org/packages/15/3b/9cae1cc8bc74f2c69a474da51f9105c7937e5be8e3024b5f13fd598cb1d7/convertbng-0.6.1-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "18305319625e8b4563f38aa5f8090a70", "sha256": "562321d52a4536e843177e43728d191d555210a36f1eafcf487ce6ca3ba0c143" }, "downloads": -1, "filename": "convertbng-0.6.1-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "18305319625e8b4563f38aa5f8090a70", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13724078, "upload_time": "2018-08-27T21:39:55", "url": "https://files.pythonhosted.org/packages/fc/be/1ce1c9df19c3febc99d238fe156f5e5f2d1a1338d7e0d4efc053dd1fdb97/convertbng-0.6.1-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9800b74e55854dfa661e9b8b49629c52", "sha256": "732f75d5bae90a0ad82c0fb6985d73d74196e774a27554fa597b0a027ba372df" }, "downloads": -1, "filename": "convertbng-0.6.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "9800b74e55854dfa661e9b8b49629c52", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13736642, "upload_time": "2018-08-27T21:40:03", "url": "https://files.pythonhosted.org/packages/c6/84/302747320276c34d2b33cc3498a475e975f633c9a9b4fcc76e56e601556e/convertbng-0.6.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2dc09c4ca693ef95f4cb756e19de8997", "sha256": "78f13a4e506edf0f4ca7c18f0799fe091ffafb7c748916a11a7529f4dd5e877c" }, "downloads": -1, "filename": "convertbng-0.6.1-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2dc09c4ca693ef95f4cb756e19de8997", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13894131, "upload_time": "2018-08-27T21:40:36", "url": "https://files.pythonhosted.org/packages/20/dd/7910563c9f630e393f8b7815749cb389d7aa27950000d165b8e37507b23f/convertbng-0.6.1-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2654fe2e87450e2a9cda5d2ef59ca0d7", "sha256": "86a8a40ea6fbb17896a69cc53fa2979b5acd51d6ee867a1c0edd9a79ad97f6e0" }, "downloads": -1, "filename": "convertbng-0.6.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "2654fe2e87450e2a9cda5d2ef59ca0d7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13748999, "upload_time": "2018-08-27T21:40:49", "url": "https://files.pythonhosted.org/packages/4b/8f/01be1bc0f1a562132ef1663003d48fcf83bca8d5ff0e31098f7b1fbcd5e9/convertbng-0.6.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4c32e997359df4ab9f39c4f0e16af46b", "sha256": "54e78298e0dd210a3db3e76aaf3e6ace5214123a7eaccecb92d4ac6e425657d1" }, "downloads": -1, "filename": "convertbng-0.6.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4c32e997359df4ab9f39c4f0e16af46b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13890094, "upload_time": "2018-08-27T21:41:00", "url": "https://files.pythonhosted.org/packages/e0/5b/b23a6eeea52e947007766c8f992b8ecaab24341cb74c83be1415d64d39a8/convertbng-0.6.1-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f60873a769bd6ff0261186f3aa51bf4a", "sha256": "2354516592695d12bf66479a77bad6b7f9021a1062bd42f894e34cd97187c6a5" }, "downloads": -1, "filename": "convertbng-0.6.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f60873a769bd6ff0261186f3aa51bf4a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13729136, "upload_time": "2018-08-27T21:41:09", "url": "https://files.pythonhosted.org/packages/ca/d0/8ad6ad1684562fa7447a5417fe7777b0fd5d01da47ada9a77a06be256600/convertbng-0.6.1-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2313c39336727bae08f7502b4aab6a44", "sha256": "e09506b23c8accff096e41ee64748275ecaf4bba79169f3d3bf095816661ea5b" }, "downloads": -1, "filename": "convertbng-0.6.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "2313c39336727bae08f7502b4aab6a44", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13743213, "upload_time": "2018-08-27T21:41:20", "url": "https://files.pythonhosted.org/packages/75/07/68302eb588510c29f46beb1bbf619366b336050abf17e86206d612ae23a9/convertbng-0.6.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45a24d398a50a8ae3c0acb5366ebf9ea", "sha256": "9226c8c4e45555d6639083997eb60e74635d126d2aa0fb8c5010b41b3911cb22" }, "downloads": -1, "filename": "convertbng-0.6.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "45a24d398a50a8ae3c0acb5366ebf9ea", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13749001, "upload_time": "2018-08-27T21:41:29", "url": "https://files.pythonhosted.org/packages/56/6c/364ddbc42836f0e9b187c561e42cf7779788405faa25b6ee9e6536f75fff/convertbng-0.6.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a532d4c4c3fef1587fa83a4b05254487", "sha256": "a893f1614754d85fb87c3ab38c850f95da4049e2c6cfe6cbe59c800ac788bd17" }, "downloads": -1, "filename": "convertbng-0.6.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a532d4c4c3fef1587fa83a4b05254487", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13890227, "upload_time": "2018-08-27T21:41:37", "url": "https://files.pythonhosted.org/packages/90/99/22f5c9f067b9e6756f6437e4a73006a86d84f11c323957a3bb323f9b9689/convertbng-0.6.1-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "552d4909191e57d26b08ff60cc7c227b", "sha256": "0dc00cd59189babbe09e194b3a315190e33e941be225682e1dfbe347439b113d" }, "downloads": -1, "filename": "convertbng-0.6.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "552d4909191e57d26b08ff60cc7c227b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13723369, "upload_time": "2018-08-27T21:41:45", "url": "https://files.pythonhosted.org/packages/6d/f8/e5ffb35f3ea9f1d0158f3a58e5f44307943a2b927dc724033719edc5b2ed/convertbng-0.6.1-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "716e147ec98d804c0fd82c393f944b90", "sha256": "241489d768e9bd4797f94b6b2317297afef732ebaf5aa3ba557599f2449e2bc3" }, "downloads": -1, "filename": "convertbng-0.6.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "716e147ec98d804c0fd82c393f944b90", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13737447, "upload_time": "2018-08-27T21:41:55", "url": "https://files.pythonhosted.org/packages/1b/82/a46a69adfabb10f1f26e13be7f27b56e776ded221f90d1afd0a1059aad25/convertbng-0.6.1-cp36-cp36m-win_amd64.whl" } ], "0.6.10": [ { "comment_text": "", "digests": { "md5": "6cc89fa0dcc421d755269cec305758f8", "sha256": "257cb489fd658f15f4ee0a0942ef19284032a6dcd75a46c3bfe1c2b14c1335da" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "6cc89fa0dcc421d755269cec305758f8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13793682, "upload_time": "2019-04-03T13:32:54", "url": "https://files.pythonhosted.org/packages/19/4b/aaef0eedd71f09d23f78d3804f0c0b2eb428471d1412c03a271824f23599/convertbng-0.6.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b0b8283403a3341f4b0b62ec119dd73d", "sha256": "eb8ffc3f70a1a78312be17163706931f0281a638b78af87c004851e3de6973e1" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b0b8283403a3341f4b0b62ec119dd73d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13931190, "upload_time": "2019-04-03T13:33:09", "url": "https://files.pythonhosted.org/packages/62/40/d00481cdb9359bc5e8e6eb9e828e8fd7548889b4a67d39fe76fe3f71e5b4/convertbng-0.6.10-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f14c80dbdd664ae3e2054382da7abcb", "sha256": "17cf6dc7cd81fdebd3cc75e49f5f21e9209321f44da7e91e9ff51ae940c2dec1" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "8f14c80dbdd664ae3e2054382da7abcb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13739300, "upload_time": "2019-04-03T13:32:59", "url": "https://files.pythonhosted.org/packages/8a/1a/f390f66d45d794ec494ad47cd122349b92b31741d799fe8b1b75be7d4f0c/convertbng-0.6.10-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ced2a8e0b789ca3afd0f324626f266f7", "sha256": "3c1c8e95070ee9eb4be8afc16bc5014905e4137a79e5d52e0a90cca77af6f5fb" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "ced2a8e0b789ca3afd0f324626f266f7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13755812, "upload_time": "2019-04-03T13:33:04", "url": "https://files.pythonhosted.org/packages/6a/bf/a4fe5a3af1af3c75b38f5a6076b41a482f58c41cd5da50a0576078507c00/convertbng-0.6.10-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "abe4ebbfd9f0713128582793c0725d76", "sha256": "c14ed1227b9a91c2954accb862474f5074512cfcd24c4c8978572f53ef193344" }, "downloads": -1, "filename": "convertbng-0.6.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "abe4ebbfd9f0713128582793c0725d76", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13948678, "upload_time": "2019-04-03T13:33:15", "url": "https://files.pythonhosted.org/packages/a3/17/6447ce035b5a1394861ddafe285631219653becc6cc9fe5d2e1dcbf95bcd/convertbng-0.6.10-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0d1a7a2808bb0bb7491c2ad4ebc773de", "sha256": "b0f73918f471a8dcc1d99cc8e28617c200204c9d29e8d910f5fb8fe891971550" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "0d1a7a2808bb0bb7491c2ad4ebc773de", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13787541, "upload_time": "2019-04-03T13:33:21", "url": "https://files.pythonhosted.org/packages/8f/16/879a44b71d7c0aea6a67553433e04a1822be89dbd2e5f249c03c199433e6/convertbng-0.6.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c6e973bad8407bfd2b7a3760cb5e3883", "sha256": "d477903f301a2eb2bca3f80af9800155eedc3572d534811107df5dac2d951fce" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c6e973bad8407bfd2b7a3760cb5e3883", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13949122, "upload_time": "2019-04-03T13:33:27", "url": "https://files.pythonhosted.org/packages/a3/81/26fe70de35556dd7dac846aaef70c627f4ef1961d06c72265c9fad4c4636/convertbng-0.6.10-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1a446780190ee9a19e7f81d7e82f9d1e", "sha256": "05eb091bec896d9432ced826c45a4dff18cffe9163250ca2097035b996e9f31e" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "1a446780190ee9a19e7f81d7e82f9d1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13743798, "upload_time": "2019-04-03T13:33:32", "url": "https://files.pythonhosted.org/packages/51/cb/49acb4f9f3ca734239b57585b5cc6c5bb978cc3afd880c6ac7d787e74936/convertbng-0.6.10-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c06004c3057a9eaf47d8cac2418efd4c", "sha256": "ca87a70f5b57980e464c08625fab0d669b14dfc8df054a908ae5727bb0c7d5fb" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "c06004c3057a9eaf47d8cac2418efd4c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13761663, "upload_time": "2019-04-03T13:33:37", "url": "https://files.pythonhosted.org/packages/32/10/0c8b0908cd6b9287bb0213a625cb2ee7965e76c008f0a2b9fdfe94f65712/convertbng-0.6.10-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a0895b4037cac6f3efd3a0f67e92a0d4", "sha256": "80f74b4ac3cd4a48779f88c4cec224d8ca74f4c524ebe5cac52891f8545f045a" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "a0895b4037cac6f3efd3a0f67e92a0d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13790232, "upload_time": "2019-04-03T13:33:42", "url": "https://files.pythonhosted.org/packages/2b/12/d8072825ab407dca9a186ad49e2462aa9bec4d6b08e78ee0986f9f8ccd93/convertbng-0.6.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5a0359f96dbb3241e9cd9efc2ffdaf9", "sha256": "b8bbe9fbf659f12f34792436e03096873c5b5f7814e9d67fc16a274a8ecdf0a3" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b5a0359f96dbb3241e9cd9efc2ffdaf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13952976, "upload_time": "2019-04-03T13:33:47", "url": "https://files.pythonhosted.org/packages/98/e9/83ee5769fbe707384053fa6f4c2409ceea7b523af3d22299c6b4e7c33fe9/convertbng-0.6.10-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "131e9a049cc495fdf73c131fb45f1eb9", "sha256": "ea04dc9aa14e2b29d5d19a765318366ca831778a4d7396e0acaf9b4997b69d5b" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "131e9a049cc495fdf73c131fb45f1eb9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13739529, "upload_time": "2019-04-03T13:33:52", "url": "https://files.pythonhosted.org/packages/e4/ec/b29b43ea0f06fb5ec44505ed88ac9067d5b592d0ddf002127c6581540db0/convertbng-0.6.10-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d44324299381aa36114ec85b8ee37d24", "sha256": "f0b97483531b17c1c2e6a55761ad3ec6ba55f9e676247ad9dcf485525d15e029" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "d44324299381aa36114ec85b8ee37d24", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13757686, "upload_time": "2019-04-03T13:33:56", "url": "https://files.pythonhosted.org/packages/9c/6a/a7289815c53ec170c7ee052fc4e7e627131ef0f665420323f903e9cda441/convertbng-0.6.10-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8140cf15c0f774760b048f73d6275c07", "sha256": "806d0c853f96175d5c17835de2209e03514e9de41fb3c41d0938e9a826c920e8" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "8140cf15c0f774760b048f73d6275c07", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13790281, "upload_time": "2019-04-03T13:34:01", "url": "https://files.pythonhosted.org/packages/48/fc/073759ea6d6200a0bf8b85c7cf77435b9309f9131583cbe83c8c7f1330d4/convertbng-0.6.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed83c12b3a68e24420425f99d12d79d2", "sha256": "2356cec670a84338b191259544241196406c915012c5df63c22d6a2c88f99b39" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ed83c12b3a68e24420425f99d12d79d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13951404, "upload_time": "2019-04-03T13:34:06", "url": "https://files.pythonhosted.org/packages/46/8e/b0ad29da90e764cbb11517cd48132f8dc5550bddd3ba9218028ce700a0ca/convertbng-0.6.10-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "692be5872bffa9e12cfb537892e0a736", "sha256": "d06c7c26dcc782fef016f2d429aa0944d9c66258cd1f2a611857a22a87fd0cde" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "692be5872bffa9e12cfb537892e0a736", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13757594, "upload_time": "2019-04-03T13:34:11", "url": "https://files.pythonhosted.org/packages/47/05/28056416d0e222e75b0e964913fcdb92770d246e4bf062758763fe2e143d/convertbng-0.6.10-cp37-cp37m-win_amd64.whl" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "961fed9fd28e33f9472733b4a17e329a", "sha256": "b9bb53dedf9469d39bdd3717df9d957c350e2ee384d2b7e0268ff9ad27b11e38" }, "downloads": -1, "filename": "convertbng-0.6.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "961fed9fd28e33f9472733b4a17e329a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13756196, "upload_time": "2018-08-28T12:40:10", "url": "https://files.pythonhosted.org/packages/24/0b/b4bdbafa36f8ba561cae7f387ad9cfa5c4d3553d6afa3d7e3ae50ea066a6/convertbng-0.6.4-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7b73afe949a7e5e3a3df5cba71df9d9f", "sha256": "679683b0bf8dc78795bc85fd52f209c84a3e43b75c2ffedb91fe98ebae6fc0d2" }, "downloads": -1, "filename": "convertbng-0.6.4-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7b73afe949a7e5e3a3df5cba71df9d9f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13874821, "upload_time": "2018-08-28T12:40:25", "url": "https://files.pythonhosted.org/packages/34/f4/6d9ac5c32834d9eaa5579e258a78d889dc52f546f296197ed73116f452ed/convertbng-0.6.4-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ab8a68bbfe1412d7f15610cc7e84487d", "sha256": "dc3ef8960f6fe0c621bede3fa60be5a5ac4f6d9b6d7589bd2c089fa5dd22b52b" }, "downloads": -1, "filename": "convertbng-0.6.4-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ab8a68bbfe1412d7f15610cc7e84487d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13723943, "upload_time": "2018-08-28T12:40:14", "url": "https://files.pythonhosted.org/packages/af/3e/23863c3a6fb39f4e674984db8d9d532d6b344d5c9978bbc2771b2697d6bc/convertbng-0.6.4-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1ce0a7efc89b29db171f994c4b928d52", "sha256": "57770a071255b2652fb63f478b3d2d172ca4f397330e7532d1648541db074053" }, "downloads": -1, "filename": "convertbng-0.6.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1ce0a7efc89b29db171f994c4b928d52", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13736507, "upload_time": "2018-08-28T12:40:20", "url": "https://files.pythonhosted.org/packages/45/75/a675543757b243e39878397434fab0ec31b6c4d620682dc478ece82dd261/convertbng-0.6.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "affc526a4722725de708c91fed4b0d29", "sha256": "89c274eb2ffb2c1d2ce27184c964e705641d4af0c180ff9a9171188249194dfb" }, "downloads": -1, "filename": "convertbng-0.6.4-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "affc526a4722725de708c91fed4b0d29", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13894001, "upload_time": "2018-08-28T12:40:30", "url": "https://files.pythonhosted.org/packages/cd/35/adea42edf425904aac79020ed3c01717c5ced4b847a823c08b5654eadc2e/convertbng-0.6.4-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e0db1d0b73d761ea8f2314e93b623a99", "sha256": "7ad0eed8d9a74ce401f249522ab622f912a7903756414e1fba510176e6281819" }, "downloads": -1, "filename": "convertbng-0.6.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "e0db1d0b73d761ea8f2314e93b623a99", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13748884, "upload_time": "2018-08-28T12:40:35", "url": "https://files.pythonhosted.org/packages/b1/e3/aa8cda4089f48b28f68b968887cb715084224b87612392e77284ba80fc6e/convertbng-0.6.4-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "93c38a2273cd433f4a544ad6af8746b1", "sha256": "b426fd493be4c13fced88c160542645ddabec411830959b5b61b057067d64786" }, "downloads": -1, "filename": "convertbng-0.6.4-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "93c38a2273cd433f4a544ad6af8746b1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13889961, "upload_time": "2018-08-28T12:40:42", "url": "https://files.pythonhosted.org/packages/8c/68/7253401dc0c05a3c835574690c44652f339e7e72f4439892ec09b46bfc2c/convertbng-0.6.4-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4fe3c598d4977f79c3da4144cbcc0bf2", "sha256": "cac7e873eed03e7edcec569c8fa5064d94f6277465a45a1f79ee50496306b06c" }, "downloads": -1, "filename": "convertbng-0.6.4-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4fe3c598d4977f79c3da4144cbcc0bf2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13728862, "upload_time": "2018-08-28T12:40:50", "url": "https://files.pythonhosted.org/packages/b4/3c/633c2c776164a6d6b73f8340dcc506a5f3154e75c2abd6de5f2be661b147/convertbng-0.6.4-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6cdd687a574d6011d973dfdb652c1347", "sha256": "9b5ad85a1d0c4e654096081415387b37641ef4151dec136b94a755dbeeb10f7f" }, "downloads": -1, "filename": "convertbng-0.6.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "6cdd687a574d6011d973dfdb652c1347", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13742942, "upload_time": "2018-08-28T12:40:55", "url": "https://files.pythonhosted.org/packages/25/45/b7b8f734c14eac1cfd1a73b71d30010f6970a4c0271c7740ea9752d696e5/convertbng-0.6.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c13b1a68cd2da5a02c22e6ecd55a042b", "sha256": "b4d65be13476b9d1613927e47b6e1a69c3c025cb749760ae9815fef6c9c9363f" }, "downloads": -1, "filename": "convertbng-0.6.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "c13b1a68cd2da5a02c22e6ecd55a042b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13748883, "upload_time": "2018-08-28T12:41:01", "url": "https://files.pythonhosted.org/packages/72/a5/f39b67da21d3038247e458e0469e4a51017366336488ba2bb6da6c86851d/convertbng-0.6.4-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c19dda4ee83107948124f8a09d934b44", "sha256": "45b007da53761bc76abd0fd1f85d21ac0e3672a314a7f157dc2bd78529d8abce" }, "downloads": -1, "filename": "convertbng-0.6.4-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c19dda4ee83107948124f8a09d934b44", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13890114, "upload_time": "2018-08-28T12:41:06", "url": "https://files.pythonhosted.org/packages/54/c6/08587783e902ceae2afb89e3dcfb821b8a7fbf12b8c54bb5d21096c898ee/convertbng-0.6.4-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6791f7a40d28e60199c39f8a22328246", "sha256": "a31754efaf54d32370e7215a1683d1add653c00869589af9483576dd26c00499" }, "downloads": -1, "filename": "convertbng-0.6.4-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6791f7a40d28e60199c39f8a22328246", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13723251, "upload_time": "2018-08-28T12:41:11", "url": "https://files.pythonhosted.org/packages/6e/e0/af8697f17cfceac57a50f6db8d73ad72819365b9c53ef48b9c39a686c92a/convertbng-0.6.4-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "580e8a4db2accec89be26d1141bbf1bf", "sha256": "ea0d53c1dfa5a673c19a753cdb7bfb6ded314e75c53b77e032de2f7e923c7bb0" }, "downloads": -1, "filename": "convertbng-0.6.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "580e8a4db2accec89be26d1141bbf1bf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13737324, "upload_time": "2018-08-28T12:41:17", "url": "https://files.pythonhosted.org/packages/4d/93/ee37fa55e1f716aa1f281abc7738d75e556200818bb9e04e03b945c9dcc8/convertbng-0.6.4-cp36-cp36m-win_amd64.whl" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "a0d85ad4a92fa11f19aba7b29b8cac35", "sha256": "2110706a1fa050e3f1aa484f6cf97b0eb5daa47c6a6177c4970e5e01383b0c1a" }, "downloads": -1, "filename": "convertbng-0.6.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "a0d85ad4a92fa11f19aba7b29b8cac35", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13789036, "upload_time": "2018-09-06T12:22:39", "url": "https://files.pythonhosted.org/packages/42/48/6e1e7862614a88cbe0f10e973e496ebd67dd829b6481a38c05ef3add3a02/convertbng-0.6.5-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "692e13b7f2b73fd7d714e7860d83af87", "sha256": "c9678e30e5477d3690a00570dc8333ef84f04795e4ca9ca190b41df2a9db4ad8" }, "downloads": -1, "filename": "convertbng-0.6.5-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "692e13b7f2b73fd7d714e7860d83af87", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13920238, "upload_time": "2018-09-06T12:22:55", "url": "https://files.pythonhosted.org/packages/5d/31/d0557b11655f282592ada685ff0549804c4ef18111777da00318b71e729c/convertbng-0.6.5-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "daefd898db84765e15675aeea587310f", "sha256": "07dbc60f96c74f23630086a6f271516ea70fcc945d2635b6a6835225083ed677" }, "downloads": -1, "filename": "convertbng-0.6.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "daefd898db84765e15675aeea587310f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13739912, "upload_time": "2018-09-06T12:22:44", "url": "https://files.pythonhosted.org/packages/cd/50/c71982133df6d72c3e879e6f64947a5dfa2ad1330ab6c2a544b90750fe8c/convertbng-0.6.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "22ca295234b1047a1d406899ae6ea2c3", "sha256": "46d1706d525b4a031575ef81a18a57029b15c46475e1994027f877683d083d28" }, "downloads": -1, "filename": "convertbng-0.6.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "22ca295234b1047a1d406899ae6ea2c3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13758038, "upload_time": "2018-09-06T12:22:49", "url": "https://files.pythonhosted.org/packages/e9/b9/695187d6fd3fa102a08616cb6ab8b47199c3d52dac6ceaf2918304bf5bc5/convertbng-0.6.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e369acd668ad2d2540ca1898f0546082", "sha256": "2d4813d7d7bd1be6d8c3f9752a8f1734201d85328e6cf6976b9ba5c7d7a75958" }, "downloads": -1, "filename": "convertbng-0.6.5-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e369acd668ad2d2540ca1898f0546082", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13939164, "upload_time": "2018-09-06T12:23:00", "url": "https://files.pythonhosted.org/packages/05/9e/6712619b307608ee452bde143320a3fec87fd29de8f85627bce157239963/convertbng-0.6.5-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fb6db98848f108b99e3f2055e66134fd", "sha256": "8f010ea3aad1f5eeb34a48a4f98d831dca37c854cdef84775511fc3d411112c8" }, "downloads": -1, "filename": "convertbng-0.6.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "fb6db98848f108b99e3f2055e66134fd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13780826, "upload_time": "2018-09-06T12:23:06", "url": "https://files.pythonhosted.org/packages/81/e3/064aa2f6fe11a67bb448e3c3fbcbccb7e49fd9f5f0fe7bb1232ff317119c/convertbng-0.6.5-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fdfa041592a13c009c6579d3fba97651", "sha256": "a1cbea1f6cb6da373fd6c828d0efac0a032b4cc2956e7ba498e20557d4fd35e5" }, "downloads": -1, "filename": "convertbng-0.6.5-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fdfa041592a13c009c6579d3fba97651", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13933840, "upload_time": "2018-09-06T12:23:10", "url": "https://files.pythonhosted.org/packages/fa/dd/a565709fc7f5286a06a2509ce465fbe59f19b72b6aebcd51db138d1822e2/convertbng-0.6.5-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e59e016e3aca3c531cd1ce7343c0e8bd", "sha256": "60c55f8e93184d2e050cae9f63711a6faf3c45f440ad5139126c85551cbdb395" }, "downloads": -1, "filename": "convertbng-0.6.5-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e59e016e3aca3c531cd1ce7343c0e8bd", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13744793, "upload_time": "2018-09-06T12:23:15", "url": "https://files.pythonhosted.org/packages/df/f7/71a81d5ea0b6903c583eafd5a5fd271df474301c2005f31b282e5db7f01d/convertbng-0.6.5-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8263da204bbe5333291bb70963b1a2de", "sha256": "06e9f686b2ff39298f5dce5957058b50ecf8326de4b1937c155e9365391e0ae6" }, "downloads": -1, "filename": "convertbng-0.6.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "8263da204bbe5333291bb70963b1a2de", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13763964, "upload_time": "2018-09-06T12:23:20", "url": "https://files.pythonhosted.org/packages/ef/13/4f76cca453af68dc7fcbb3455c37df5131b231ca1af6cb00cc4d8ffa227e/convertbng-0.6.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5f14570c99ae2cdf0549d39f45d3e058", "sha256": "19fb6f868dc3571ca13cd12facdaa5159551c86d7ee1e7846d7e58130b08597f" }, "downloads": -1, "filename": "convertbng-0.6.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "5f14570c99ae2cdf0549d39f45d3e058", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13782568, "upload_time": "2018-09-06T12:23:24", "url": "https://files.pythonhosted.org/packages/6d/cb/1a0f0ae811523522829c7f903bc280781de7e45ab05961e9532b5446912e/convertbng-0.6.5-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1f05f55198a7d3f773d6ba665673c272", "sha256": "439807510c6fc2d873345425318f18c6a77994f7ec03738134941cc3676e355a" }, "downloads": -1, "filename": "convertbng-0.6.5-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1f05f55198a7d3f773d6ba665673c272", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13937687, "upload_time": "2018-09-06T12:23:29", "url": "https://files.pythonhosted.org/packages/be/d9/4fea489f45cf857de3b315e3c187352b2bc31cc481a9aaa0b73b1e700761/convertbng-0.6.5-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "58a2289cbc2f8a0a90d39abfa060b098", "sha256": "9d8ba3aa84baf02d9b61240c62c8580d12d7ecfadb9f004b219fcd64f709d27b" }, "downloads": -1, "filename": "convertbng-0.6.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "58a2289cbc2f8a0a90d39abfa060b098", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13739558, "upload_time": "2018-09-06T12:23:33", "url": "https://files.pythonhosted.org/packages/a7/af/19ef2bbd747714cc55f362d9fdea9116177244a29f49224c179f26edc0fe/convertbng-0.6.5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a6575578eca728a8a55deb6b6b3556ac", "sha256": "40322e872e1d59ba3cc921e726575c03d4817ab9cf16f3a6bfe5c0eade1069b8" }, "downloads": -1, "filename": "convertbng-0.6.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "a6575578eca728a8a55deb6b6b3556ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13758960, "upload_time": "2018-09-06T12:23:39", "url": "https://files.pythonhosted.org/packages/2a/e4/32bad9e1158206e2e0a46c1ddc0a8864de22c8bcd3746e89cc86e920e4dd/convertbng-0.6.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7c527e5c1a4af23a040de88d99706a9c", "sha256": "c5c9573049bc21a3301162c769e2646e4e27b8bfd666d08ee32067fe55c88367" }, "downloads": -1, "filename": "convertbng-0.6.5-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": false, "md5_digest": "7c527e5c1a4af23a040de88d99706a9c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13782478, "upload_time": "2018-09-06T12:23:43", "url": "https://files.pythonhosted.org/packages/3c/71/f97303ff9a734820e2bbad077bf413c87de3f05109373c9926352d5a7d34/convertbng-0.6.5-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "88235f037120648701568a961dbf8ad3", "sha256": "fe61bcfe4f292d8888c5c2d11c4935797aeec4b2978937af50a917fcd4dcb6fb" }, "downloads": -1, "filename": "convertbng-0.6.5-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "88235f037120648701568a961dbf8ad3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13936960, "upload_time": "2018-09-06T12:23:47", "url": "https://files.pythonhosted.org/packages/ce/fd/a02b3ae55b768cfdb994e2320ab75ec672c1470c3ecd60c7a7840b39755e/convertbng-0.6.5-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "460dcfc11207c6b883bc571c53d0e075", "sha256": "02aab8f6ad64a22d7a329ddda31b54717a5e7885dfc658de5cd273f5d8b516f3" }, "downloads": -1, "filename": "convertbng-0.6.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "460dcfc11207c6b883bc571c53d0e075", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13791495, "upload_time": "2018-12-12T17:24:07", "url": "https://files.pythonhosted.org/packages/43/7f/f59d57f9524ab167249e6ce0957f3f70ac15c2d7ee035eee60fa1b077d06/convertbng-0.6.6-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "42976afa36c3de67ed68d81fcac4f45a", "sha256": "be59995d5866a018445cd598379f481f00c32e3c4f6068c071996a0ef2bd57b9" }, "downloads": -1, "filename": "convertbng-0.6.6-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "42976afa36c3de67ed68d81fcac4f45a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13932111, "upload_time": "2018-12-12T17:24:24", "url": "https://files.pythonhosted.org/packages/ec/78/e00256c2fc147b77ba3f349d8b4c18d77d4649b4c09b7547a080edc02a18/convertbng-0.6.6-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "98976afe55047e4167c17c1ff082efe0", "sha256": "833ce30dd8b510b2784ade4c452f648d102fc9020fdece3a790bd4584ae7e499" }, "downloads": -1, "filename": "convertbng-0.6.6-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "98976afe55047e4167c17c1ff082efe0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13737430, "upload_time": "2018-12-12T17:24:13", "url": "https://files.pythonhosted.org/packages/5d/f7/bd0732c024cd13c6b3498c0614775d442eaa6593fed91ed9b5bcac8ce4eb/convertbng-0.6.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "9f8a9c0070d9946c0b1df27cd827f672", "sha256": "d59f42db2b8e606b912fbb427cac7496a555f9579b4f83391ebbcf0cd1a46dcd" }, "downloads": -1, "filename": "convertbng-0.6.6-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "9f8a9c0070d9946c0b1df27cd827f672", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13754286, "upload_time": "2018-12-12T17:24:18", "url": "https://files.pythonhosted.org/packages/7a/bd/973e6963fd65793fc64f9ad9f6c92d9a035616f0bb0acfc47d1a59a7de81/convertbng-0.6.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "85548b93ea9e4c3a60a9464a4b1bda52", "sha256": "7bd78faa8ab8baf07a1d1383b250f0335dee2c5c6fc0ac760e158ecd7d7bb591" }, "downloads": -1, "filename": "convertbng-0.6.6-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "85548b93ea9e4c3a60a9464a4b1bda52", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13951044, "upload_time": "2018-12-12T17:25:09", "url": "https://files.pythonhosted.org/packages/83/1c/b3d3491848b095385bbbbcd9b4ba05c3f7937559fd14ad7485a57443a66f/convertbng-0.6.6-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6fb8617eab7327305b03841324c621b6", "sha256": "b7c6715a238cfd6759ee167bee878e5fe4ecbf4382ded0871b523018ea9c173b" }, "downloads": -1, "filename": "convertbng-0.6.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "6fb8617eab7327305b03841324c621b6", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13783294, "upload_time": "2018-12-12T17:25:14", "url": "https://files.pythonhosted.org/packages/c1/70/74c8e409b8e399d1dbb7057d7935df9f43432074245a7b635f6d08aaabf8/convertbng-0.6.6-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "3c37a8186475b26217d5d0219f209c50", "sha256": "b4a549e2be977d0abeeeb6eeb07ee082388683f7f3bf8671f5d9d1c4c2ae32a8" }, "downloads": -1, "filename": "convertbng-0.6.6-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "3c37a8186475b26217d5d0219f209c50", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13945716, "upload_time": "2018-12-12T17:25:19", "url": "https://files.pythonhosted.org/packages/3c/76/c31e91bcebb161f27e1f31876f6f090e1718a8c7832752c1b07d679883ac/convertbng-0.6.6-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "640924659ae438c75527986ba0a15cc7", "sha256": "5171c82ace9b8c9eeecd12d9bda74fe15c069cfd490aa2a79b72c5774e951dee" }, "downloads": -1, "filename": "convertbng-0.6.6-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "640924659ae438c75527986ba0a15cc7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13741591, "upload_time": "2018-12-12T17:25:24", "url": "https://files.pythonhosted.org/packages/0d/d2/3546fc560e5c53f98a83802b1b4a4ddd82db3b3bfbfc4dc872ab94254f97/convertbng-0.6.6-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c1fc045766ef1305b846ab9c6392f07f", "sha256": "d1f8c02bf4c6b04e0279f80421ad933f69e610653551d30f2f0dce802668ecbb" }, "downloads": -1, "filename": "convertbng-0.6.6-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "c1fc045766ef1305b846ab9c6392f07f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13759496, "upload_time": "2018-12-12T17:25:36", "url": "https://files.pythonhosted.org/packages/a6/f0/7f6f72268767eba3cbd8fd8ed82fdc30c3412ac29ae8063cdadb7c70ce36/convertbng-0.6.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1e6cf8f24912af91be8d4dafe9e89ccb", "sha256": "998002a4c4730c2612a795acca67f8be4d104a2137f57dd29a09e203a732b6d0" }, "downloads": -1, "filename": "convertbng-0.6.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "1e6cf8f24912af91be8d4dafe9e89ccb", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13785036, "upload_time": "2018-12-12T17:25:42", "url": "https://files.pythonhosted.org/packages/7e/8e/451d5131e1d4b3995b01f4f753c77e8ce0969ac5d9819ff65edae94d1716/convertbng-0.6.6-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "728ba9e56b01ea5db1e0de250bd2d86e", "sha256": "1fc6cc2c28433790ec37791969f1351861d748ef1b3cbcbb544c351475256ae8" }, "downloads": -1, "filename": "convertbng-0.6.6-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "728ba9e56b01ea5db1e0de250bd2d86e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13949574, "upload_time": "2018-12-12T17:25:48", "url": "https://files.pythonhosted.org/packages/d8/eb/2958785f5c49f14a2aa619c72333474423818497d0589d6ef652577a1282/convertbng-0.6.6-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "31db2a6953a7aac924fad6b7a308d399", "sha256": "c978798b2814c44579cde376b8dde48d6c0311afaa5747543123765ec873fd3f" }, "downloads": -1, "filename": "convertbng-0.6.6-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "31db2a6953a7aac924fad6b7a308d399", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13737075, "upload_time": "2018-12-12T17:25:53", "url": "https://files.pythonhosted.org/packages/d8/5a/3b73ab4a80ad2895b362496db0e513af8b2c79f543d91bafa80a1e38ec45/convertbng-0.6.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8d8d5073a836ff878fce0af1bd86cc62", "sha256": "e30b5753856fa45b55aa38330c42a465cd747b1c982a072ed8f00d83de8e51b9" }, "downloads": -1, "filename": "convertbng-0.6.6-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "8d8d5073a836ff878fce0af1bd86cc62", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13755205, "upload_time": "2018-12-12T17:25:59", "url": "https://files.pythonhosted.org/packages/1d/34/c944ece3f2c6033462bedc1bc84c36205a730e16d89066bd98e2c8ba8b7f/convertbng-0.6.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8d03377625f6902ca801212e301eb8e3", "sha256": "2ab6cdd8d922637ff4b177898901c0fd998eed98356c4f7b91f25b945d2a027b" }, "downloads": -1, "filename": "convertbng-0.6.6-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "8d03377625f6902ca801212e301eb8e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13784946, "upload_time": "2018-12-12T17:26:05", "url": "https://files.pythonhosted.org/packages/39/da/c9a1eb5d32006eaaa828d17e2bc094d69b8af2b8002e11dc98eadc43672c/convertbng-0.6.6-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2064b731cd89399bcbc0e71a44efbd88", "sha256": "ca41509da1535d2104d991e4a08dc7d7fb6f545d9366dbf6694bc24998dab2fd" }, "downloads": -1, "filename": "convertbng-0.6.6-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "2064b731cd89399bcbc0e71a44efbd88", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13948828, "upload_time": "2018-12-12T17:26:10", "url": "https://files.pythonhosted.org/packages/9a/24/9e4171aaedd87b6d36fcd5929579ef374143f50c5f5d52bad971d6de4d06/convertbng-0.6.6-cp37-cp37m-manylinux1_x86_64.whl" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "48f3ec78294e829f64e433f9b132c015", "sha256": "dda77bec896ec8b4e34a9d7e09e9a14ec212b72002c9b0d82d8464cf79592a0a" }, "downloads": -1, "filename": "convertbng-0.6.9-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "48f3ec78294e829f64e433f9b132c015", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13793593, "upload_time": "2019-01-19T11:31:38", "url": "https://files.pythonhosted.org/packages/d9/e3/95643b1b96a399bad2eb9b9ef8c703431769d8b0c5b9887a2afb71a75ecc/convertbng-0.6.9-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e40d4f9d816b155d6a30dbc9b7b34302", "sha256": "2c8cb94b1362f9640c9ae867f44c464ef60ed3f0d37ca52017ef49cf7b237bd7" }, "downloads": -1, "filename": "convertbng-0.6.9-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "e40d4f9d816b155d6a30dbc9b7b34302", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13931085, "upload_time": "2019-01-19T11:32:04", "url": "https://files.pythonhosted.org/packages/eb/ea/f49ac2755d52d3cf8347ad5293cf3604c5ecb0ceaf77ece7a257d33bda51/convertbng-0.6.9-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5f535d54976677e84b4aaac51f7bcac6", "sha256": "2a67393ff4364429f871a08a4482a4eb234ce4d13b24063768a4686984b12244" }, "downloads": -1, "filename": "convertbng-0.6.9-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "5f535d54976677e84b4aaac51f7bcac6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13739210, "upload_time": "2019-01-19T11:31:47", "url": "https://files.pythonhosted.org/packages/8d/1b/e6d783d300ccf1cac3650cae1393d163b645f571e15a1e65d8f0007be0e2/convertbng-0.6.9-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "98b96a112460b869bf325bd4d8631636", "sha256": "c3b30c7247599668140ab707c4ee6969438d70f22399c24df238f24912d87509" }, "downloads": -1, "filename": "convertbng-0.6.9-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "98b96a112460b869bf325bd4d8631636", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13755632, "upload_time": "2019-01-19T11:31:55", "url": "https://files.pythonhosted.org/packages/54/fe/2ad249aafa37abf5b0dc3bb09b4673a80b0e1a1535bc56a0a900733d2021/convertbng-0.6.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d603b58f1b787f18d9f01974240b0b1e", "sha256": "c6dd320c0f7035d67400400ea92ee7219ebb05bf9669d8c02ea4fa647e6ed157" }, "downloads": -1, "filename": "convertbng-0.6.9-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "d603b58f1b787f18d9f01974240b0b1e", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13948592, "upload_time": "2019-01-19T11:32:12", "url": "https://files.pythonhosted.org/packages/68/db/5db3b12100c0c7d79fc7a62975aa832ce5b03199ccf76e99f590aaae35ab/convertbng-0.6.9-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "d6e93191fef7ba3b42200006abdf9c75", "sha256": "84d4b2d829181f52460939bf418fc208e61c7e3bbf1ef64d3b93c345b9f1f0e3" }, "downloads": -1, "filename": "convertbng-0.6.9-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "d6e93191fef7ba3b42200006abdf9c75", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13787456, "upload_time": "2019-01-19T11:32:21", "url": "https://files.pythonhosted.org/packages/2c/26/daab9b9e2b21e9739ffafe5e7b7597ac990b5c02cc2909b39949199cf374/convertbng-0.6.9-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "29b31e6eb248e1fac2306cecaab65d77", "sha256": "f0837d5474451e5c445e9ead5b670768aa2bf9943acdae0b97112c9ea5c99bbf" }, "downloads": -1, "filename": "convertbng-0.6.9-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "29b31e6eb248e1fac2306cecaab65d77", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13949024, "upload_time": "2019-01-19T11:32:31", "url": "https://files.pythonhosted.org/packages/f9/11/d4cbfec478d738bae0fc4ad6524922ba8fcf756fd657563da98d3e1b1dd5/convertbng-0.6.9-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "167a66cf92eaf3d9645ce73793835096", "sha256": "9d915d7ed10c71b26d4ac1d4726fc9c299840002323f00ef28b62b9e6b8b8a1d" }, "downloads": -1, "filename": "convertbng-0.6.9-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "167a66cf92eaf3d9645ce73793835096", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13743706, "upload_time": "2019-01-19T11:32:48", "url": "https://files.pythonhosted.org/packages/8b/9b/fbfee8fcb0cfc4f717808dd56f4cf39a361fb3374f3275c284a418890d4b/convertbng-0.6.9-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "50a3e8974e29145e04e0278bc01fd0e1", "sha256": "e2e2f147002c991e45b6dec87de2d7a45bfa29452be310a4af68fd332ad096ad" }, "downloads": -1, "filename": "convertbng-0.6.9-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "50a3e8974e29145e04e0278bc01fd0e1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13761569, "upload_time": "2019-01-19T11:32:56", "url": "https://files.pythonhosted.org/packages/c4/c3/cdda66e18351ff8dfc94e64b2a9db6acafe8a5c7c5330cf44dff5e264209/convertbng-0.6.9-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f02520372da9a852efc7bfe6a66dc510", "sha256": "d99b31fe0e578584e3c71ce9a38c056e061b4c5fc40deccc56d0a747ad032c0f" }, "downloads": -1, "filename": "convertbng-0.6.9-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "f02520372da9a852efc7bfe6a66dc510", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13790143, "upload_time": "2019-01-19T11:33:05", "url": "https://files.pythonhosted.org/packages/23/c8/70c4a61932b1557140e7ce2d524c968bfbf447e0fbe85311479b13cfdcb4/convertbng-0.6.9-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0f057ae59cd0f8b7fbd2dfb85a7fa7bd", "sha256": "f9df0962d65318385a12479ca061783ddf23962c12b3adc085f43090a77ee279" }, "downloads": -1, "filename": "convertbng-0.6.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "0f057ae59cd0f8b7fbd2dfb85a7fa7bd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13952912, "upload_time": "2019-01-19T11:33:15", "url": "https://files.pythonhosted.org/packages/32/21/08dac36eb1659d92f1a674796226729c1fb7b10d3e0b1718c875e2e48b14/convertbng-0.6.9-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a32809c4ae711a02079ee7859bd87abd", "sha256": "7c79211973b6b149836da867716885a81bd68d88152c9f5940ae6dfb3fb2d72f" }, "downloads": -1, "filename": "convertbng-0.6.9-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "a32809c4ae711a02079ee7859bd87abd", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13739442, "upload_time": "2019-01-19T11:33:25", "url": "https://files.pythonhosted.org/packages/79/4e/f34878d86b8a33d5ccb21653a9989dfdfce4979b2e3f694907fab36ef0cd/convertbng-0.6.9-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e6d226d69260b72c4da65a459d3259b3", "sha256": "8da5bd2c9fcfcb0daf6a3678b6c53f5846f0f9cf276f0239d770a78a450e27b7" }, "downloads": -1, "filename": "convertbng-0.6.9-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "e6d226d69260b72c4da65a459d3259b3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13757460, "upload_time": "2019-01-19T11:33:35", "url": "https://files.pythonhosted.org/packages/99/75/9c039ff4009c7d3325935810fa218193180708ad87c041f5018a8485fef9/convertbng-0.6.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d09e3cb67dd5699693d2947b78280338", "sha256": "88623764db4109bca72050a95c6ef802dea09acf12dad5bac2677a89fb07570c" }, "downloads": -1, "filename": "convertbng-0.6.9-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "d09e3cb67dd5699693d2947b78280338", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13790190, "upload_time": "2019-01-19T11:33:45", "url": "https://files.pythonhosted.org/packages/99/c6/1f4f14d3f39177856bb181ce3bfae9cdc58e0afb92d37a7c4a9582949870/convertbng-0.6.9-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "29ad9d217c0ab3f07aae6a7f9b1f1cab", "sha256": "c142c54e143248fd4d2b21be03ef031a207371cf97c4dd56371fd8421fc38567" }, "downloads": -1, "filename": "convertbng-0.6.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "29ad9d217c0ab3f07aae6a7f9b1f1cab", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13951315, "upload_time": "2019-01-19T11:33:59", "url": "https://files.pythonhosted.org/packages/6b/32/a9dca0c089c97200594ba73a013ca720640d018a79ed034e48100e57e723/convertbng-0.6.9-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e7a05e95cbc3aac5be9d0210faa4cc32", "sha256": "66ac79b22c43cec5a0ba0149db210235d5e2272aab55ac869866551bb1bd838b" }, "downloads": -1, "filename": "convertbng-0.6.9-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "e7a05e95cbc3aac5be9d0210faa4cc32", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13757504, "upload_time": "2019-01-19T11:34:14", "url": "https://files.pythonhosted.org/packages/40/c0/69ac97a119293b5ab81f146c588126827394cedc4c245a8d870f519d7237/convertbng-0.6.9-cp37-cp37m-win_amd64.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6cc89fa0dcc421d755269cec305758f8", "sha256": "257cb489fd658f15f4ee0a0942ef19284032a6dcd75a46c3bfe1c2b14c1335da" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "6cc89fa0dcc421d755269cec305758f8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13793682, "upload_time": "2019-04-03T13:32:54", "url": "https://files.pythonhosted.org/packages/19/4b/aaef0eedd71f09d23f78d3804f0c0b2eb428471d1412c03a271824f23599/convertbng-0.6.10-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b0b8283403a3341f4b0b62ec119dd73d", "sha256": "eb8ffc3f70a1a78312be17163706931f0281a638b78af87c004851e3de6973e1" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27mu-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b0b8283403a3341f4b0b62ec119dd73d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13931190, "upload_time": "2019-04-03T13:33:09", "url": "https://files.pythonhosted.org/packages/62/40/d00481cdb9359bc5e8e6eb9e828e8fd7548889b4a67d39fe76fe3f71e5b4/convertbng-0.6.10-cp27-cp27mu-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "8f14c80dbdd664ae3e2054382da7abcb", "sha256": "17cf6dc7cd81fdebd3cc75e49f5f21e9209321f44da7e91e9ff51ae940c2dec1" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-win32.whl", "has_sig": true, "md5_digest": "8f14c80dbdd664ae3e2054382da7abcb", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13739300, "upload_time": "2019-04-03T13:32:59", "url": "https://files.pythonhosted.org/packages/8a/1a/f390f66d45d794ec494ad47cd122349b92b31741d799fe8b1b75be7d4f0c/convertbng-0.6.10-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ced2a8e0b789ca3afd0f324626f266f7", "sha256": "3c1c8e95070ee9eb4be8afc16bc5014905e4137a79e5d52e0a90cca77af6f5fb" }, "downloads": -1, "filename": "convertbng-0.6.10-cp27-cp27m-win_amd64.whl", "has_sig": true, "md5_digest": "ced2a8e0b789ca3afd0f324626f266f7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 13755812, "upload_time": "2019-04-03T13:33:04", "url": "https://files.pythonhosted.org/packages/6a/bf/a4fe5a3af1af3c75b38f5a6076b41a482f58c41cd5da50a0576078507c00/convertbng-0.6.10-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "abe4ebbfd9f0713128582793c0725d76", "sha256": "c14ed1227b9a91c2954accb862474f5074512cfcd24c4c8978572f53ef193344" }, "downloads": -1, "filename": "convertbng-0.6.10-cp34-cp34m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "abe4ebbfd9f0713128582793c0725d76", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 13948678, "upload_time": "2019-04-03T13:33:15", "url": "https://files.pythonhosted.org/packages/a3/17/6447ce035b5a1394861ddafe285631219653becc6cc9fe5d2e1dcbf95bcd/convertbng-0.6.10-cp34-cp34m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0d1a7a2808bb0bb7491c2ad4ebc773de", "sha256": "b0f73918f471a8dcc1d99cc8e28617c200204c9d29e8d910f5fb8fe891971550" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "0d1a7a2808bb0bb7491c2ad4ebc773de", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13787541, "upload_time": "2019-04-03T13:33:21", "url": "https://files.pythonhosted.org/packages/8f/16/879a44b71d7c0aea6a67553433e04a1822be89dbd2e5f249c03c199433e6/convertbng-0.6.10-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "c6e973bad8407bfd2b7a3760cb5e3883", "sha256": "d477903f301a2eb2bca3f80af9800155eedc3572d534811107df5dac2d951fce" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "c6e973bad8407bfd2b7a3760cb5e3883", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13949122, "upload_time": "2019-04-03T13:33:27", "url": "https://files.pythonhosted.org/packages/a3/81/26fe70de35556dd7dac846aaef70c627f4ef1961d06c72265c9fad4c4636/convertbng-0.6.10-cp35-cp35m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1a446780190ee9a19e7f81d7e82f9d1e", "sha256": "05eb091bec896d9432ced826c45a4dff18cffe9163250ca2097035b996e9f31e" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-win32.whl", "has_sig": true, "md5_digest": "1a446780190ee9a19e7f81d7e82f9d1e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13743798, "upload_time": "2019-04-03T13:33:32", "url": "https://files.pythonhosted.org/packages/51/cb/49acb4f9f3ca734239b57585b5cc6c5bb978cc3afd880c6ac7d787e74936/convertbng-0.6.10-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c06004c3057a9eaf47d8cac2418efd4c", "sha256": "ca87a70f5b57980e464c08625fab0d669b14dfc8df054a908ae5727bb0c7d5fb" }, "downloads": -1, "filename": "convertbng-0.6.10-cp35-cp35m-win_amd64.whl", "has_sig": true, "md5_digest": "c06004c3057a9eaf47d8cac2418efd4c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 13761663, "upload_time": "2019-04-03T13:33:37", "url": "https://files.pythonhosted.org/packages/32/10/0c8b0908cd6b9287bb0213a625cb2ee7965e76c008f0a2b9fdfe94f65712/convertbng-0.6.10-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a0895b4037cac6f3efd3a0f67e92a0d4", "sha256": "80f74b4ac3cd4a48779f88c4cec224d8ca74f4c524ebe5cac52891f8545f045a" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "a0895b4037cac6f3efd3a0f67e92a0d4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13790232, "upload_time": "2019-04-03T13:33:42", "url": "https://files.pythonhosted.org/packages/2b/12/d8072825ab407dca9a186ad49e2462aa9bec4d6b08e78ee0986f9f8ccd93/convertbng-0.6.10-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b5a0359f96dbb3241e9cd9efc2ffdaf9", "sha256": "b8bbe9fbf659f12f34792436e03096873c5b5f7814e9d67fc16a274a8ecdf0a3" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "b5a0359f96dbb3241e9cd9efc2ffdaf9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13952976, "upload_time": "2019-04-03T13:33:47", "url": "https://files.pythonhosted.org/packages/98/e9/83ee5769fbe707384053fa6f4c2409ceea7b523af3d22299c6b4e7c33fe9/convertbng-0.6.10-cp36-cp36m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "131e9a049cc495fdf73c131fb45f1eb9", "sha256": "ea04dc9aa14e2b29d5d19a765318366ca831778a4d7396e0acaf9b4997b69d5b" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-win32.whl", "has_sig": true, "md5_digest": "131e9a049cc495fdf73c131fb45f1eb9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13739529, "upload_time": "2019-04-03T13:33:52", "url": "https://files.pythonhosted.org/packages/e4/ec/b29b43ea0f06fb5ec44505ed88ac9067d5b592d0ddf002127c6581540db0/convertbng-0.6.10-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "d44324299381aa36114ec85b8ee37d24", "sha256": "f0b97483531b17c1c2e6a55761ad3ec6ba55f9e676247ad9dcf485525d15e029" }, "downloads": -1, "filename": "convertbng-0.6.10-cp36-cp36m-win_amd64.whl", "has_sig": true, "md5_digest": "d44324299381aa36114ec85b8ee37d24", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 13757686, "upload_time": "2019-04-03T13:33:56", "url": "https://files.pythonhosted.org/packages/9c/6a/a7289815c53ec170c7ee052fc4e7e627131ef0f665420323f903e9cda441/convertbng-0.6.10-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8140cf15c0f774760b048f73d6275c07", "sha256": "806d0c853f96175d5c17835de2209e03514e9de41fb3c41d0938e9a826c920e8" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl", "has_sig": true, "md5_digest": "8140cf15c0f774760b048f73d6275c07", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13790281, "upload_time": "2019-04-03T13:34:01", "url": "https://files.pythonhosted.org/packages/48/fc/073759ea6d6200a0bf8b85c7cf77435b9309f9131583cbe83c8c7f1330d4/convertbng-0.6.10-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "ed83c12b3a68e24420425f99d12d79d2", "sha256": "2356cec670a84338b191259544241196406c915012c5df63c22d6a2c88f99b39" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": true, "md5_digest": "ed83c12b3a68e24420425f99d12d79d2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13951404, "upload_time": "2019-04-03T13:34:06", "url": "https://files.pythonhosted.org/packages/46/8e/b0ad29da90e764cbb11517cd48132f8dc5550bddd3ba9218028ce700a0ca/convertbng-0.6.10-cp37-cp37m-manylinux1_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "692be5872bffa9e12cfb537892e0a736", "sha256": "d06c7c26dcc782fef016f2d429aa0944d9c66258cd1f2a611857a22a87fd0cde" }, "downloads": -1, "filename": "convertbng-0.6.10-cp37-cp37m-win_amd64.whl", "has_sig": true, "md5_digest": "692be5872bffa9e12cfb537892e0a736", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 13757594, "upload_time": "2019-04-03T13:34:11", "url": "https://files.pythonhosted.org/packages/47/05/28056416d0e222e75b0e964913fcdb92770d246e4bf062758763fe2e143d/convertbng-0.6.10-cp37-cp37m-win_amd64.whl" } ] }