{ "info": { "author": "Python Discord", "author_email": "staff@pythondiscord.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "django-simple-bulma\n===================\n[![Build Status](https://dev.azure.com/python-discord/Python%20Discord/_apis/build/status/Django%20Simple%20Bulma?branchName=master)](https://dev.azure.com/python-discord/Python%20Discord/_build/latest?definitionId=7?branchName=master)\n[![Discord](https://discordapp.com/api/guilds/267624335836053506/embed.png)](https://discord.gg/2B963hn)\n\n`django-simple-bulma` is a Django application that makes [Bulma](https://bulma.io) and [Bulma-Extensions](https://wikiki.github.io/) available to use in your Django project with as little setup as possible. The goal of this project is to make it as easy as possible to use Bulma with Django.\n\nThis project currently uses **Bulma v0.7.2**, **Bulma-Extensions v4.0.0**, and **FontAwesome v5.6.3**. If you want features that are only available in newer versions of these frameworks, please [create an issue](https://github.com/python-discord/django-simple-bulma/issues), and we will be happy to update it.\n\nInstallation\n------------\nTo get `django-simple-bulma`, up and running for your Django project, follow these simple steps:\n- Install it from PyPI with `pip install django-simple-bulma` (or add it to your [Pipfile](https://pipenv.readthedocs.io/en/latest/))\n- In your Django projects `settings.py` file:\n - Add `django_simple_bulma` to your `INSTALLED_APPS`\n ```python\n INSTALLED_APPS = [\n #...\n 'django_simple_bulma',\n #...\n ]\n ``` \n - Add `django_simple_bulma.finders.SimpleBulmaFinder` to your `STATICFILES_FINDERS`. This normally holds two default handlers that you will probably want to keep, so unless you have any other custom Finders, it should look like this:\n ```python\n STATICFILES_FINDERS = [\n # First add the two default Finders, since this will overwrite the default.\n 'django.contrib.staticfiles.finders.FileSystemFinder',\n 'django.contrib.staticfiles.finders.AppDirectoriesFinder',\n\n # Now add our custom SimpleBulma one.\n 'django_simple_bulma.finders.SimpleBulmaFinder',\n ]\n ```\n- Run `python manage.py collectstatic` command in order to build Bulma and move it to your `staticfiles` folder. Please note that you will need to use this command every time you make a change to the configuration, as this is the only way to rebuild the Bulma css file. If you are not using `collectstatic`, [read up on it](https://stackoverflow.com/questions/34586114/whats-the-point-of-djangos-collectstatic) and [start using it](https://docs.djangoproject.com/en/2.1/ref/contrib/staticfiles/). \n\n This app works fine with [Whitenoise](http://whitenoise.evans.io/en/stable/), which is a great way to serve static files without needing to mess with your webserver.\n\n`django-simple-bulma` should now be working! In order to import it into your template, first load the app with `{% load django_simple_bulma %}`, and then use the `{% bulma %}` template tag. If you're planning on using icons, you should also import FontAwesome by using `{% font_awesome %}`.\n ```html\n \n \n {% load django_simple_bulma %}\n {% bulma %}\n {% font_awesome %}\n \n \n ```\n- You're all set! Any Bulma classes you apply should now be working!\n\nCustomization\n-------------\nBulma looks nice by default, but most users will want to customize its look and feel. For this, we've provided a super simple way to change the [Bulma variables](https://bulma.io/documentation/customize/variables/) and to choose which [Bulma extensions](https://wikiki.github.io/) you want to load into your project.\n\nIn order to do this, we'll simply create a dictionary inside your `settings.py` called `BULMA_SETTINGS`, and configure it there. Here's an example of what that looks like:\n```python\n# Custom settings for django-simple-bulma\nBULMA_SETTINGS = {\n \"extensions\": [\n \"bulma-accordion\",\n \"bulma-calendar\",\n ],\n \"variables\": {\n \"primary\": \"#000000\",\n \"size-1\": \"6rem\",\n }\n}\n```\n\nYou may here define any variable found on the [Bulma variables](https://bulma.io/documentation/customize/variables/) page, and you may use any valid SASS or CSS as the value. For example, `hsl(217, 71%, 53%)` would be a valid value for a color variable, as would `#ffff00`. Please note that any syntactically incorrect values may prevent Bulma from building correctly, so be careful what you add here unless you know exactly what you're doing.\n\nIf the `extensions` key is not found, it will default to loading **all extensions**. If you don't want any extensions, simply set it to an empty list.\n\nAdditional scripts\n------------------\nFor your convenience, we also give you the option to add other quality of life improvements to your Bulma app. If you are not specifying any extensions in `BULMA_SETTINGS`, these will all be loaded by default. If you are, you may want to add these as well if they sound useful to you.\n\n* `bulma-fileupload` will handle displaying the filename in your [file upload inputs](https://bulma.io/documentation/form/file/).\n* `bulma-navbar-burger` will hook up your `navbar-burger`s and `navbar-menu`s automatically, to provide a toggle for mobile users. We use a slightly updated version of [the example from Bulma's documentation](https://bulma.io/documentation/components/navbar/#navbarJsExample) - simply add a `data-target` attribute to your `navbar-burger` that refers to the `id` of the `navbar-menu` that should be expanded and collapsed by the button.\n* `bulma-notifications` will allow you to close [notifications](https://bulma.io/documentation/elements/notification/) by clicking on the X button.\n\nAdditional functionality\n------------------------\n\nIf you're writing custom SCSS for your application, `django-simple-bulma` does provide a very basic mechanism for compiling\nit for you. This is provided because, currently, `django-simple-bulma` will cause issues with current Django apps that exist\nto compile SCSS for you.\n\nTo use this feature, please specify the `custom_css` key when defining your `BULMA_SETTINGS`. This should be a list\nof strings, containing relative paths to `.scss` files to be compiled.\n\n```python\nBULMA_SETTINGS = {\n \"custom_scss\": [\n \"myapp/static/css/base/base.scss\"\n ],\n}\n```\n\n**Please note**: The default Django behavior when collecting static files is to keep the containing file structure for\nthem when they're copied over to the final static files directory. We attempt to do the same thing by parsing the given\npath to your `.scss` file, using the following strategy:\n\n* If a containing path exists in the `STATICFILES_DIRS` setting, assume that this is the base path to use, and the\n directory structure below it will be used to contain the resulting `.css` file\n* Otherwise, if the path contains `static/`, assume that the base path ends there and use the rest of the path\n below it to contain the resulting `.css` file.\n\nIf both of these strategies fail to figure out what base path to use, an exception will be raised.\n\nTroubleshooting\n---------------\n\n- If you have the module `sass` installed, please note that it is incompatible with this project. There is a namespace conflict between `sass` and `libsass` which will make `django-simple-bulma` crash when you attempt to do a `collectstatic`. To solve this, just uninstall `sass` and use `libsass` instead. \n\nIf you run into any other problems with this app, please [create an issue](https://github.com/python-discord/django-simple-bulma/issues), and we will be happy to help you with it. Alternatively, head over to our discord server at https://discord.gg/python and we'll help you figure it out over chat.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/python-discord/django-simple-bulma", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-simple-bulma", "package_url": "https://pypi.org/project/django-simple-bulma/", "platform": "", "project_url": "https://pypi.org/project/django-simple-bulma/", "project_urls": { "Homepage": "https://github.com/python-discord/django-simple-bulma" }, "release_url": "https://pypi.org/project/django-simple-bulma/1.1.8/", "requires_dist": [ "Django (>=2.0)", "libsass", "flake8 ; extra == 'dev'", "flake8-bugbear ; extra == 'dev'", "flake8-import-order ; extra == 'dev'", "flake8-tidy-imports ; extra == 'dev'", "flake8-todo ; extra == 'dev'", "flake8-type-annotations ; extra == 'dev'", "flake8-string-format ; extra == 'dev'", "pdoc ; extra == 'dev'", "pre-commit ; extra == 'dev'", "PyGithub ; extra == 'dev'", "wheel ; extra == 'dev'" ], "requires_python": "", "summary": "Django application to add the Bulma CSS framework and its extensions", "version": "1.1.8" }, "last_serial": 5247804, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "314adbc64e96c11c78f7acaf6aa95f67", "sha256": "a4458de5f187a7f9bf34ff542996eb711f07b4d00e1acfa855446fa63dca6c82" }, "downloads": -1, "filename": "django_simple_bulma-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "314adbc64e96c11c78f7acaf6aa95f67", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1581, "upload_time": "2018-12-16T16:32:36", "url": "https://files.pythonhosted.org/packages/ba/3d/8f98a3df20907ddba8e478bba6f012706263b633ce02e74d7a9368155f4e/django_simple_bulma-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "165802d72c2aff931caa203a3cde5673", "sha256": "8218f813c950154a26db1387fefbd65ae9d68b891d38b6cacf74d35abae07a72" }, "downloads": -1, "filename": "django-simple-bulma-0.0.1.tar.gz", "has_sig": false, "md5_digest": "165802d72c2aff931caa203a3cde5673", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1494, "upload_time": "2018-12-16T16:32:38", "url": "https://files.pythonhosted.org/packages/e5/21/6883cc6179c06c0aec9270877ad2eb00ed199a7158d4cd710b32647c518a/django-simple-bulma-0.0.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "2cbe6004012664f8b908426f6251bae3", "sha256": "50145f52e9dea67634938ce1feacf4bbdf649feb94f998349ec2675fe0bbac5f" }, "downloads": -1, "filename": "django_simple_bulma-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2cbe6004012664f8b908426f6251bae3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7481, "upload_time": "2018-12-19T12:11:47", "url": "https://files.pythonhosted.org/packages/9f/65/da4acdcb8ed2d61932038da8adb05155cd3e863172c97cd641db28518fbb/django_simple_bulma-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cbd0d3572d993190393e9bc751d1b48", "sha256": "75825421ba257f5187c7c8230dd2ba9fffd15821c30561c9fad6ec10e729ff30" }, "downloads": -1, "filename": "django-simple-bulma-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4cbd0d3572d993190393e9bc751d1b48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5669, "upload_time": "2018-12-19T12:11:49", "url": "https://files.pythonhosted.org/packages/e2/97/d47cfc1380f1d2325d9e017ebc6feb3fd63fa5d1ac264b5eec199e56b027/django-simple-bulma-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "b7b1cf8c0b447f5c4d688b4639daf69d", "sha256": "9a7c4fb23c70da695deafc6c2889f0253f0e375d07875726c1ec680c61d3c80d" }, "downloads": -1, "filename": "django_simple_bulma-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b7b1cf8c0b447f5c4d688b4639daf69d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 227933, "upload_time": "2018-12-19T12:59:31", "url": "https://files.pythonhosted.org/packages/d7/0c/a759c8d45b29ea945a18bfac216107c5b328bc5db1deeb90864ca7af5e1a/django_simple_bulma-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cabb28e88af5270dd6bc1dd4ae581403", "sha256": "af93b25c66252b3deb77e20b0bc62b5713cb943b04a8c1963c071afd1b692ad1" }, "downloads": -1, "filename": "django-simple-bulma-1.0.1.tar.gz", "has_sig": false, "md5_digest": "cabb28e88af5270dd6bc1dd4ae581403", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184343, "upload_time": "2018-12-19T12:59:33", "url": "https://files.pythonhosted.org/packages/fb/96/696f4ed7ec6d3ff3a897803ea03992bbe429b0ff988f4b64a2a8c246af47/django-simple-bulma-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "01b47541f168272e7238461698a19eeb", "sha256": "372dc2948aa5118aaa58327f64103dd41dfa39d0056479ff8314448d55a8197a" }, "downloads": -1, "filename": "django_simple_bulma-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "01b47541f168272e7238461698a19eeb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 227939, "upload_time": "2018-12-19T13:20:25", "url": "https://files.pythonhosted.org/packages/d0/21/83927188a4ccfd708bec0fb5e7333d5de076d17cdcbec4613bf88907c801/django_simple_bulma-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88e8eb64c1f822e74bd8a1c8d70885ef", "sha256": "7893471a0e1697a483e9640a451a6490b43540a65682399ff762d497aea9f65e" }, "downloads": -1, "filename": "django-simple-bulma-1.0.2.tar.gz", "has_sig": false, "md5_digest": "88e8eb64c1f822e74bd8a1c8d70885ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184334, "upload_time": "2018-12-19T13:20:27", "url": "https://files.pythonhosted.org/packages/9e/85/79969a65f7575ffce4f2d95a1e152ee362d0bff41a2df75528abf8daaa4e/django-simple-bulma-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "643affe74c638be066e736457cdf794a", "sha256": "649ad261eab91bc2a08df2bd5c6ac8179eb5a64d5848660fc097c23270e7363c" }, "downloads": -1, "filename": "django_simple_bulma-1.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "643affe74c638be066e736457cdf794a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 227924, "upload_time": "2018-12-24T11:36:22", "url": "https://files.pythonhosted.org/packages/6e/8d/c99b95c0fbe31ad01f9d134906ff23ed4eba5cf9d5072c047aa46ca499b8/django_simple_bulma-1.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "476ef23843b8247f1ad8f9e262bf28bb", "sha256": "fa0aa8679eb3b57f7f9066f7bf3a51d54bcea283dd8beaa5ddb6d266de9750ed" }, "downloads": -1, "filename": "django-simple-bulma-1.0.3.tar.gz", "has_sig": false, "md5_digest": "476ef23843b8247f1ad8f9e262bf28bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184316, "upload_time": "2018-12-24T11:36:24", "url": "https://files.pythonhosted.org/packages/29/47/87980989eab6e5e33ce6de56522d697ee4964a9827d40d7a071e33edf2e5/django-simple-bulma-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "fc83213f126810a8705fad1ee64c0f2a", "sha256": "c116e80c9cb75dd25177e6a8fe675f36d0cf60d55783b7151b113ce906528006" }, "downloads": -1, "filename": "django_simple_bulma-1.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fc83213f126810a8705fad1ee64c0f2a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 227928, "upload_time": "2018-12-26T17:43:15", "url": "https://files.pythonhosted.org/packages/55/0c/0a440555943b72a5dc088b151eb33581ba18fa3567167b209b32ba727e69/django_simple_bulma-1.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "890f374a419f2fae1c0250abbd8fae9e", "sha256": "262900af83213f3ce68fc0920a5827fb71f8a9aded9e9283d52f73325735ff12" }, "downloads": -1, "filename": "django-simple-bulma-1.0.4.tar.gz", "has_sig": false, "md5_digest": "890f374a419f2fae1c0250abbd8fae9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184319, "upload_time": "2018-12-26T17:43:17", "url": "https://files.pythonhosted.org/packages/b0/ce/376f4d00eb6ded0e8d16bf4bb16a87bd9b03393e39fd0730edb0d91c819c/django-simple-bulma-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "1468705c1947b86cc995548a30c4e011", "sha256": "cc5043dc6da72df5109093d65bb8c304150bf8ad40d9014f0d48a7411b76d93f" }, "downloads": -1, "filename": "django_simple_bulma-1.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "1468705c1947b86cc995548a30c4e011", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 228577, "upload_time": "2018-12-28T20:47:47", "url": "https://files.pythonhosted.org/packages/f8/eb/0da60d4c32dc7f7490dc1804fcfb10d3e8382413c10d257bdb384705ecd0/django_simple_bulma-1.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ed893fa1afb94d6e35e405563b435b9", "sha256": "a1ef7f067d3adeb1db572b4a13db1920279e2bbd26600e7ed2b07b172cdbde0c" }, "downloads": -1, "filename": "django-simple-bulma-1.0.5.tar.gz", "has_sig": false, "md5_digest": "3ed893fa1afb94d6e35e405563b435b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184848, "upload_time": "2018-12-28T20:47:49", "url": "https://files.pythonhosted.org/packages/2b/8d/ae5ddb5c3c707cf1bf628bae408d127bdd084c61e874d851a2a5680ac3e3/django-simple-bulma-1.0.5.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "8f88463571f9674c0b1efcb32970f476", "sha256": "2a80b020830c7753fb37d1056a1aa7b3613345543241c8efc6fafa2ddde7e609" }, "downloads": -1, "filename": "django_simple_bulma-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8f88463571f9674c0b1efcb32970f476", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229013, "upload_time": "2019-01-04T12:42:36", "url": "https://files.pythonhosted.org/packages/f7/0b/ce69e3a84c447b2606d9045ac3dfe977d061000ecc52ee0df25ffa749a94/django_simple_bulma-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "100b88ddc35d4b81ff178e0b3ace6fe1", "sha256": "1d70983a55901075f5b67baeb371da3e8f8a58a3b33705e9f236bf2aa98f180a" }, "downloads": -1, "filename": "django-simple-bulma-1.1.0.tar.gz", "has_sig": false, "md5_digest": "100b88ddc35d4b81ff178e0b3ace6fe1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185058, "upload_time": "2019-01-04T12:42:38", "url": "https://files.pythonhosted.org/packages/0c/5f/4967201c874bc2fd84d625358c4a3e07ef6ddb3f1fe72f91b40ace0d9655/django-simple-bulma-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "612f44dc78f602d7b752f163331f3444", "sha256": "7570455905cac91919102293eb227d068b6f2be00b6116171b8c6616628e9351" }, "downloads": -1, "filename": "django_simple_bulma-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "612f44dc78f602d7b752f163331f3444", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229080, "upload_time": "2019-01-13T13:52:21", "url": "https://files.pythonhosted.org/packages/04/3c/2cf9a8dd111eef5fa05048b0b97a16906eecd66f5fc7782b2d8e1aaa8906/django_simple_bulma-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2469627372672eccdd7ef4031f802667", "sha256": "7e1a9cdd3aad6cb2de9b578aa798445447f74d8e7c18af7258c82dd33f672a2e" }, "downloads": -1, "filename": "django-simple-bulma-1.1.1.tar.gz", "has_sig": false, "md5_digest": "2469627372672eccdd7ef4031f802667", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185140, "upload_time": "2019-01-13T13:52:23", "url": "https://files.pythonhosted.org/packages/8b/4e/18329047fe6a7779a55a7a354eafba29c4c29517d96ca010fd59549d9587/django-simple-bulma-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "8dc7c7662fa5729d86d5a0f4c6b95a68", "sha256": "f03155827caf19e2802c26d237c0f7e2f5f0cdd4bff312870bbfcfcd15457583" }, "downloads": -1, "filename": "django_simple_bulma-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8dc7c7662fa5729d86d5a0f4c6b95a68", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229474, "upload_time": "2019-01-13T14:27:55", "url": "https://files.pythonhosted.org/packages/3c/ed/0fb0e1b06dc71bf54bc2300b38a4f828c7210fb267e4817827ef65e691a2/django_simple_bulma-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b1caa2450721de880e7640fcd7b172f", "sha256": "0d89ee5ca161cdf30cb4f6329955c7b6445d6c380f596ebdaddfde09bfbb0d08" }, "downloads": -1, "filename": "django-simple-bulma-1.1.2.tar.gz", "has_sig": false, "md5_digest": "4b1caa2450721de880e7640fcd7b172f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 185642, "upload_time": "2019-01-13T14:27:57", "url": "https://files.pythonhosted.org/packages/2f/de/d35e65f4d1137f8ad0a13ec926ae0e4f4a70163217b9a54e1bdcd7899e80/django-simple-bulma-1.1.2.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "e21ba8c6a1b86f045e1302a639e425d7", "sha256": "0d48411974115aedca51313174895fae605d1040db8fe70d715d372f2fcb898d" }, "downloads": -1, "filename": "django_simple_bulma-1.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "e21ba8c6a1b86f045e1302a639e425d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229815, "upload_time": "2019-02-09T00:14:00", "url": "https://files.pythonhosted.org/packages/c3/f9/99e526b3facab6932824467bde9c88fc90b4336ad8a3c000f4fe1c115f98/django_simple_bulma-1.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ed5d7cda2f76f33c9da7a3131589f09c", "sha256": "e450a9a70bb45aa570e8c30143d5fd6ab9ebc8d22ad6bd768f56ebefca6449bb" }, "downloads": -1, "filename": "django-simple-bulma-1.1.4.tar.gz", "has_sig": false, "md5_digest": "ed5d7cda2f76f33c9da7a3131589f09c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186017, "upload_time": "2019-02-09T00:14:02", "url": "https://files.pythonhosted.org/packages/41/6b/9c4bd8a2e36e0ddd4fbcb5ce1b6f181ce8e3fd315ad353fab0d4d702595b/django-simple-bulma-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "9b26339a6d35a97d94869573506dff07", "sha256": "d83d2acebfd6bd82be59d3b25a9d41a3be0320d2a93c1e3df4e21fc36bcba726" }, "downloads": -1, "filename": "django_simple_bulma-1.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "9b26339a6d35a97d94869573506dff07", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 229829, "upload_time": "2019-02-09T13:25:01", "url": "https://files.pythonhosted.org/packages/c0/eb/2d97fa60493f67bdf1cb58c84c40883fd6eb2306163e25111c47f90d7a04/django_simple_bulma-1.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ca7b8e89cb29d0ced1746bb03bfd64c", "sha256": "11451d7d53644aa33f3fbb39eac71d9e95832aae55b8dc9a40131f8c6448d082" }, "downloads": -1, "filename": "django-simple-bulma-1.1.5.tar.gz", "has_sig": false, "md5_digest": "5ca7b8e89cb29d0ced1746bb03bfd64c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186034, "upload_time": "2019-02-09T13:25:03", "url": "https://files.pythonhosted.org/packages/8b/1b/8fb30906e4756ab608645227909fad7f9b01ae426c91edc800c0313c0437/django-simple-bulma-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "a42941ca520bf777aa681c57430be467", "sha256": "beb323aa1c51e5efee398b6e5a2b481b31a0be7505e3118d140c65349f637100" }, "downloads": -1, "filename": "django_simple_bulma-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "a42941ca520bf777aa681c57430be467", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 230849, "upload_time": "2019-02-15T21:14:20", "url": "https://files.pythonhosted.org/packages/44/df/6d552f2e3a95e1c689cdd5c7d09dedbafb72496f3573fc113f1e186ee87e/django_simple_bulma-1.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d58773596b8e3df3cad812612c66869c", "sha256": "420042e26dd4bc70b148fc721bd77a48130b62b3d91b977e56f8232a4cfac555" }, "downloads": -1, "filename": "django-simple-bulma-1.1.6.tar.gz", "has_sig": false, "md5_digest": "d58773596b8e3df3cad812612c66869c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186949, "upload_time": "2019-02-15T21:14:23", "url": "https://files.pythonhosted.org/packages/89/56/8ae2ee2a401b010af46597277a6016ef2348c4ef67b92891b22e1a97db27/django-simple-bulma-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "ada41bee246d5e6ee5a4f123220d9609", "sha256": "7dcc04a11b5a3aefb6ec57cb211c161df8421ea333638e03c9e7db87465fead2" }, "downloads": -1, "filename": "django_simple_bulma-1.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ada41bee246d5e6ee5a4f123220d9609", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 230895, "upload_time": "2019-04-18T11:30:16", "url": "https://files.pythonhosted.org/packages/b5/83/866487b15f8ca070ec7693d3aeebaf2298930581c1d46e55aecb2c8f694c/django_simple_bulma-1.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77ac0f39dafa2eaa53dd18187d7164ea", "sha256": "f4bb4833c3272ec49e4901a53254de8e8d267da48b88f6f79af4c32f9f70c504" }, "downloads": -1, "filename": "django-simple-bulma-1.1.7.tar.gz", "has_sig": false, "md5_digest": "77ac0f39dafa2eaa53dd18187d7164ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186946, "upload_time": "2019-04-18T11:30:18", "url": "https://files.pythonhosted.org/packages/60/50/7565007dc6aea2c8ac6ba13898d8336bc0e5aac593b414e4419aca9a01bf/django-simple-bulma-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "b73c851470dc588319a7f93c6b7564e8", "sha256": "ca2e4dbda5cf2d697cef91701a9fd7e58cecec93a76897158c4d7e135aa13842" }, "downloads": -1, "filename": "django_simple_bulma-1.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b73c851470dc588319a7f93c6b7564e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 233810, "upload_time": "2019-05-09T14:30:34", "url": "https://files.pythonhosted.org/packages/71/9f/eeb7a67cbde22ab21061da9a1a4cf25190cb9293f672155d1337ba1da005/django_simple_bulma-1.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9356de2f483d63274667a79d77f6f4f", "sha256": "f3e4f47680ed6fad11c30ba932ecca95c66690204ee2be4dcd0525c07f64b06a" }, "downloads": -1, "filename": "django-simple-bulma-1.1.8.tar.gz", "has_sig": false, "md5_digest": "c9356de2f483d63274667a79d77f6f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188694, "upload_time": "2019-05-09T14:30:36", "url": "https://files.pythonhosted.org/packages/a6/36/b8ba0ba2eeda056b97a9875e604a3c69e2048d60887d0db180c9e13653c0/django-simple-bulma-1.1.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b73c851470dc588319a7f93c6b7564e8", "sha256": "ca2e4dbda5cf2d697cef91701a9fd7e58cecec93a76897158c4d7e135aa13842" }, "downloads": -1, "filename": "django_simple_bulma-1.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b73c851470dc588319a7f93c6b7564e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 233810, "upload_time": "2019-05-09T14:30:34", "url": "https://files.pythonhosted.org/packages/71/9f/eeb7a67cbde22ab21061da9a1a4cf25190cb9293f672155d1337ba1da005/django_simple_bulma-1.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9356de2f483d63274667a79d77f6f4f", "sha256": "f3e4f47680ed6fad11c30ba932ecca95c66690204ee2be4dcd0525c07f64b06a" }, "downloads": -1, "filename": "django-simple-bulma-1.1.8.tar.gz", "has_sig": false, "md5_digest": "c9356de2f483d63274667a79d77f6f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188694, "upload_time": "2019-05-09T14:30:36", "url": "https://files.pythonhosted.org/packages/a6/36/b8ba0ba2eeda056b97a9875e604a3c69e2048d60887d0db180c9e13653c0/django-simple-bulma-1.1.8.tar.gz" } ] }