{ "info": { "author": "Stanislav Pidhorskyi", "author_email": "stanislav@podgorskiy.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6" ], "description": "bimpy - bundled imgui for python \n================================\n\n.. |Downloads| image:: https://pepy.tech/badge/bimpy\n :target: https://pepy.tech/project/bimpy\n\n.. |Build| image:: https://travis-ci.org/podgorskiy/bimpy.svg?branch=master\n :target: https://api.travis-ci.com/podgorskiy/bimpy.svg?branch=master\n\n.. |License| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n\n\n:Downloads: |Downloads|\n:Build status: |Build|\n:License: |License|\n\n\n**bimpy** is a python module that provides bindings to `dear imgui `__ and distributed as a self-contained package bundled with `glfw `__ and `gl3w `__.\n\nFeatures:\n\n* Allows to create immediate mode UI with python easily. The API is kept as close to the original dear imgui as possible.\n\n* **bimpy** already has all necessary functionality for window/OpenGL context creation and hides those details from the user.\n\n* **bimpy** supports multiple contexts and allows creating multiple windows. \n\n* **bimpy** works on Windows, GNU Linux, and macOS.\n\n* **bimpy** does not have dependencies and can be easely built from sources. Building relies only on distutils.\n\n* **bimpy** can display images from ndarrays, PIL Images, numpy arrays, etc., \n\nHello-world with bimpy:\n\n.. code:: python\n\n\timport bimpy\n\n\tctx = bimpy.Context()\n\t\t\n\tctx.init(600, 600, \"Hello\")\n\t \n\tstr = bimpy.String()\n\tf = bimpy.Float();\n\t\t\n\twhile(not ctx.should_close()):\n\t\twith ctx: \n\t\t\tbimpy.text(\"Hello, world!\")\n\t\t\t\n\t\t\tif bimpy.button(\"OK\"):\n\t\t\t\tprint(str.value)\n\t\t\t\n\t\t\tbimpy.input_text('string', str, 256)\n\t\t\t\n\t\t\tbimpy.slider_float(\"float\", f, 0.0, 1.0)\n\n\n\n.. figure:: https://i.imgur.com/rL7cFj7.png\n :alt: hello-world\n \n\nDisplay image:\n \n.. code:: python\n\n import bimpy\n from PIL import Image\n\n ctx = bimpy.Context()\n\n ctx.init(800, 800, \"Image\")\n\n image = Image.open(\"test.png\")\n\n im = bimpy.Image(image)\n\n while(not ctx.should_close()):\n with ctx:\n bimpy.text(\"Display PIL Image\")\n\n bimpy.image(im)\n\n\n.. figure:: https://i.imgur.com/wiDGRpr.png\n :alt: hello-world\n\nSimilarly, numpy arrays with 2 dimensions, 3 dimensions (2, 3 or 4 channels) of type **np.uint8** can be displayed.\nMore examples here: https://github.com/podgorskiy/bimpy/blob/master/examples/image.py\n\n\nInstall\n=======\n\nInstallation is easy since the package does not have dependencies:\n\n.. code:: shell\n\n\tpip install bimpy\n\nOr you can build and install from sources:\n\n.. code:: shell\n\n\tpython setup.py install\n\nAll c/c++ sources are built with distutils. All you need is a compiler with C++11 support.\n\nWindows users, who use python 2.7 may encounter problems, because on Windows, python 2.7 uses MSVC 9.0, which doesn't have support for c++11. However, you still can build it with more recent MSVC (for example MSVC 14.0, which is Visual C++ 2015) using the commands below:\n\n.. code:: shell\n\n\tcall \"%VS140COMNTOOLS%\\VsDevCmd.bat\"\n\tset VS90COMNTOOLS=%VS140COMNTOOLS%\n\tpython setup.py install\n\nIf building on Linux, the following dependencies will be needed:\n\n.. code:: shell\n\n\tsudo apt-get install mesa-common-dev libxi-dev libxinerama-dev libxrandr-dev libxcursor-dev\n\n\nHow to use it?\n==============\n\nIntro\n-----\n\n**bimpy** is python binding for `dear imgui `__ and tries to match the C++ API. Also, it has some additional functions to create a window and some other differences.\n\nIt has binding for the most functions from **dear imgui**. All functions are renamed from **CamelCase** to **snake_case**, which is more common for python. For example ``ImGui::InputText`` is mapped to ``bimpy.input_text``.\n\nContext and window\n------------------\n\nFirst of all, you need to import **bimpy**\n\n.. code:: python\n\n\timport bimpy\n\nDistinctively from **dear imgui**, bimpy does not have global state (**dear imgui** has it by default, but it has an option not to have one). So, you will need to create a context.\n\n.. code:: python\n\n\tctx = bimpy.Context(width, height, name)\n\nWhere integers *width* and *height* specify the size of the window, and string *name* is a caption of the window.\n\nAll calls to **bimpy**'s API must be within *with* statement applied to the context object:\n\n.. code:: python\n\n\twith ctx: \n\t\tbimpy.text(\"Hello, world!\")\n\n\nAnd there must be only one *with* statement applied to the context object per frame.\n\nOr, a second option is to manualy call ``ctx.new_frame()`` before all API calls, and then ``ctx.render()`` after.\n\n.. code:: python\n\t\n\tctx.new_frame()\n\tbimpy.text(\"Hello, world!\")\n\tctx.render()\n\n\nYou can have multiple *Context* objects for multiple windows, however, API is not thread-safe.\n\nVariables\n------------------\n\nAll **imgui** API that provides user input (such as *InputText*, *SliderFloat*, etc.) modifies the variable through the reference to it. However, in python, such objects as integers, floats and strings are passed always by value. Because of this, **bimpy** provides special wrappers, that allow passing those variables by reference.\n\nFor example, to use *slider_float*, you will need first to create a variable that will hold the state:\n\n.. code:: python\n\n\tf = bimpy.Float();\n\nYou can access the value in the following way: ``f.value``\n\nTo use it with *slider_float* simply pass it to that function:\n\n.. code:: python\n\n\tbimpy.slider_float(\"float slider\", f, 0.0, 1.0)\n\n\nAll **imgui** input functions that provide multiple inputs, like *SliderFloat2*, *SliderInt4*, *InputInt3*, etc. are mapped to equivalent functions, but instead of passing an array of variables, you need to list all variables in the argument list:\n\n.. code:: python\n\t\n\tf1 = bimpy.Float();\n\tf2 = bimpy.Float();\n\tf3 = bimpy.Float();\n\n\twhile(not ctx.should_close()):\n\t\twith ctx: \n\t\t\tbimpy.slider_float3(\"float\", f1, f2, f3, 0.0, 1.0)\n\nDraw commands\n------------------\nSome draw commands are exposed. In contrast to C++ API, the exposed functions are not methods of **ImDrawList**, but global functions. All drawing functions should be called inside the *begin/end* calls of a window. \n\nList of exposed drawing functions:\n\n.. code:: python\n\n add_circle(centre: _bimpy.Vec2, radius: float, col: int, num_segments: int=12, thickness: float=1.0) -> None\n add_circle_filled(centre: _bimpy.Vec2, radius: float, col: int, num_segments: int=12) -> None\n add_line(a: _bimpy.Vec2, b: _bimpy.Vec2, col: int, thickness: float=1.0) -> None\n add_quad(a: _bimpy.Vec2, b: _bimpy.Vec2, c: _bimpy.Vec2, d: _bimpy.Vec2, col: int, thickness: float=1.0) -> None\n add_quad_filled(a: _bimpy.Vec2, b: _bimpy.Vec2, c: _bimpy.Vec2, d: _bimpy.Vec2, col: int) -> None\n add_rect(a: _bimpy.Vec2, b: _bimpy.Vec2, col: int, rounding: float=0.0, rounding_corners_flags: int=Corner.All, thickness: float=1.0) -> None\n add_rect_filled(a: _bimpy.Vec2, b: _bimpy.Vec2, col: int, rounding: float=0.0, rounding_corners_flags: int=Corner.All) -> None\n add_rect_filled_multicolor(a: _bimpy.Vec2, b: _bimpy.Vec2, col_upr_left: int, col_upr_right: int, col_bot_right: int, col_bot_lefs: int) -> None\n add_triangle(a: _bimpy.Vec2, b: _bimpy.Vec2, c: _bimpy.Vec2, col: int, thickness: float=1.0) -> None\n add_triangle_filled(a: _bimpy.Vec2, b: _bimpy.Vec2, c: _bimpy.Vec2, col: int) -> None\n\nSimple usage example below:\n\n.. figure:: https://i.imgur.com/MU5Vhfl.png\n :alt: hello-world\n\n.. code:: python\n\n\timport bimpy\n\timport numpy as np\n\n\tctx = bimpy.Context()\n\n\tctx.init(1200, 1200, \"Draw Commands Test\")\n\n\twith ctx:\n\t\tbimpy.themes.set_light_theme()\n\n\tDATA_POINTS = bimpy.Int(30)\n\tCLASTERS = bimpy.Int(4)\n\n\tstd = bimpy.Float(0.5)\n\n\tcolors = [0x4b19e6, 0x4bb43c, 0x19e1ff, 0xc88200, 0x3182f5, 0xb41e91, 0xf0f046, 0xf032e6, 0xd2f53c,\n\t\t\t 0xfabebe, 0x008080, 0xe6beff, 0xaa6e28, 0xfffac8, 0x800000, 0xaaffc3, 0x808000, 0xffd8b1,\n\t\t\t 0x000080, 0x808080, 0xFFFFFF, 0x000000]\n\n\tdatapoints = []\n\n\n\tdef generate_fake_data():\n\t\tdatapoints.clear()\n\t\tfor i in range(CLASTERS.value):\n\t\t\tx = np.random.normal(size=(DATA_POINTS.value, 2))\n\t\t\talpha = np.random.rand()\n\t\t\tscale = std.value * np.random.rand(2) * np.eye(2, 2)\n\t\t\tposition = np.random.rand(2) * 5\n\t\t\trotation = np.array([[np.cos(alpha), np.sin(alpha)], [-np.sin(alpha), np.cos(alpha)]])\n\t\t\tx = np.matmul(x, scale)\n\t\t\tx = np.matmul(x, rotation)\n\t\t\tx += position\n\t\t\tdatapoints.append((x, rotation, position, scale))\n\n\taxis = x = np.array([[-1, 0], [1, 0], [0, -1], [0, 1]])\n\n\twhile not ctx.should_close():\n\t\tctx.new_frame()\n\n\t\tbimpy.set_next_window_pos(bimpy.Vec2(20, 20), bimpy.Condition.Once)\n\t\tbimpy.set_next_window_size(bimpy.Vec2(800, 600), bimpy.Condition.Once)\n\t\tbimpy.begin(\"Drawings\")\n\n\t\twindow_pos = bimpy.get_window_pos()\n\n\t\tcenter = bimpy.Vec2(100, 100) + window_pos\n\t\tm = 100.0\n\t\tfor i in range(len(datapoints)):\n\t\t\t(x, R, P, S) = datapoints[i]\n\n\t\t\tfor j in range(x.shape[0]):\n\t\t\t\tpoint = bimpy.Vec2(x[j, 0], x[j, 1])\n\t\t\t\tbimpy.add_circle_filled(point * m + center, 5, 0xAF000000 + colors[i], 100)\n\n\t\t\taxis_ = np.matmul(axis, S * 2.0)\n\t\t\taxis_ = np.matmul(axis_, R) + P\n\n\t\t\tbimpy.add_line(\n\t\t\t\tcenter + bimpy.Vec2(axis_[0, 0], axis_[0, 1]) * m,\n\t\t\t\tcenter + bimpy.Vec2(axis_[1, 0], axis_[1, 1]) * m,\n\t\t\t\t0xFFFF0000, 1)\n\n\t\t\tbimpy.add_line(\n\t\t\t\tcenter + bimpy.Vec2(axis_[2, 0], axis_[2, 1]) * m,\n\t\t\t\tcenter + bimpy.Vec2(axis_[3, 0], axis_[3, 1]) * m,\n\t\t\t\t0xFFFF0000, 1)\n\n\t\tbimpy.end()\n\n\t\tbimpy.set_next_window_pos(bimpy.Vec2(20, 640), bimpy.Condition.Once)\n\t\tbimpy.set_next_window_size(bimpy.Vec2(800, 140), bimpy.Condition.Once)\n\t\tbimpy.begin(\"Controls\")\n\n\t\tbimpy.input_int(\"Data points count\", DATA_POINTS)\n\t\tbimpy.input_int(\"Clasters count\", CLASTERS)\n\n\t\tbimpy.slider_float(\"std\", std, 0.0, 3.0)\n\n\t\tif bimpy.button(\"Generate data\"):\n\t\t\tgenerate_fake_data()\n\n\t\tbimpy.end()\n\n\t\tctx.render()\n\n\nAcknowledgements\n================\n\n* robobuggy https://github.com/gfannes\n* njazz https://github.com/njazz\n* Florian Rott https://github.com/sauberfred", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/podgorskiy/bimpy", "keywords": "imgui ui", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "bimpy", "package_url": "https://pypi.org/project/bimpy/", "platform": "", "project_url": "https://pypi.org/project/bimpy/", "project_urls": { "Homepage": "https://github.com/podgorskiy/bimpy" }, "release_url": "https://pypi.org/project/bimpy/0.0.13/", "requires_dist": null, "requires_python": "", "summary": "bimpy - bundled imgui for python", "version": "0.0.13" }, "last_serial": 5310393, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "1f65b2cfafac820006664194ba34e390", "sha256": "e799facf29b3a18f800e43c11859f3f6786508cf0a74603ddaaf89e8c072af01" }, "downloads": -1, "filename": "bimpy-0.0.10-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "1f65b2cfafac820006664194ba34e390", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 534575, "upload_time": "2018-10-07T02:15:53", "url": "https://files.pythonhosted.org/packages/ce/8a/08677bac68c9d902358818d170d2f70d05f65d10aa7161cb8c6d5ad56c24/bimpy-0.0.10-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6cee90e1b603ce2877c0d40b6bb102e0", "sha256": "3c5fdfae8641ffaed1cec63d319113fc33d999d24be34b0b61759d91cc0aa14b" }, "downloads": -1, "filename": "bimpy-0.0.10-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6cee90e1b603ce2877c0d40b6bb102e0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 625478, "upload_time": "2018-10-07T02:15:55", "url": "https://files.pythonhosted.org/packages/a2/e3/cc642a0fe7d3b43d856b6cf66444ff6e98925e8d1ea68b404e8a34ca2642/bimpy-0.0.10-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d03105b6611a3c153c8320cf3143a8f5", "sha256": "edd2e7500c54a5a308d3f3a8c666b08deff9b28763a68029c391c32954650125" }, "downloads": -1, "filename": "bimpy-0.0.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "d03105b6611a3c153c8320cf3143a8f5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 546113, "upload_time": "2018-10-07T02:15:56", "url": "https://files.pythonhosted.org/packages/85/24/ecabed173011d1b8f3f8a6790832d96316ec30055212045c55064d908582/bimpy-0.0.10-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "badfc621f5c6be994e7af1529fbc11b2", "sha256": "1eef81cb6b341546adb54409b95ab4f562c493132e0d15c143c3724d76a572f2" }, "downloads": -1, "filename": "bimpy-0.0.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "badfc621f5c6be994e7af1529fbc11b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 643838, "upload_time": "2018-10-07T02:15:58", "url": "https://files.pythonhosted.org/packages/a8/7b/02dadd9ebdb6216a9ebc22469e0b46dece8d1d8fe017eb78891c339c8f99/bimpy-0.0.10-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0737e86697718c7d764d77210ecc185f", "sha256": "aaa9010a616987bd165aed9f6caf4a62c033fd524c3d0dc178acddba99e5fec6" }, "downloads": -1, "filename": "bimpy-0.0.10.tar.gz", "has_sig": false, "md5_digest": "0737e86697718c7d764d77210ecc185f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917357, "upload_time": "2018-10-07T02:16:02", "url": "https://files.pythonhosted.org/packages/9a/f7/82ab0a7529f99f262e77af578c79d3bbcc25fe7e75f6c3d30778666259ef/bimpy-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "8d205af6177fe990f6c68265644a04b1", "sha256": "93336a4bb3c482cee8e05064ee7f8a121e46c7b56fd3fed315e9f22040241e78" }, "downloads": -1, "filename": "bimpy-0.0.11-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "8d205af6177fe990f6c68265644a04b1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 542903, "upload_time": "2018-11-02T19:13:40", "url": "https://files.pythonhosted.org/packages/86/e0/3d87e5627c916420701119ea4f3cf80781f057c9848d51a55a65cc5762c7/bimpy-0.0.11-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a4c1ea855218c710bf0d37b6042bad4a", "sha256": "3239efef8aeadfaf94c4339ebcfbe82f57a2fd057dd0c156468606c37ff1def3" }, "downloads": -1, "filename": "bimpy-0.0.11-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "a4c1ea855218c710bf0d37b6042bad4a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 635907, "upload_time": "2018-11-02T19:13:42", "url": "https://files.pythonhosted.org/packages/a0/3e/3b90e51a6b41028a533ea7fc48947e8f03c60e5b2bd2b857e92c78323018/bimpy-0.0.11-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9845e126b82d42b2be2744cf02d65cc4", "sha256": "7bf882f2e12c711dcdac237653ae826c3b4fd18f36e52f4304f1e0a144be563f" }, "downloads": -1, "filename": "bimpy-0.0.11-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9845e126b82d42b2be2744cf02d65cc4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 556156, "upload_time": "2018-11-02T19:13:44", "url": "https://files.pythonhosted.org/packages/ff/6a/3b8edf1ccb78e5c81dbf194e7a7c21d1b5c9d6090fe4b3220108507fc1fc/bimpy-0.0.11-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "83aca97847c99ec0d15be230ffc3b54a", "sha256": "a5100499c954a9bc69bd82b72f781cc17e626a0409919ae704fec6d96f4e645f" }, "downloads": -1, "filename": "bimpy-0.0.11-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "83aca97847c99ec0d15be230ffc3b54a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 660386, "upload_time": "2018-11-02T19:13:45", "url": "https://files.pythonhosted.org/packages/31/f4/f391489bbec36b0d8cfebed7eeaef164446680d8d30273bf126e33b8347e/bimpy-0.0.11-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ffc2be7bb9cedd746e0b85dd8ada9c6", "sha256": "18a127830e9ba06663a6d3f52bffdeba53afffcaf0cebc517a2bbd88d5dee4cd" }, "downloads": -1, "filename": "bimpy-0.0.11.tar.gz", "has_sig": false, "md5_digest": "7ffc2be7bb9cedd746e0b85dd8ada9c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 918634, "upload_time": "2018-11-02T19:13:47", "url": "https://files.pythonhosted.org/packages/fb/c3/8cd000af8f07058e3f6c70c6381b678c723f8800ccbc8979b42f81be425b/bimpy-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "bacfa10d7fab6fee28e503cc5fa3fbcd", "sha256": "2b054aabec8036759dd30fc537d3a88fb0286af2730bd775d552822759cb95bf" }, "downloads": -1, "filename": "bimpy-0.0.12-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "bacfa10d7fab6fee28e503cc5fa3fbcd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 561922, "upload_time": "2019-05-02T07:53:58", "url": "https://files.pythonhosted.org/packages/4e/2a/3f4ce85266919bd83976f6a6106ff2698ddc925223fa59eba0a59ac14082/bimpy-0.0.12-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "63d4fc54a041c81afa1ea7114b271f53", "sha256": "1ddc340867d2f852a68c0e75517a99eeafdd8de3bba0924eed7a2604bffb2b05" }, "downloads": -1, "filename": "bimpy-0.0.12-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "63d4fc54a041c81afa1ea7114b271f53", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 657316, "upload_time": "2019-05-02T07:54:00", "url": "https://files.pythonhosted.org/packages/7f/8d/2bdaac33686cf4f5f51ddc2197cd127744002970423c9ecaf5e5765acb5b/bimpy-0.0.12-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6f9b6e072dfa5a448a7dffe34edf077e", "sha256": "131dad7eddf4ecd3cdd1e7290c31e5a0652ef65ede301f7adf8c65467dbba88a" }, "downloads": -1, "filename": "bimpy-0.0.12-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6f9b6e072dfa5a448a7dffe34edf077e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 575018, "upload_time": "2019-05-02T07:54:02", "url": "https://files.pythonhosted.org/packages/79/67/5c608c4d90067329d7049073496ba7cc014d01181fcd3c7b2cb9d50f37b2/bimpy-0.0.12-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "35fdd1e125df78d0c3971dbdef575737", "sha256": "ee05e8452b76ecdaa2f1c145239e4c380f837cdf1f979508dec27723fce5bbb8" }, "downloads": -1, "filename": "bimpy-0.0.12-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "35fdd1e125df78d0c3971dbdef575737", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 685853, "upload_time": "2019-05-02T07:54:04", "url": "https://files.pythonhosted.org/packages/cf/32/00a62ef83718aac2c79abfdcf896f0dd7734a7f5854777373a594f3d6908/bimpy-0.0.12-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4641776e6b58b4e3b99f9187524098ef", "sha256": "b508366dfc72198d61373feea169989dccb1b6f23fbb8d08d22e521c445544f4" }, "downloads": -1, "filename": "bimpy-0.0.12-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "4641776e6b58b4e3b99f9187524098ef", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 575135, "upload_time": "2019-05-02T08:05:24", "url": "https://files.pythonhosted.org/packages/57/a5/1d70fb5c512d4b819b2224cb76d428b826e67506b9932222f1a0d32c8ca9/bimpy-0.0.12-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8d9db87b10fd1910b1c75b30cd5272ae", "sha256": "e133bdf019d0e563a5b45e8c0eb7e0dba6b70b50d36495569dcf101862bc37ba" }, "downloads": -1, "filename": "bimpy-0.0.12-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8d9db87b10fd1910b1c75b30cd5272ae", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 693307, "upload_time": "2019-05-02T08:26:43", "url": "https://files.pythonhosted.org/packages/6c/89/27fd74c757312246f16af78aa9d804e0491b91f4b62cfa9fc2787dfff645/bimpy-0.0.12-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5e1aa6aca544bc1339e31483f9915560", "sha256": "103d272c980c467b0c04d184a76ca008bd9b0a425e29486664828724da9ca844" }, "downloads": -1, "filename": "bimpy-0.0.12.tar.gz", "has_sig": false, "md5_digest": "5e1aa6aca544bc1339e31483f9915560", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 926201, "upload_time": "2019-05-02T07:54:05", "url": "https://files.pythonhosted.org/packages/f3/a5/a017ba611c0713687bcf4cb74e49642249dc9e9b6a2bc57f92c96cf15c43/bimpy-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "443fc7cb5b84bf16142ea55a084eaee5", "sha256": "047b8b1853ed02175a404888de8c04284f0b0e82496c576110b41929cd356278" }, "downloads": -1, "filename": "bimpy-0.0.13-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "443fc7cb5b84bf16142ea55a084eaee5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5719300, "upload_time": "2019-05-24T02:39:53", "url": "https://files.pythonhosted.org/packages/49/d7/b9775f16ffd113de46ef93c089a839780be79dbec6771b4615b3049665b1/bimpy-0.0.13-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "51bb24a096490da8ca961947075b4714", "sha256": "3b83d08af1904772f6ff5ef3f6535b5f528b9730c73cd39ea10f4aae2edd5cd2" }, "downloads": -1, "filename": "bimpy-0.0.13-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "51bb24a096490da8ca961947075b4714", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5719442, "upload_time": "2019-05-24T02:39:55", "url": "https://files.pythonhosted.org/packages/b4/89/4f2745b55e7a77c1da49db6c36a0a50445cd0c3cf56af3a148d02f4a1eae/bimpy-0.0.13-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1501fe9626c58358bd302618b571ec0d", "sha256": "20bb05132f21d20195ea9b69ba1b70a002bb596a5ee70d601f4cb25ed6172f06" }, "downloads": -1, "filename": "bimpy-0.0.13-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1501fe9626c58358bd302618b571ec0d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5877628, "upload_time": "2019-05-24T02:39:58", "url": "https://files.pythonhosted.org/packages/b0/36/4927c0cc2f70ee8546eb84aa5e35876073671fb70b1f58545461725d3676/bimpy-0.0.13-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "25bfbfba7c11c23a1ab3bf10438c66b0", "sha256": "ec465161b5be18c198f3d81b5ae4e377a0d49103e74706b32ebc0c46d927cc2c" }, "downloads": -1, "filename": "bimpy-0.0.13-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "25bfbfba7c11c23a1ab3bf10438c66b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5898475, "upload_time": "2019-05-24T02:40:01", "url": "https://files.pythonhosted.org/packages/d5/53/365372e5db844599526d082db4374168b935becb0e095b240f9483fb5f75/bimpy-0.0.13-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a08830bf0c93d3119ae443c83b0d3275", "sha256": "6db5455b046d742d43c09c4078677f8404918fe8800e9d4256f66ba070dfc20e" }, "downloads": -1, "filename": "bimpy-0.0.13-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a08830bf0c93d3119ae443c83b0d3275", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5898895, "upload_time": "2019-05-24T02:40:04", "url": "https://files.pythonhosted.org/packages/83/8d/69868b08f61fb111f6486d77d5b9a912fb821208a64463a6bf2b431b72a7/bimpy-0.0.13-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a04a63e90197937bfb89ce57f6fb22a5", "sha256": "74afabd7ea560ba13603aa3868a5e62dd2e41609ab98408771a971a3fef4d4f2" }, "downloads": -1, "filename": "bimpy-0.0.13-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a04a63e90197937bfb89ce57f6fb22a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5901186, "upload_time": "2019-05-24T02:40:06", "url": "https://files.pythonhosted.org/packages/5d/46/dca8a2c17a171776573eb621504d097dc841d729a499e66dd184a08215d3/bimpy-0.0.13-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b88ad6e6a40994e7e66f15a540c8989", "sha256": "dff22f7b5060380e009ff2cfbb956d68a75c3b6e75fe7138341637ebb71215f7" }, "downloads": -1, "filename": "bimpy-0.0.13.tar.gz", "has_sig": false, "md5_digest": "0b88ad6e6a40994e7e66f15a540c8989", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928148, "upload_time": "2019-05-02T22:27:50", "url": "https://files.pythonhosted.org/packages/14/fa/42436e13fab38bacb11abb7fdbce26d6cf6e9e308358bd7802879a0ea207/bimpy-0.0.13.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "4860cfd8ba4b49bfd2307bd21beaccd6", "sha256": "45fa0a7f9f2fe403e1dffdf4c72f7389214e74797d56d1fdf41ad4cea4a46b11" }, "downloads": -1, "filename": "bimpy-0.0.5-cp27-cp27m-macosx_10_12_intel.whl", "has_sig": false, "md5_digest": "4860cfd8ba4b49bfd2307bd21beaccd6", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1661340, "upload_time": "2018-01-21T07:35:35", "url": "https://files.pythonhosted.org/packages/ae/61/3d15324a81fa7eb33c26d37d3e85f804966545d1af43e28101e7a7be09f4/bimpy-0.0.5-cp27-cp27m-macosx_10_12_intel.whl" }, { "comment_text": "", "digests": { "md5": "ef6995d077a2306b6b7d5970c70cf9fc", "sha256": "52d39ee01b129a644578891cab39ba54731d4e40cc3fde385eef303046ac482e" }, "downloads": -1, "filename": "bimpy-0.0.5-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ef6995d077a2306b6b7d5970c70cf9fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 470197, "upload_time": "2018-01-21T07:30:01", "url": "https://files.pythonhosted.org/packages/09/48/b7d6eb733b5bd669c90f649a8a00cb844fa68be4434324fb8c8320ce72da/bimpy-0.0.5-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b31e05251476903c0e6417752335990c", "sha256": "acb14723472582a515f807af464e04e3b25a860a5c0694236e49fec00f95fcd6" }, "downloads": -1, "filename": "bimpy-0.0.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b31e05251476903c0e6417752335990c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 552537, "upload_time": "2018-01-21T07:30:02", "url": "https://files.pythonhosted.org/packages/35/74/3b3c64be8c85c82c0d2616a21217505df3dbba2c1dfab81bc8058ff69a39/bimpy-0.0.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "addb3eb023fbf21b667c708b86acccff", "sha256": "6e36975dd549da4a7f3f98837122b7729e707632e0de9faedab78ae0ee6ea278" }, "downloads": -1, "filename": "bimpy-0.0.5-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "addb3eb023fbf21b667c708b86acccff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 480352, "upload_time": "2018-01-21T07:30:04", "url": "https://files.pythonhosted.org/packages/9f/49/02734cba902dced9620e6bafe7f8b351018097356798e01ec92f8a93520c/bimpy-0.0.5-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "fe195e2f125bb13074eb552078c1a183", "sha256": "291d446989dd9d6d557bd0b1c8ef5a77ff9ce7b385478ac5755cf3a8e0a48cf5" }, "downloads": -1, "filename": "bimpy-0.0.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "fe195e2f125bb13074eb552078c1a183", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 570501, "upload_time": "2018-01-21T07:30:06", "url": "https://files.pythonhosted.org/packages/49/d1/2e7ff4bd29e88c55a8721eabf91e1c3487b29e4952cf9fd910a66b0fd0ca/bimpy-0.0.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0bbb53cbb2a51a582c07c09a0d296506", "sha256": "4873985e73bd3018eb84b9e9edfcda6833b83e34838832c0a245692cc7d2244e" }, "downloads": -1, "filename": "bimpy-0.0.5-py2.7-win-amd64.egg", "has_sig": false, "md5_digest": "0bbb53cbb2a51a582c07c09a0d296506", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 559690, "upload_time": "2018-02-20T21:13:56", "url": "https://files.pythonhosted.org/packages/5b/ff/49806f4a06f274ab75936b030842732ae625908ad5f183f4a14522f88a97/bimpy-0.0.5-py2.7-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "4f146051c2b6ab49fc839d11bad35d93", "sha256": "33c9902f3ea3d9874eea200c742e0aa79ecb45ad6bf8911975ade91940258c8d" }, "downloads": -1, "filename": "bimpy-0.0.5-py3.6-win-amd64.egg", "has_sig": false, "md5_digest": "4f146051c2b6ab49fc839d11bad35d93", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 584246, "upload_time": "2018-02-20T21:14:00", "url": "https://files.pythonhosted.org/packages/95/92/0b1bf30342f886e34e8fcf468a688f1558d31ea430c3f7b44d114910fff0/bimpy-0.0.5-py3.6-win-amd64.egg" }, { "comment_text": "", "digests": { "md5": "afd6b57426733e0bda649eea1a6f5be7", "sha256": "14fb2ec3216f6a41692c3e91f4d0add46e59023dcd08c925d2dcd86b9d5d4932" }, "downloads": -1, "filename": "bimpy-0.0.5.tar.gz", "has_sig": false, "md5_digest": "afd6b57426733e0bda649eea1a6f5be7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 798839, "upload_time": "2018-01-21T07:30:09", "url": "https://files.pythonhosted.org/packages/4d/ed/4a6f19bb7c497cfddeb6e3729d74e9923d95c86a6dbee5de015a0f984d71/bimpy-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "a74b97477b55451ba6720562936b36a0", "sha256": "4087eacf5b6d20b7ffdb0b37f67946c8138901c206be5fee1f560df3d9fe3d35" }, "downloads": -1, "filename": "bimpy-0.0.6-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "a74b97477b55451ba6720562936b36a0", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 476408, "upload_time": "2018-02-20T21:13:45", "url": "https://files.pythonhosted.org/packages/57/31/ff7b2d94391d6c3fae970741236edc33f47bfb4727f8ecbf22938cc43f05/bimpy-0.0.6-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e1380c23c3f59a8a65a6177d95344777", "sha256": "3b9859681cb52d04a8c7e7d9eca90a44eb8246ea283cf049aab76ddfa121effe" }, "downloads": -1, "filename": "bimpy-0.0.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e1380c23c3f59a8a65a6177d95344777", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 560621, "upload_time": "2018-02-20T21:13:47", "url": "https://files.pythonhosted.org/packages/c3/46/f3b49c942a302865434fc21b5b08d0680b4fe5f012ea210924f35499cc9d/bimpy-0.0.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "03b2e12cb89d1d69d82d2c1105c5b39a", "sha256": "2e63ba0d73c00681054f493ae079c85ee121074d35966ed12f47d1a34197d457" }, "downloads": -1, "filename": "bimpy-0.0.6-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "03b2e12cb89d1d69d82d2c1105c5b39a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 488810, "upload_time": "2018-02-20T21:13:50", "url": "https://files.pythonhosted.org/packages/f3/ca/0db842a98b93d5c57b4b446ef278307ae0e35a9d86e1a39a69e969f68889/bimpy-0.0.6-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1c89723c8c090e6555a4fbc74399cbe1", "sha256": "809fd2312a626a56003a388dd4c8a98158445f0a5cbe575dfd594efc6fbffe1a" }, "downloads": -1, "filename": "bimpy-0.0.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "1c89723c8c090e6555a4fbc74399cbe1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 580013, "upload_time": "2018-02-20T21:13:52", "url": "https://files.pythonhosted.org/packages/0a/cd/029160f3101d8399ee26b69b99912927de25a2ff142117a24d32823b504f/bimpy-0.0.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "45adf43a7a8896c1a18266456d7901e6", "sha256": "c32287c15bc205332d6840c3c25dd0a747b1ed03763aead030fa8a53cd2f8890" }, "downloads": -1, "filename": "bimpy-0.0.6.tar.gz", "has_sig": false, "md5_digest": "45adf43a7a8896c1a18266456d7901e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 799837, "upload_time": "2018-02-20T21:14:08", "url": "https://files.pythonhosted.org/packages/d4/bc/b92382154598fdb7f8fbb6237a4f72208249c539e73cc37122eb7f72eaa5/bimpy-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "ba0aa1f84d4ab955b9d1c7d5bfd38a5c", "sha256": "da3ec982a9718f82ba7c6e326ad98ac40e918b4206cf9e2546753a5e15375433" }, "downloads": -1, "filename": "bimpy-0.0.7-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "ba0aa1f84d4ab955b9d1c7d5bfd38a5c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 479429, "upload_time": "2018-03-22T18:22:23", "url": "https://files.pythonhosted.org/packages/f9/a5/419955c80d42345e10dda206a8827229b3ed6e97b2e6b17b6069ed005f1b/bimpy-0.0.7-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "bbdd61d06aecf82d767af29ddcbb23ae", "sha256": "9e9578645aeeab4875b78764deebc73a0c70ba4ea6e3a1ae75a6f6d4fa71a3c6" }, "downloads": -1, "filename": "bimpy-0.0.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "bbdd61d06aecf82d767af29ddcbb23ae", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 564730, "upload_time": "2018-03-22T18:22:25", "url": "https://files.pythonhosted.org/packages/1e/aa/dd27d70cecf08b4501bd2a9ffc991b26ba691e3e002d53d5878a9af54085/bimpy-0.0.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "96599b438090de96331ca45dcb837bc8", "sha256": "e3e5ce0f0fca8a9b6f795df8849811c522a95ba1b2895db4b3380f45b814f77f" }, "downloads": -1, "filename": "bimpy-0.0.7-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "96599b438090de96331ca45dcb837bc8", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 489961, "upload_time": "2018-03-22T18:10:56", "url": "https://files.pythonhosted.org/packages/e6/ca/bb58816613d0620b2fbaa3206d13352011d0faedef3d26ebb16e3bb02ac2/bimpy-0.0.7-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "997a5c7e333a416eb827c79224ca188b", "sha256": "b74d3a7be65d585efa21b5ab3b0ee4f07cdbdcb25a36520f011dac8aef9f0378" }, "downloads": -1, "filename": "bimpy-0.0.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "997a5c7e333a416eb827c79224ca188b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 581140, "upload_time": "2018-03-22T18:10:59", "url": "https://files.pythonhosted.org/packages/12/b0/4a32f3e92684c41db87601c473e6b7c209117e241fb0c31132cae1340505/bimpy-0.0.7-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7a9b7ebee819868a5e8000ed6667ca61", "sha256": "1a5c61e743a64e4f6a1b395c725a586c5d04ccd62773167d42bdbd7440727226" }, "downloads": -1, "filename": "bimpy-0.0.7.tar.gz", "has_sig": false, "md5_digest": "7a9b7ebee819868a5e8000ed6667ca61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 803043, "upload_time": "2018-03-22T18:11:38", "url": "https://files.pythonhosted.org/packages/7d/d9/62c8ac23a2f72c31d180f27d2d2aa11babd716df013d6a5ba85cdf62c458/bimpy-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "a05b3f0d30ecea7ed65208214b64cfea", "sha256": "e6a432a473ed347d936071b2e47c39cf3953160b73e7ba2bf469343ebeab4baa" }, "downloads": -1, "filename": "bimpy-0.0.8-cp27-cp27m-macosx_10_12_intel.whl", "has_sig": false, "md5_digest": "a05b3f0d30ecea7ed65208214b64cfea", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 898698, "upload_time": "2018-06-19T15:46:20", "url": "https://files.pythonhosted.org/packages/06/9f/7e3f0699d672847f92ceb3827a26906c9170dfc3fe50dbc7aacb6404a2ec/bimpy-0.0.8-cp27-cp27m-macosx_10_12_intel.whl" }, { "comment_text": "", "digests": { "md5": "bfa65a431776b000e983d8b268a82636", "sha256": "96d90945c9eb1e3c3504c64def25b9eafa4ec4838bcdd6f392640f9262ee0fe7" }, "downloads": -1, "filename": "bimpy-0.0.8-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "bfa65a431776b000e983d8b268a82636", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 479966, "upload_time": "2018-06-19T15:11:50", "url": "https://files.pythonhosted.org/packages/23/38/c51f5292ceb989237b9bc0c52333c6221462522561bdde6cd26f703cfaae/bimpy-0.0.8-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e5685c6237858565dd6271d4acf88d34", "sha256": "58c74afd098e96aa7e25b238ca70ecd28e845e1c4d96d682e1c944535c13f0be" }, "downloads": -1, "filename": "bimpy-0.0.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e5685c6237858565dd6271d4acf88d34", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 565542, "upload_time": "2018-06-19T15:11:51", "url": "https://files.pythonhosted.org/packages/8b/ec/8ea66bf6749567e59ba422d61dec4ea8e255f76ba9a82ed338efb33a5421/bimpy-0.0.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0f3732b5dd6612f4dbbb9a6af63a01ee", "sha256": "4cb3b7e37bc8161fdce581d3846f16aecb2d75f452a7925673afa793356189c7" }, "downloads": -1, "filename": "bimpy-0.0.8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "0f3732b5dd6612f4dbbb9a6af63a01ee", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 490810, "upload_time": "2018-06-19T15:11:53", "url": "https://files.pythonhosted.org/packages/40/bf/a15004ba30f38441c19b9e03e689c89a40b1177a74e04c636e7f3fa092be/bimpy-0.0.8-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "673bc5c70f5a03ebf4bc32b5ccef7d3c", "sha256": "c43141a12cb3c9245d6c84e007035281e878be5bca806b3441600d2781036b9b" }, "downloads": -1, "filename": "bimpy-0.0.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "673bc5c70f5a03ebf4bc32b5ccef7d3c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 581742, "upload_time": "2018-06-19T15:11:54", "url": "https://files.pythonhosted.org/packages/0d/57/05f34880754199665e2adf215a770db66694e31b53ed08dd42087c0adff0/bimpy-0.0.8-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "91ba5c5978d2fd84643ea465dfe9e5b0", "sha256": "008edbbd854d7539067f2dbe54a89bbc0a848b394196b77078f717f292b27235" }, "downloads": -1, "filename": "bimpy-0.0.8.tar.gz", "has_sig": false, "md5_digest": "91ba5c5978d2fd84643ea465dfe9e5b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 805161, "upload_time": "2018-06-19T15:10:39", "url": "https://files.pythonhosted.org/packages/c6/0d/796f1723a4ed7afb7857cde884315897c0b0d57affdbf31ff20f0c35a4cf/bimpy-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "384665da34422c2395045f0e0895670c", "sha256": "97efdfae6a81a283ffd7b0e14e8745cc1ad0654740fdbf45a93d797bc963c5cb" }, "downloads": -1, "filename": "bimpy-0.0.9-cp27-cp27m-win32.whl", "has_sig": false, "md5_digest": "384665da34422c2395045f0e0895670c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 534447, "upload_time": "2018-10-07T02:03:52", "url": "https://files.pythonhosted.org/packages/21/03/788fa72f1fe16a8e3b4d8c16dabcf7953cc16272aa0fc7b95a8386d97cc3/bimpy-0.0.9-cp27-cp27m-win32.whl" }, { "comment_text": "", "digests": { "md5": "61ca00ab70e445d881dd881f1c8bc604", "sha256": "3b19686cddf528d3cf9862bfb85db3d34b7e52cb6ba29b9d0128379d31818690" }, "downloads": -1, "filename": "bimpy-0.0.9-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "61ca00ab70e445d881dd881f1c8bc604", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 625351, "upload_time": "2018-10-07T02:03:54", "url": "https://files.pythonhosted.org/packages/a9/8b/9b35d5068b633669361158d582434e99741f3bf2d82ec0686f659e33178e/bimpy-0.0.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8034545d7a8b8e36f1a525b9e842b73c", "sha256": "24d041b2299e356df24e067ab618ad07ce913eff7135d9879d8bbe94f163da27" }, "downloads": -1, "filename": "bimpy-0.0.9-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8034545d7a8b8e36f1a525b9e842b73c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 546101, "upload_time": "2018-10-07T02:03:55", "url": "https://files.pythonhosted.org/packages/e4/91/2d47d7deb2bf78c98d9fa93a7572f38c07415a0b0c05e25ad2ce9ed59ffc/bimpy-0.0.9-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "45434f8f3754f5255a13d7ae41a2832e", "sha256": "afd8680ff2729b60475b1e661ebd7e6960818a81a011e0950d5d3ee4c2221a93" }, "downloads": -1, "filename": "bimpy-0.0.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "45434f8f3754f5255a13d7ae41a2832e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 643822, "upload_time": "2018-10-07T02:03:57", "url": "https://files.pythonhosted.org/packages/20/99/839eff2b756344750cede8c172eed6750255719cf6f7acf75d21173b8fc0/bimpy-0.0.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3fc41420456c4f70fb305a478db5013e", "sha256": "11af139ed285ea84a74787e4ba4fcf86e75ca2bac27dac138465c088cd48522c" }, "downloads": -1, "filename": "bimpy-0.0.9.tar.gz", "has_sig": false, "md5_digest": "3fc41420456c4f70fb305a478db5013e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 917132, "upload_time": "2018-10-07T02:16:04", "url": "https://files.pythonhosted.org/packages/3c/24/8a306e415b3cef43bde3dcc081344194e22243b1205f02653afad777cc46/bimpy-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "443fc7cb5b84bf16142ea55a084eaee5", "sha256": "047b8b1853ed02175a404888de8c04284f0b0e82496c576110b41929cd356278" }, "downloads": -1, "filename": "bimpy-0.0.13-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "443fc7cb5b84bf16142ea55a084eaee5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5719300, "upload_time": "2019-05-24T02:39:53", "url": "https://files.pythonhosted.org/packages/49/d7/b9775f16ffd113de46ef93c089a839780be79dbec6771b4615b3049665b1/bimpy-0.0.13-cp27-cp27m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "51bb24a096490da8ca961947075b4714", "sha256": "3b83d08af1904772f6ff5ef3f6535b5f528b9730c73cd39ea10f4aae2edd5cd2" }, "downloads": -1, "filename": "bimpy-0.0.13-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "51bb24a096490da8ca961947075b4714", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 5719442, "upload_time": "2019-05-24T02:39:55", "url": "https://files.pythonhosted.org/packages/b4/89/4f2745b55e7a77c1da49db6c36a0a50445cd0c3cf56af3a148d02f4a1eae/bimpy-0.0.13-cp27-cp27mu-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "1501fe9626c58358bd302618b571ec0d", "sha256": "20bb05132f21d20195ea9b69ba1b70a002bb596a5ee70d601f4cb25ed6172f06" }, "downloads": -1, "filename": "bimpy-0.0.13-cp34-cp34m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1501fe9626c58358bd302618b571ec0d", "packagetype": "bdist_wheel", "python_version": "cp34", "requires_python": null, "size": 5877628, "upload_time": "2019-05-24T02:39:58", "url": "https://files.pythonhosted.org/packages/b0/36/4927c0cc2f70ee8546eb84aa5e35876073671fb70b1f58545461725d3676/bimpy-0.0.13-cp34-cp34m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "25bfbfba7c11c23a1ab3bf10438c66b0", "sha256": "ec465161b5be18c198f3d81b5ae4e377a0d49103e74706b32ebc0c46d927cc2c" }, "downloads": -1, "filename": "bimpy-0.0.13-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "25bfbfba7c11c23a1ab3bf10438c66b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 5898475, "upload_time": "2019-05-24T02:40:01", "url": "https://files.pythonhosted.org/packages/d5/53/365372e5db844599526d082db4374168b935becb0e095b240f9483fb5f75/bimpy-0.0.13-cp35-cp35m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a08830bf0c93d3119ae443c83b0d3275", "sha256": "6db5455b046d742d43c09c4078677f8404918fe8800e9d4256f66ba070dfc20e" }, "downloads": -1, "filename": "bimpy-0.0.13-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a08830bf0c93d3119ae443c83b0d3275", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 5898895, "upload_time": "2019-05-24T02:40:04", "url": "https://files.pythonhosted.org/packages/83/8d/69868b08f61fb111f6486d77d5b9a912fb821208a64463a6bf2b431b72a7/bimpy-0.0.13-cp36-cp36m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a04a63e90197937bfb89ce57f6fb22a5", "sha256": "74afabd7ea560ba13603aa3868a5e62dd2e41609ab98408771a971a3fef4d4f2" }, "downloads": -1, "filename": "bimpy-0.0.13-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a04a63e90197937bfb89ce57f6fb22a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 5901186, "upload_time": "2019-05-24T02:40:06", "url": "https://files.pythonhosted.org/packages/5d/46/dca8a2c17a171776573eb621504d097dc841d729a499e66dd184a08215d3/bimpy-0.0.13-cp37-cp37m-manylinux2010_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0b88ad6e6a40994e7e66f15a540c8989", "sha256": "dff22f7b5060380e009ff2cfbb956d68a75c3b6e75fe7138341637ebb71215f7" }, "downloads": -1, "filename": "bimpy-0.0.13.tar.gz", "has_sig": false, "md5_digest": "0b88ad6e6a40994e7e66f15a540c8989", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 928148, "upload_time": "2019-05-02T22:27:50", "url": "https://files.pythonhosted.org/packages/14/fa/42436e13fab38bacb11abb7fdbce26d6cf6e9e308358bd7802879a0ea207/bimpy-0.0.13.tar.gz" } ] }