{ "info": { "author": "Franklin Sarmiento", "author_email": "franklinitiel@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Python :: 3.6" ], "description": "# Django Semantic UI\nEasy python package that allow install, configure and use Semantic UI Framework with a Django project (Python 3.x).\n\n### Requirements\n- npm (last stable version)\n- Python 3.6.x\n- Django 2.x.x\n\n## Installing\n1) Install gulp (CLI), the version 3.9.1 is the available to work with Semantic UI Framework.\n```shell\n$ sudo npm install -g gulp@3.9.1\n```\n\n2) Install the django2-semantic-ui package:\n```shell\n$ pip install django2-semantic-ui\n```\n\n3) Configure django2-semantic-ui in the settings.py:\n```python\nINSTALLED_APPS = [\n ...,\n 'django_semantic_ui',\n]\n```\n\n4) Running the install command\n```shell\n$ python manage.py semantic_ui install\n```\n**NOTE:** You need to define the settings required to install semantic-ui module, see: [Install Semantic](https://semantic-ui.com/introduction/getting-started.html)\n- You can use the follow options when the semantic-ui module is configured:\n```shell\n\u276f Automatic (Use default locations and all components)\n\n? We detected you are using NPM Nice! Is this your project folder? /home/franklinitiel/Documents/TSJ/projects/personal/python_tests/semanticui/static (Use arrow keys)\n\u276f Yes\n\n? Where should we put Semantic UI inside your project? (semantic/) semantic\n```\n\n5) Running the gulp build command\n```shell\n$ python manage.py semantic_ui gulp_build\n```\n\n6) Add 'django.template.context_processors.static' to context_processors option on the TEMPLATES settings\n```python\n# settings.py\n# TEMPLATES settings\n'context_processors': [\n ...,\n 'django.template.context_processors.static',\n ...,\n]\n```\n\n7) Configure the static files and folder, see: [Managing static files](https://docs.djangoproject.com/en/2.1/howto/static-files/)\n```python\nSTATIC_URL = '/static/'\n```\n\n8) Add CSS and JS to your django project\n```html\n{% load dsu %}\n\n\n\n \n Semantic UI Test\n {% dsu_stylesheet_url %}\n\n\n \n {% dsu_jquery_url %}\n {% dsu_javascript_url %}\n\n\n```\n\n## Settings Production environment\n- Configure the static files and folder, see: [Managing static files](https://docs.djangoproject.com/en/1.11/howto/static-files/)\n```python\nSTATIC_URL = '/static/'\nSTATIC_ROOT = os.path.join(BASE_DIR, 'static')\n```\n- And execute the collectstatic command\n```shell\n$ python manage.py collectstatic\n```\n\n## Additional settings\n- GULP_VERSION by default is None, if you want to install a specific version of gulp module (local), you can use this settings, by example:\n```python\n# settings.py\nGULP_VERSION = '3.9.1'\n```\n- SEMANTIC_UI_VERSION by default is None, if you want to install a specific version of semantic-ui module (local), you can use this settings, by example:\n```python\n# settings.py\nSEMANTIC_UI_VERSION = '^2.4.2'\n```\n- SEMANTIC_DIRNAME by default is 'semantic'', if you have defined a custom dirname for the JS and CSS files when the Semantic UI Framework was installed (step 4), you need to add it on this settings.\n```python\n# settings.py\nSEMANTIC_DIRNAME = 'semantic'\n```\n- DSU_JQUERY_URL by default is 'https://code.jquery.com/jquery-3.1.1.min.js', if you have defined a custom path to you jquery, so, you can use this template tag.\n```python\n# settings.py\nDSU_JQUERY_URL = '...your jquery path...'\n```\n\n## Uninstall django-semantic-ui\n- You can uninstall Semantic UI Framework and Gulp (local version) using the follow command:\n```shell\n$ python manage.py semantic_ui uninstall && pip uninstall django2-semantic-ui\n```\n\n## Releases notes:\n\n- 1.0.0: Initial and beta version (only installation and settings).\n- 1.0.1: New settings added on the README.md file\n- 1.1.0: Logic updated to install / uninstall django-semantic-ui, new settings added.\n- 1.1.1: README.md updated\n- 1.1.2: README.md updated\n- 1.2.0: New templatetags added to load the javascripts and stylesheets files\n- 1.2.1: README.md updated, bugs fixed to execute the command \"python manage.py runserver\" after installed.\n- 1.2.2: Bug fixes execute the command \"pytho manage.py runserver\"", "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/franklintiel/django2-semantic-ui/wiki", "keywords": "semantic-ui semanticui semantic ui django-semantic-ui django-semanticui django-semantic-ui", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django2-semantic-ui", "package_url": "https://pypi.org/project/django2-semantic-ui/", "platform": "", "project_url": "https://pypi.org/project/django2-semantic-ui/", "project_urls": { "Documentation": "https://github.com/franklintiel/django2-semantic-ui", "Homepage": "https://github.com/franklintiel/django2-semantic-ui/wiki", "Source": "https://github.com/franklintiel/django2-semantic-ui", "Tracker": "https://github.com/franklintiel/django2-semantic-ui/issues" }, "release_url": "https://pypi.org/project/django2-semantic-ui/1.2.2/", "requires_dist": null, "requires_python": ">=3.*", "summary": "Library to easy install, configure and use Semantic UI framework with Django project (Python 3.x)", "version": "1.2.2" }, "last_serial": 4810088, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "f61d632372ee15320ba993416d89b58f", "sha256": "08aefe728b702297125a97ae31d95d0b1b190b2c3e346614ed5f09989793910d" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.0.tar.gz", "has_sig": false, "md5_digest": "f61d632372ee15320ba993416d89b58f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4366, "upload_time": "2018-12-17T02:07:21", "url": "https://files.pythonhosted.org/packages/69/e6/eaa6ecc5209d715326d1940d8e2b4a34a3553d2228395b75eb90a7da2dd4/django2_semantic_ui-1.0.0.tar.gz" } ], "1.0.0b0": [ { "comment_text": "", "digests": { "md5": "1602573fd8af98e3a05fc5295db58051", "sha256": "833fa88872d63f8a3c87bd0756ea51e7bff17224328655f081b4752897c6a5db" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.0b0.tar.gz", "has_sig": false, "md5_digest": "1602573fd8af98e3a05fc5295db58051", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 2803, "upload_time": "2018-12-17T00:24:27", "url": "https://files.pythonhosted.org/packages/7d/67/1a2691767312c960ec758c6c6f3a77bc02ec4aae44d5941248fcd04976e4/django2_semantic_ui-1.0.0b0.tar.gz" } ], "1.0.0b1": [ { "comment_text": "", "digests": { "md5": "5e5d1ad4d245a7cf75ac27e793f3d2b5", "sha256": "e8c1ba260b4f9ceda8dbf61a23bc175f6dd1beaa4e3fb2f6383e7895aad5b846" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.0b1.tar.gz", "has_sig": false, "md5_digest": "5e5d1ad4d245a7cf75ac27e793f3d2b5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 2789, "upload_time": "2018-12-17T01:02:00", "url": "https://files.pythonhosted.org/packages/1e/cb/3a6d69213800850fd47c84fa7864f0901d6c78bb65801f9c764694e894be/django2_semantic_ui-1.0.0b1.tar.gz" } ], "1.0.0b3": [ { "comment_text": "", "digests": { "md5": "ff0c295855988a2678a2aceb84070ee5", "sha256": "a5e3cbd837c9e526316d9d76f3c32cc71d82cba00f35f5e8f92c9fb1700bb707" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.0b3.tar.gz", "has_sig": false, "md5_digest": "ff0c295855988a2678a2aceb84070ee5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4371, "upload_time": "2018-12-17T01:34:48", "url": "https://files.pythonhosted.org/packages/c2/55/6d79a6782336f2a0f1967e33894ba0247365d654d8337d32d9c275cfa723/django2_semantic_ui-1.0.0b3.tar.gz" } ], "1.0.0b4": [ { "comment_text": "", "digests": { "md5": "b5d77391a6a8c767175d4d2f59dee443", "sha256": "9619dbdb00bce21cd42b4a3bdef2233523b94568108c9e0b5c3400c9412bca31" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.0b4.tar.gz", "has_sig": false, "md5_digest": "b5d77391a6a8c767175d4d2f59dee443", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4378, "upload_time": "2018-12-17T01:52:59", "url": "https://files.pythonhosted.org/packages/1f/b1/50e4b66f6a22c982bef9f1c5fffc07f4aecbb69e07faa4f353fba58e3296/django2_semantic_ui-1.0.0b4.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "5afd5359ea0382489608aca1896c9cd6", "sha256": "00ed296e0a82d9aad3d1f9452bf953b553b04c428a167f33257cf6edf975b9b7" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.1.tar.gz", "has_sig": false, "md5_digest": "5afd5359ea0382489608aca1896c9cd6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4496, "upload_time": "2018-12-17T02:52:19", "url": "https://files.pythonhosted.org/packages/f0/b0/4bcb90f935e141f7cae5c0e7ba128359bfd1c0df8f345036a77a273906f2/django2_semantic_ui-1.0.1.tar.gz" } ], "1.0.1b0": [ { "comment_text": "", "digests": { "md5": "00ec8a7f70c3d3f1fa2a279860d9ad2d", "sha256": "fefeddb002823c1e00b2aa3481698efb9470812d734c1c3cac61b39f07727eab" }, "downloads": -1, "filename": "django2_semantic_ui-1.0.1b0.tar.gz", "has_sig": false, "md5_digest": "00ec8a7f70c3d3f1fa2a279860d9ad2d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4506, "upload_time": "2018-12-17T02:48:13", "url": "https://files.pythonhosted.org/packages/06/81/e5f96c3c54622207349535699cf62a4096d98c853c1031a0a12435788734/django2_semantic_ui-1.0.1b0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9b07529d9732ce3a5095d9ac54943e1e", "sha256": "b7fba3462e01aaa5bf7862a3e6b64bff667387bce535c7d8c2ec9542f20c9317" }, "downloads": -1, "filename": "django2_semantic_ui-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9b07529d9732ce3a5095d9ac54943e1e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4792, "upload_time": "2018-12-24T17:26:01", "url": "https://files.pythonhosted.org/packages/9f/53/fb5e8f9562971da331d7af74f7b2ac5a50fdf11f235b5948adf0e8f2f84e/django2_semantic_ui-1.1.0.tar.gz" } ], "1.1.0b0": [ { "comment_text": "", "digests": { "md5": "89129b29d3a3686164f7d08b92fd28da", "sha256": "f542d189bd509f5d2b841e8e7a702567ab3bbd0a481509febf8bd2d5b8ef2334" }, "downloads": -1, "filename": "django2_semantic_ui-1.1.0b0.tar.gz", "has_sig": false, "md5_digest": "89129b29d3a3686164f7d08b92fd28da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4723, "upload_time": "2018-12-24T17:03:25", "url": "https://files.pythonhosted.org/packages/5c/c8/81137f3ed577701978f8274de53d09285641eaea63a32e939cbebcbe78f0/django2_semantic_ui-1.1.0b0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "17c3fcbf1f3567873d3ca75c0ea9ba78", "sha256": "05e54be89ff9478ea641f0a77bf80ee45d4715020d0eaa1e03b1d9fff77254e9" }, "downloads": -1, "filename": "django2_semantic_ui-1.1.1.tar.gz", "has_sig": false, "md5_digest": "17c3fcbf1f3567873d3ca75c0ea9ba78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4793, "upload_time": "2018-12-24T17:30:26", "url": "https://files.pythonhosted.org/packages/93/3f/c8ce07d93d808ab024faca0b48aef8ba7ab33020a1c9a848f07f832545c8/django2_semantic_ui-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "da411fd5034bc71bdf80589e7a2a91d9", "sha256": "efa57e016cd9711ea29f9f5a5fc29fc77ec8658c237dd11aaadeea249121b6ba" }, "downloads": -1, "filename": "django2_semantic_ui-1.1.2.tar.gz", "has_sig": false, "md5_digest": "da411fd5034bc71bdf80589e7a2a91d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 4828, "upload_time": "2018-12-24T17:33:56", "url": "https://files.pythonhosted.org/packages/81/10/0a97672872bb605e6d3d139e8bf15c89581ffc204ec3e9619d9a5f4ce9ec/django2_semantic_ui-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "36b373bd6b45073e826bf2b06d5a2d71", "sha256": "7dfbee77bfb6bd50e8d970102cf55cee7bcaf3c9634e9d7547ee002a36bfc95d" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.0.tar.gz", "has_sig": false, "md5_digest": "36b373bd6b45073e826bf2b06d5a2d71", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 7757, "upload_time": "2019-01-03T20:07:26", "url": "https://files.pythonhosted.org/packages/ed/71/fa669a0ac64a29402e12c4ee11f6d9ede3c369873cfba76ceab0a8b830fc/django2_semantic_ui-1.2.0.tar.gz" } ], "1.2.0b0": [ { "comment_text": "", "digests": { "md5": "e171d3466debd5e134d4024cf7a4a6f2", "sha256": "33d34d6cd52117b2bfce2dbbbd3b1b7b2484ed890751a2c2fd1be8716fab1567" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.0b0.tar.gz", "has_sig": false, "md5_digest": "e171d3466debd5e134d4024cf7a4a6f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 7712, "upload_time": "2019-01-03T19:02:49", "url": "https://files.pythonhosted.org/packages/8e/d9/a5c9323e273f6d19e0d635c6572df0dac60c9e5fe693b90ba8d8bc7d755d/django2_semantic_ui-1.2.0b0.tar.gz" } ], "1.2.0b1": [ { "comment_text": "", "digests": { "md5": "2b3390fd9014e8e68ea98872e9628c78", "sha256": "0dfdc7e2be4d809be526e6f930a434250be20c69c74347e3a0afb4d296a0b88a" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.0b1.tar.gz", "has_sig": false, "md5_digest": "2b3390fd9014e8e68ea98872e9628c78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 7721, "upload_time": "2019-01-03T19:45:06", "url": "https://files.pythonhosted.org/packages/a6/e7/3bc737964c31d1fd39739bbcd2483c105c8a8d16f2fad99d9ed928122adf/django2_semantic_ui-1.2.0b1.tar.gz" } ], "1.2.0b2": [ { "comment_text": "", "digests": { "md5": "cf2c2022d4b0ad5d94787ecf990ec33c", "sha256": "bdd7c8febacaf17cc91ca18c40a142e2f870542ff8ef58dac1ca99df3cc73fa3" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.0b2.tar.gz", "has_sig": false, "md5_digest": "cf2c2022d4b0ad5d94787ecf990ec33c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 7760, "upload_time": "2019-01-03T19:52:50", "url": "https://files.pythonhosted.org/packages/0c/67/3e3d07097dee0787682192904b90b6196746dac3904acbeda4d94c8f2820/django2_semantic_ui-1.2.0b2.tar.gz" } ], "1.2.0b3": [ { "comment_text": "", "digests": { "md5": "36ebf95e75088bc2a304f093c1bddd70", "sha256": "d0aeb1de78e4c1c0f0e371f85517530fbb133b72e20c7bf5e1de2d1fc01f2967" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.0b3.tar.gz", "has_sig": false, "md5_digest": "36ebf95e75088bc2a304f093c1bddd70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 7759, "upload_time": "2019-01-03T19:58:02", "url": "https://files.pythonhosted.org/packages/18/a6/16164317eeeb8967ab7e51a889cbcb51823b5b743babb9583571e1227a83/django2_semantic_ui-1.2.0b3.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "8d483c7247b4043cc55f2c2d582dc5ac", "sha256": "96d6886b2f0c588e49145ea19e92747305072400c1afaf994036fb867b812192" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1.tar.gz", "has_sig": false, "md5_digest": "8d483c7247b4043cc55f2c2d582dc5ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8049, "upload_time": "2019-01-19T15:04:13", "url": "https://files.pythonhosted.org/packages/e2/fe/fbd2f1d2e36abc9b6e775247c33adbc25690a74cef5f05da6d6ebe125151/django2_semantic_ui-1.2.1.tar.gz" } ], "1.2.1b0": [ { "comment_text": "", "digests": { "md5": "5038fbbff03e6927597dac08c09b0037", "sha256": "6e8eb6b790248098ab0ac05fa4b87762688a51afb6521a78818f4b16defe95df" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b0.tar.gz", "has_sig": false, "md5_digest": "5038fbbff03e6927597dac08c09b0037", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8011, "upload_time": "2019-01-19T13:49:16", "url": "https://files.pythonhosted.org/packages/76/52/fc8b7f72562ee86bc10cd6c6a60a3f683cbe70985740c2ad43ec365ac70f/django2_semantic_ui-1.2.1b0.tar.gz" } ], "1.2.1b1": [ { "comment_text": "", "digests": { "md5": "89f54ffb8f9a9ea356e8a1aa6cffff29", "sha256": "78d36e4c0608732ddd24902ff54cff6f4b8b1fc2433eee7d71efd332a1089bc0" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b1.tar.gz", "has_sig": false, "md5_digest": "89f54ffb8f9a9ea356e8a1aa6cffff29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8010, "upload_time": "2019-01-19T13:56:24", "url": "https://files.pythonhosted.org/packages/f2/6f/0d1c8bf0df28bfe390f4548b4eeeb3307335c40bd8536819eee59674643c/django2_semantic_ui-1.2.1b1.tar.gz" } ], "1.2.1b2": [ { "comment_text": "", "digests": { "md5": "3ee0fa8d5fa4aa9224ecabc165e94b68", "sha256": "ed11c9a9c1292c66be3f960eb967ad9a96eb94d2d15c2b3ee58f3e29724a9d78" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b2.tar.gz", "has_sig": false, "md5_digest": "3ee0fa8d5fa4aa9224ecabc165e94b68", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8019, "upload_time": "2019-01-19T14:00:55", "url": "https://files.pythonhosted.org/packages/3c/8d/7bd8c1b26e896cbca1b65e2c3a13fc8ccf07448c361214bbb093231c8c02/django2_semantic_ui-1.2.1b2.tar.gz" } ], "1.2.1b3": [ { "comment_text": "", "digests": { "md5": "f935a4aa3f580461a5b9d34517b7a229", "sha256": "bb0ee0c4fd43a426ca03b43324a755f956304f5109236404146c345d5d3a5926" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b3.tar.gz", "has_sig": false, "md5_digest": "f935a4aa3f580461a5b9d34517b7a229", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8035, "upload_time": "2019-01-19T14:05:40", "url": "https://files.pythonhosted.org/packages/6d/e3/fbf9eab857009a3d2fbee7853a4ab2f47e4731bb906010770b84dea1dfcc/django2_semantic_ui-1.2.1b3.tar.gz" } ], "1.2.1b4": [ { "comment_text": "", "digests": { "md5": "4c0befbb6a006cfd6c6a8a1bff097cd2", "sha256": "8ea383b7becfd7fa133fcf2e13979ae70666f89d498892b3a2a5a833b5ba24aa" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b4.tar.gz", "has_sig": false, "md5_digest": "4c0befbb6a006cfd6c6a8a1bff097cd2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8037, "upload_time": "2019-01-19T14:14:18", "url": "https://files.pythonhosted.org/packages/0f/f2/9be2946bbe806154c22be956f6652197dec09fba65ee961af1f06fd81ae8/django2_semantic_ui-1.2.1b4.tar.gz" } ], "1.2.1b5": [ { "comment_text": "", "digests": { "md5": "b3518c176a034ff4c3597b976950330c", "sha256": "9b5c333d9ec5fdb4de821f48972c584f06aca28d9cd63c363ccc2feade806686" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b5.tar.gz", "has_sig": false, "md5_digest": "b3518c176a034ff4c3597b976950330c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8046, "upload_time": "2019-01-19T14:39:41", "url": "https://files.pythonhosted.org/packages/8e/a5/deebf3b2614c048f4bd0aa7d72ae08fcb1c9fdc71effc18ba4808d1cafea/django2_semantic_ui-1.2.1b5.tar.gz" } ], "1.2.1b6": [ { "comment_text": "", "digests": { "md5": "d8784b0e2918156845e2df58972b9390", "sha256": "144f5c5ef8f251d9d6abe539fbf29aeccdd533c72ccfbfdfad5a4a2b8d02a5c9" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.1b6.tar.gz", "has_sig": false, "md5_digest": "d8784b0e2918156845e2df58972b9390", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8049, "upload_time": "2019-01-19T14:48:33", "url": "https://files.pythonhosted.org/packages/73/3b/5c2b3e11031bcb2264ce011b1ed45bd2400b7a075893b9c5f2ee90f09f0d/django2_semantic_ui-1.2.1b6.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "4c984872f505d03a4b7983d8b47a3e89", "sha256": "a5efe89908c11e231dcea7cad249fd7bf629f7189d5621cd0d3bc82d154a9676" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.2.tar.gz", "has_sig": false, "md5_digest": "4c984872f505d03a4b7983d8b47a3e89", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8098, "upload_time": "2019-02-12T10:43:07", "url": "https://files.pythonhosted.org/packages/a1/76/e57ee8bf33259f832ae9f5c8d4d24a701516389f633efa37627922b6706a/django2_semantic_ui-1.2.2.tar.gz" } ], "1.2.2b0": [ { "comment_text": "", "digests": { "md5": "a616bb971ab47d64aca9299434405256", "sha256": "3fd06c6c11f616f4a573761270a2439614b3984c716a963b02d1db2f25aa6ae9" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.2b0.tar.gz", "has_sig": false, "md5_digest": "a616bb971ab47d64aca9299434405256", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8075, "upload_time": "2019-02-12T10:22:46", "url": "https://files.pythonhosted.org/packages/3f/10/a5106265e37063521c1b4d58b692b9d2f544937b066ab790d2767c03b7c3/django2_semantic_ui-1.2.2b0.tar.gz" } ], "1.2.2b1": [ { "comment_text": "", "digests": { "md5": "5d7be4c9919b102054129d55300f0737", "sha256": "9f4bb86f6d89a1bc6cd6354e2b0fd67b7455dfde7d36e79d00d6d7939ec0d08a" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.2b1.tar.gz", "has_sig": false, "md5_digest": "5d7be4c9919b102054129d55300f0737", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8096, "upload_time": "2019-02-12T10:28:47", "url": "https://files.pythonhosted.org/packages/0a/51/0341a23653642b124a74922bb70520262049f41694c493ad285b585313f2/django2_semantic_ui-1.2.2b1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4c984872f505d03a4b7983d8b47a3e89", "sha256": "a5efe89908c11e231dcea7cad249fd7bf629f7189d5621cd0d3bc82d154a9676" }, "downloads": -1, "filename": "django2_semantic_ui-1.2.2.tar.gz", "has_sig": false, "md5_digest": "4c984872f505d03a4b7983d8b47a3e89", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.*", "size": 8098, "upload_time": "2019-02-12T10:43:07", "url": "https://files.pythonhosted.org/packages/a1/76/e57ee8bf33259f832ae9f5c8d4d24a701516389f633efa37627922b6706a/django2_semantic_ui-1.2.2.tar.gz" } ] }