{ "info": { "author": "Diederik van der Boor", "author_email": "opensource@edoburu.nl", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.10", "Framework :: Django :: 1.8", "Framework :: Django :: 1.9", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://img.shields.io/travis/django-fluent/fluentcms-googlemaps/master.svg?branch=master\n :target: http://travis-ci.org/django-fluent/fluentcms-googlemaps\n.. image:: https://img.shields.io/pypi/v/fluentcms-googlemaps.svg\n :target: https://pypi.python.org/pypi/fluentcms-googlemaps/\n.. image:: https://img.shields.io/pypi/l/fluentcms-googlemaps.svg\n :target: https://pypi.python.org/pypi/fluentcms-googlemaps/\n.. image:: https://img.shields.io/codecov/c/github/django-fluent/fluentcms-googlemaps/master.svg\n :target: https://codecov.io/github/django-fluent/fluentcms-googlemaps?branch=master\n\nfluentcms-googlemaps\n====================\n\nA plugin for django-fluent-contents_ to show a Google Maps widget on a website.\n\nThis plugin is a work in progress.\nIt's already used in production, just know that there are two main area's that need improval:\n\n* Use a better GeoPosition widget (e.g. by using a lightbox/popup)\n* Make cluster icons configurable.\n\n\nInstallation\n============\n\nFirst install the module, preferably in a virtual environment. It can be installed from PyPI::\n\n pip install fluentcms-googlemaps\n\n**NOTE:** On Django 1.11, you'll have to install the following package first:\n\n.. code-block:: bash\n\n pip -e git+https://github.com/philippbosch/django-geoposition.git@django-1.11#egg=django-geoposition\n\nSince django-geoposition_ doesn't have a Django 1.11 compatible release yet.\n\n\nBackend Configuration\n---------------------\n\nFirst make sure the project is configured for django-fluent-contents_.\n\nThen add the following settings:\n\n.. code-block:: python\n\n INSTALLED_APPS += (\n 'geoposition',\n 'fluentcms_googlemaps',\n )\n\n GOOGLE_MAPS_API_KEY = None # Might be needed to define this.\n\nAdd the following to ``urls.py``:\n\n.. code-block:: python\n\n urlpatterns = [\n ...\n\n url(r'^api/googlemaps/', include('fluentcms_googlemaps.urls')),\n ]\n\nThe database tables can be created afterwards:\n\n.. code-block:: bash\n\n ./manage.py migrate\n\nNow, the ``MapPlugin`` can be added to your ``PlaceholderField``\nand ``PlaceholderEditorAdmin`` admin screens.\n\n\nFrontend Configuration\n----------------------\n\nMake sure that all plugin media files are exposed by django-fluent-contents_:\n\n.. code-block:: html+django\n\n {% load fluent_contents_tags %}\n\n {% render_content_items_media %}\n\nThis tag should be placed at the bottom of the page, after all plugins are rendered.\nFor more configuration options - e.g. integration with django-compressor -\nsee the `template tag documentation `_.\n\nCSS Code\n~~~~~~~~\n\nThe stylesheet code is purposefully left out, since authors typically like to provide their own styling.\n\nJavaScript Code\n~~~~~~~~~~~~~~~\n\nNo configuration is required for the JavaScript integration.\n\nBy default, the plugin includes all required JavaScript code.\n\nIf needed, the includes resources can be changed by using the following settings:\n\n.. code-block:: python\n\n MAP_MARKERWITHLABEL_JS = \"fluentcms_googlemaps/vendor/markerwithlabel.js\"\n MAP_MARKERCLUSTERER_JS = \"fluentcms_googlemaps/vendor/markerclusterer_compiled.js\"\n MAPPLUGIN_JS = \"fluentcms_googlemaps/js/mapplugin.js\"\n MAPSEARCH_JS = \"fluentcms_googlemaps/js/mapsearch.js\"\n\n FLUENTCMS_GOOGLEMAPS_JS = (\n MAP_MARKERWITHLABEL_JS,\n MAP_MARKERCLUSTERER_JS,\n MAPPLUGIN_JS,\n )\n\n FLUENTCMS_GOOGLEMAPS_CSS = {}\n\nIf a value is defined as ``None``, it will be excluded from the frontend media.\n\nHTML code\n~~~~~~~~~\n\nIf needed, the HTML code can be overwritten by redefining ``fluentcms_googlemaps/maps/default.html``.\nAlso, you can create additional map styles and define these in ``FLUENTCMS_GOOGLEMAPS_STYLES``.\nThe default is:\n\n.. code-block:: python\n\n FLUENTCMS_GOOGLEMAPS_STYLES = (\n ('default', {\n 'title': _(\"Default\"),\n 'template': \"fluentcms_googlemaps/maps/default.html\",\n }),\n ('search', {\n 'title': _(\"Search field\"),\n 'template': \"fluentcms_googlemaps/maps/search.html\",\n 'extra_js': (\n MAPSEARCH_JS, # = \"fluentcms_googlemaps/js/mapsearch.js\" unless MAPSEARCH_JS is redefined\n ),\n }),\n )\n\nBy default, the following templates are looked up:\n\n* A explicitly defined ``template`` option in the ``FLUENTCMS_GOOGLEMAPS_STYLES``.\n* A template named: ``fluentcms_googlemaps/maps/{style}.html``.\n* The default; ``fluentcms_googlemaps/maps/default.html``.\n\n\nImporting data\n--------------\n\nMarker data can be imported from CSV files, and receive geocoding too.\nThe ``import_markers`` command can be called with custom templates to map the CSV file data to marker fields.\nFor example:\n\n.. code-block:: bash\n\n manage.py import_markers /stores.csv --title='{{Name}}' --group=1 --geocode='{{Address}} {{Zipcode}} {{City}} {{County}}' --geocoder=google --description=\"

{{Address}}
{{Zipcode}} {{City}}
{% if County == 'NL'%}The Netherlands{% else %}{{County}}{% endif %}

\"\n\nIt's recommended to add ``--dry-run`` first until all fields are properly filled.\nThe markers are created in a single transaction at the end of all parsing.\n\n\nContributing\n------------\n\nIf you like this module, forked it, or would like to improve it, please let us know!\nPull requests are welcome too. :-)\n\n.. _django-geoposition: https://github.com/philippbosch/django-geoposition\n.. _django-fluent-contents: https://github.com/django-fluent/django-fluent-contents\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/edoburu/fluentcms-googlemaps/zipball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/edoburu/fluentcms-googlemaps", "keywords": "", "license": "Apache 2.0", "maintainer": "", "maintainer_email": "", "name": "fluentcms-googlemaps", "package_url": "https://pypi.org/project/fluentcms-googlemaps/", "platform": "", "project_url": "https://pypi.org/project/fluentcms-googlemaps/", "project_urls": { "Download": "https://github.com/edoburu/fluentcms-googlemaps/zipball/master", "Homepage": "https://github.com/edoburu/fluentcms-googlemaps" }, "release_url": "https://pypi.org/project/fluentcms-googlemaps/1.4/", "requires_dist": [ "django-fluent-contents (>=1.0)", "django-geoposition (>=0.2.2)", "django-wysiwyg (>=0.7.1)", "geopy (>=1.10.0)", "unicodecsv (>=0.13.0)" ], "requires_python": "", "summary": "Google Maps widget for django-fluent-contents", "version": "1.4" }, "last_serial": 3512481, "releases": { "1.0": [], "1.0.1": [ { "comment_text": "", "digests": { "md5": "943ab781261d4731e46b0dcf9c76dd8a", "sha256": "14b2abee573a91a88ccad7459df3af656ab266ee98192bda1a7d07f581728077" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "943ab781261d4731e46b0dcf9c76dd8a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 43071, "upload_time": "2015-06-09T13:58:30", "url": "https://files.pythonhosted.org/packages/ac/3a/54abed63d30ef3d0c8bdb2d6495b6f508c6a3382e74a476cab00e8091af7/fluentcms_googlemaps-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c9d58c1f2fca9cf08d5fd2135c7c6b8", "sha256": "acf2d4173072276d10fc675dc8949b4e5cf0953735dc7f35b87a4f8e8fcb9ba0" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.0.1.tar.gz", "has_sig": false, "md5_digest": "8c9d58c1f2fca9cf08d5fd2135c7c6b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37572, "upload_time": "2015-06-09T13:58:26", "url": "https://files.pythonhosted.org/packages/36/e6/bafdccacc9a3f203f9c7531c0d61dd5f67244cd7b8b2361a5b594ece427e/fluentcms-googlemaps-1.0.1.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "839679bb313e7d7887bc38ce91289624", "sha256": "eed3aaa60c3ddd07584d59836fbd58bdc524ce050c7024ecfc5445a0a38df50a" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "839679bb313e7d7887bc38ce91289624", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50201, "upload_time": "2015-06-11T13:40:35", "url": "https://files.pythonhosted.org/packages/f3/f5/d5523b2d3b020dbf6b5092133b8354e813a1d345cc1ddd9bb10d74db4d66/fluentcms_googlemaps-1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c07bffebb9bd102ad469f98638d2c422", "sha256": "406bde29029f0e5fb141fae37af3e7e8f14ab975509299beffda82b10b497350" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.1.tar.gz", "has_sig": false, "md5_digest": "c07bffebb9bd102ad469f98638d2c422", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41140, "upload_time": "2015-06-11T13:40:31", "url": "https://files.pythonhosted.org/packages/d5/7d/0082ec6ea79da54d01ccf110c5762df4cfda09ecbdfbe5179f8a577d26f4/fluentcms-googlemaps-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "15fd2e7441ee46d3bf8ce133ef4d1087", "sha256": "a56829502c16c8862126c855e019585a4b86a43a9f4b20fb81b47440f15ac4d7" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "15fd2e7441ee46d3bf8ce133ef4d1087", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 53268, "upload_time": "2015-06-26T14:47:44", "url": "https://files.pythonhosted.org/packages/19/4d/72f94d30374439f5785dc7a69b625c8b5ffe0f6b18dcd21cd81a9dbab03c/fluentcms_googlemaps-1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "658912d2a5f63d3eb552debf6a0eefdf", "sha256": "6083783beda6adaa66e3471557b43b560728372a9716b42d1c633aa5f4fefefd" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.tar.gz", "has_sig": false, "md5_digest": "658912d2a5f63d3eb552debf6a0eefdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43303, "upload_time": "2015-06-26T14:47:40", "url": "https://files.pythonhosted.org/packages/dc/16/a6a6899bc3322ee174a51306a2a3fcb39d75ee548705472874ebd4340c4a/fluentcms-googlemaps-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "cd29c06d64ead3bd81fb04e1cae28cbb", "sha256": "22059398f20c4b00cd1c54ddf8b2d7f4dbeee78a318af5998412f28276a47bdb" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd29c06d64ead3bd81fb04e1cae28cbb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 72573, "upload_time": "2015-06-26T14:56:22", "url": "https://files.pythonhosted.org/packages/dd/9b/1c19445f09a1d265de070c5073ebeba155aae274e43296c7b8fe98f9b031/fluentcms_googlemaps-1.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4331ccce898ddc69fb7d7b25b0d6a6bd", "sha256": "da9778c2b59edd6943349d48ec7be25cab821ec7c265164a0d0646744291bb13" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.1.tar.gz", "has_sig": false, "md5_digest": "4331ccce898ddc69fb7d7b25b0d6a6bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55131, "upload_time": "2015-06-26T14:56:19", "url": "https://files.pythonhosted.org/packages/4e/2b/10a9554e2be9977209f784570bff31bf84ac1008e7aa8e85c58a2b24955f/fluentcms-googlemaps-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "f8aec017f2488ee21232d28ecf209a8f", "sha256": "596de3fea7aa696314bb156cc86876864c259e36586dfa434c4324a3709ba4b3" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f8aec017f2488ee21232d28ecf209a8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72720, "upload_time": "2015-09-07T11:51:48", "url": "https://files.pythonhosted.org/packages/fb/f9/d01dcb3d3f798ebb4b41f7e928f12dfd30087a22719d79b2230bece67c4c/fluentcms_googlemaps-1.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3574c9f202fe91c07323d4739ea6815d", "sha256": "3c9cf814f5eeabc66c779134d201d111d0ea85bbee96023d8fa8aade6f20da26" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.2.tar.gz", "has_sig": false, "md5_digest": "3574c9f202fe91c07323d4739ea6815d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55324, "upload_time": "2015-09-07T11:51:44", "url": "https://files.pythonhosted.org/packages/ae/f8/76da567f26ea2eedce7eac792b443cb5bd1a07646d04ba94f43200dfa5e4/fluentcms-googlemaps-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "9a873f2d0d008ad4eba84f3413b2f1b5", "sha256": "aee02cd3f2480a71a19dd5c572691fc5d12a684ef9cb238689a660832b8d0c54" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9a873f2d0d008ad4eba84f3413b2f1b5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72715, "upload_time": "2015-09-28T09:45:23", "url": "https://files.pythonhosted.org/packages/a2/4a/5ab347cf8ee3c0fbad4fc20942f769830b2205c17c8c0de32c75d58245ff/fluentcms_googlemaps-1.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f49088b8769fc160f9aa52023c256668", "sha256": "f07cec8e2172e8c66b920c1fc695be3f693218c41f71e9e5218fefb02c2df6a0" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.3.tar.gz", "has_sig": false, "md5_digest": "f49088b8769fc160f9aa52023c256668", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55312, "upload_time": "2015-09-28T09:45:18", "url": "https://files.pythonhosted.org/packages/ee/1d/6bd227b1b4d0b5ff5dd9d6ea1933c153e3ce47175e201e9759efb185ad9c/fluentcms-googlemaps-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "ce9aa843018e577c3a0464eda624a5f5", "sha256": "96642218eda3212a575c1585934367dcf6f620d3eeffa3485a4f27367b2b393b" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ce9aa843018e577c3a0464eda624a5f5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72694, "upload_time": "2015-10-02T10:41:27", "url": "https://files.pythonhosted.org/packages/64/86/25ee66aed3f5a02a8ec68c0e37141edc77e73da31ff73e6dae059f22f66f/fluentcms_googlemaps-1.2.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04b212eba2b8dd3317290a8bcc76707a", "sha256": "da79f9151fbba9e87460ed84c948e20994245ac7f7dab3746362c8f1b922fa10" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.4.tar.gz", "has_sig": false, "md5_digest": "04b212eba2b8dd3317290a8bcc76707a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55252, "upload_time": "2015-10-02T10:41:21", "url": "https://files.pythonhosted.org/packages/75/07/6821c6b29c5ea29616bd77ead1f8739ef80d3fd3c626b66a491cbe4108cc/fluentcms-googlemaps-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "db4a1f3c4d0138532a9a8e1c8ee46a05", "sha256": "7167ba8e0f6ea9e16d1d9d23e1d95a9fab0e2343841294bc6bc1a59ceff55114" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "db4a1f3c4d0138532a9a8e1c8ee46a05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72785, "upload_time": "2016-03-17T09:49:42", "url": "https://files.pythonhosted.org/packages/df/05/7becba0bea6a2b8aec3796fec0c91be3cefcb73a5753292caeb63fed6454/fluentcms_googlemaps-1.2.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "edddec29f3cd4a3903bad4d562e676f9", "sha256": "b7089d0e7c5da04ab41a696ec0e9ff9ff819ee6de42ab2065c9074f0a078d93b" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.5.tar.gz", "has_sig": false, "md5_digest": "edddec29f3cd4a3903bad4d562e676f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55318, "upload_time": "2016-03-17T09:49:37", "url": "https://files.pythonhosted.org/packages/5e/a6/934ef4c70b08f2ed95117f432953ffd1b79697bc696b90796f4481861732/fluentcms-googlemaps-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "c882f4ee4d4fed8dccd71adbc894d6e7", "sha256": "c9d81eefebd536e479bbffa0c393c1cd1543b410ab4f8ce4b78661b068e2e59f" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c882f4ee4d4fed8dccd71adbc894d6e7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72680, "upload_time": "2016-11-28T11:21:33", "url": "https://files.pythonhosted.org/packages/c9/f7/820f5fffb96fad090fd0de37bf71ad7cf04e6f7ee7b8767250abd612e698/fluentcms_googlemaps-1.2.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40f9d9c75d7f24a4916d54057eebdc1d", "sha256": "1ff2158674cc0b83fa6741272b94c3203d18d1504f65e1509c19f2d8a83b0288" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.6.tar.gz", "has_sig": false, "md5_digest": "40f9d9c75d7f24a4916d54057eebdc1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55349, "upload_time": "2016-11-28T11:21:36", "url": "https://files.pythonhosted.org/packages/98/5d/913733f21595218fd1935e1e80bba05f258a48606e3bb22a64c54e20a96a/fluentcms-googlemaps-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "839b86d56bed70b5cb3753470ddebdc0", "sha256": "92105aafdd949e65ae36f9fea5cba3451cbe9e1bee99b57b66ff89a9e5044cf6" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.2.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "839b86d56bed70b5cb3753470ddebdc0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72741, "upload_time": "2017-05-05T14:58:03", "url": "https://files.pythonhosted.org/packages/35/04/e0bb129718c27bfb3b00fd8565364afe2d86b01e9d5f6495bbe3e1b1f2a3/fluentcms_googlemaps-1.2.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa6e7955b0ea4fe2a7209ea6b619de6c", "sha256": "353bdbb60d568593337db44bf6fcca9f2c5275f02f192214f86be19c0355a3e0" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.2.7.tar.gz", "has_sig": false, "md5_digest": "fa6e7955b0ea4fe2a7209ea6b619de6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55435, "upload_time": "2017-05-05T14:58:06", "url": "https://files.pythonhosted.org/packages/fe/1c/665825223a468e278f8d27a9389874111c30af29dccdbe97422790c39803/fluentcms-googlemaps-1.2.7.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "08f695fbd3efc474059ee170d1b25faf", "sha256": "fb55020e18d2425f6763e1773238a23777551fd4651b2b119fb07778d4b075e0" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "08f695fbd3efc474059ee170d1b25faf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71665, "upload_time": "2017-08-10T21:43:26", "url": "https://files.pythonhosted.org/packages/e0/b6/53ea18ec4fc1c16b1eecef6ff6ce9ac48a6277420de8cae972322d44f2ac/fluentcms_googlemaps-1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dad8622544bf9f3e4e3fe6f0c6a08108", "sha256": "27c5b02cb55a5415d3d32bd6cdd7f1d590db579bc42522f2154c4818dff0b06e" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.3.tar.gz", "has_sig": false, "md5_digest": "dad8622544bf9f3e4e3fe6f0c6a08108", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54842, "upload_time": "2017-08-10T21:43:28", "url": "https://files.pythonhosted.org/packages/1c/8d/325d229afd5c4014d56118a0abfe7007383403429e001125610631ad172d/fluentcms-googlemaps-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "c5ccaa5e616c1d5c160327f4bd3b417a", "sha256": "1261031953c025afcdea902b1ac0b3c601341337d020d082b5a1e7896171503d" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5ccaa5e616c1d5c160327f4bd3b417a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71796, "upload_time": "2018-01-22T22:04:25", "url": "https://files.pythonhosted.org/packages/48/5f/3a65a481485317a899feed1aa17aa1b91181dc95156dc45434da935ff3e7/fluentcms_googlemaps-1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ef1d33f8950b8318d12a97007f3e128", "sha256": "7f06850bc2d6b663a97ea6b362bb5f43c62f3179a78490a71859a323afbe8572" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.4.tar.gz", "has_sig": false, "md5_digest": "3ef1d33f8950b8318d12a97007f3e128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56215, "upload_time": "2018-01-22T22:04:28", "url": "https://files.pythonhosted.org/packages/fd/21/161178b948ee06678cd5f5b21ab5d0d0bdaf27adff2643ef44dae6db8e1c/fluentcms-googlemaps-1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c5ccaa5e616c1d5c160327f4bd3b417a", "sha256": "1261031953c025afcdea902b1ac0b3c601341337d020d082b5a1e7896171503d" }, "downloads": -1, "filename": "fluentcms_googlemaps-1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c5ccaa5e616c1d5c160327f4bd3b417a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 71796, "upload_time": "2018-01-22T22:04:25", "url": "https://files.pythonhosted.org/packages/48/5f/3a65a481485317a899feed1aa17aa1b91181dc95156dc45434da935ff3e7/fluentcms_googlemaps-1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ef1d33f8950b8318d12a97007f3e128", "sha256": "7f06850bc2d6b663a97ea6b362bb5f43c62f3179a78490a71859a323afbe8572" }, "downloads": -1, "filename": "fluentcms-googlemaps-1.4.tar.gz", "has_sig": false, "md5_digest": "3ef1d33f8950b8318d12a97007f3e128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56215, "upload_time": "2018-01-22T22:04:28", "url": "https://files.pythonhosted.org/packages/fd/21/161178b948ee06678cd5f5b21ab5d0d0bdaf27adff2643ef44dae6db8e1c/fluentcms-googlemaps-1.4.tar.gz" } ] }