{ "info": { "author": "Mikhail Andreev", "author_email": "x11org@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Topic :: Software Development :: Debuggers", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Introduction\n============\n\nMarcus is billingual blog engine, written Ivan Sagalaev (http://softwaremaniacs.org/about/).\n\nThis fork over augmented and has the following features:\n\n* Billingual articles, Categories, Tags and Comments\n* Simple file uploader for the article with a preview images\n* Archive and date navigation\n* Pingback\n* Automatically pings search engines on new entries\n* Supports markdown (http://pypi.python.org/pypi/markdown2)\n* Comments have CSRF protection via JavaScript, supported Akismet (antispam service)\n* There are authentication via OpenID, or by login with pre-moderated\n* There is support for retweet button\n* Sitemaps for articles, feeds for articles and comments\n* A simple search module\n* A pretty minimalistic theme\n* Import from Wordpress (command \"wordpress_importer\")\n\n\nExamples\n============\n\n* http://softwaremaniacs.org/blog/ (Ivan Sagalaev)\n* https://prudnitskiy.pro/ (Pavel Rudnitskiy)\n* http://adw0rd.com/ (Mikhail Andreev)\n\nAbout marcus\n=============\n\n* http://softwaremaniacs.org/blog/2010/07/19/marcus-bilingual-blog/\n* http://softwaremaniacs.org/blog/2012/10/21/marcus-new-life/\n* http://adw0rd.com/2012/8/8/goodbye-wordpress/\n\nScreenshots:\n=============\n\n.. image:: https://raw.github.com/adw0rd/marcus/master/docs/screenshots/thumbnails/articles.png\n :target: https://github.com/adw0rd/marcus/blob/master/docs/screenshots/articles.png\n.. image:: https://raw.github.com/adw0rd/marcus/master/docs/screenshots/thumbnails/article.png\n :target: https://github.com/adw0rd/marcus/blob/master/docs/screenshots/article.png\n.. image:: https://raw.github.com/adw0rd/marcus/master/docs/screenshots/thumbnails/admin_articles.png\n :target: https://github.com/adw0rd/marcus/blob/master/docs/screenshots/admin_articles.png\n.. image:: https://raw.github.com/adw0rd/marcus/master/docs/screenshots/thumbnails/admin_article.png\n :target: https://github.com/adw0rd/marcus/blob/master/docs/screenshots/admin_article.png\n\n\nInstallation\n=============\n\nhttp://pypi.python.org/pypi/django-marcus\n::\n\n mkvirtualenv marcus\n pip install --process-dependency-links django-marcus # use \"--process-dependency-links\" for pip>=1.5\n django-admin.py startproject \n\n\nConfiguration\n==============\n\nAdd to ``settings.py``::\n\n import os\n import imp\n \n PROJECT_ROOT = os.path.dirname(__file__)\n PROJECT_NAME = os.path.basename(PROJECT_ROOT)\n STORAGE_ROOT = os.path.join('/storage', PROJECT_NAME)\n LOCALE_PATHS = (\n os.path.join(imp.find_module('marcus')[1], 'locale'),\n )\n\n ADMINS = (\n ('Admin', 'admin@example.com'),\n )\n // Please setup settings.MANAGERS for notify about new comments\n MANAGERS = ADMINS\n\n MARCUS_PAGINATE_BY = 20\n MARCUS_ARTICLES_ON_INDEX = 10\n MARCUS_COMMENTS_ON_INDEX = 10\n MARCUS_COMMENT_EXCERPTS_ON_INDEX = 2\n MARCUS_ITEMS_IN_FEED = 20\n MARCUS_AUTHOR_ID = 1\n MARCUS_TAG_MINIMUM_ARTICLES = 0\n \n # Specify blog names:\n from django.utils.translation import ugettext_lazy as _\n MARCUS_TITLE = _('Blog')\n MARCUS_SUBTITLE = _('Sample blog')\n \n MARCUS_DESCRIPTION = _('')\n MARCUS_KEYWORDS = _('')\n\n # You can specify extras for markdown:\n MARCUS_MARKDOWN_EXTRAS = ['code-friendly', 'wiki-tables']\n \n # You can specify #hashtag or @name as suffix for Twitter:\n MARCUS_RETWEET_SUFFIX = \"#marcus\"\n\n # Specify a fields which will used in search:\n MARCUS_SEARCH_FIELDS = [\n 'slug', 'title_ru', 'title_en', 'text_ru', 'text_en',\n 'categories__slug', 'categories__title_ru', 'categories__title_en',\n ]\n \n # OpenID sessions dir. OpenID authentication will not work without it.\n SCIPIO_STORE_ROOT = os.path.join(STORAGE_ROOT, 'scipio')\n \n # URL passed to OpenID-provider to identify site that requests authentication.\n # Should not end with '/'.\n # Complete site URL is passed if the value is empty.\n SCIPIO_TRUST_URL = ''\n \n # Akismet is a spam filtering service.\n # Without the key will not work comments.\n # You can receive the key here https://akismet.com/signup/\n SCIPIO_AKISMET_KEY = ''\n \n SCIPIO_USE_CONTRIB_SITES = True\n \n AUTHENTICATION_BACKENDS = (\n 'scipio.authentication.OpenIdBackend',\n 'django.contrib.auth.backends.ModelBackend',\n )\n \n TEMPLATE_CONTEXT_PROCESSORS = (\n 'django.contrib.auth.context_processors.auth',\n 'django.core.context_processors.request',\n 'marcus.context_processors.marcus_context',\n )\n\n MEDIA_ROOT = os.path.join(STORAGE_ROOT, 'media')\n MEDIA_URL = '/media/'\n \n STATIC_ROOT = os.path.join(STORAGE_ROOT, 'static')\n STATIC_URL = '/static/'\n \n INSTALLED_APPS = (\n 'django.contrib.auth',\n 'django.contrib.admin',\n 'django.contrib.admindocs',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n 'django.contrib.messages',\n 'django.contrib.staticfiles',\n 'django.contrib.flatpages',\n 'marcus',\n 'scipio',\n )\n\n\nAdd to ``urls.py``::\n\n from django.conf.urls import patterns, include, url\n from django.contrib.staticfiles.urls import staticfiles_urlpatterns\n from django.contrib import admin\n \n admin.autodiscover()\n \n urlpatterns = patterns('',\n url(r'^admin/doc/', include('django.contrib.admindocs.urls')),\n url(r'^admin/', include(admin.site.urls)),\n url(r'^', include('marcus.urls')),\n )\n \n urlpatterns += staticfiles_urlpatterns()\n\n\n\nAnd run so::\n\n python ./manage.py runserver 8000\n\n\nAfter installation, going to http://localhost:8000/admin/scipio/profile/ and create you profile.\n\n\nWordpress importer settings:\n-----------------------------\n\nMarcus includes \"wordpress_importer\" it is command that imports your entries from the Wordpress to the Marcus.\nIt has a built-in pipelines for additional filtering data.\n::\n\n MARCUS_WORDPRESS_IMPORTER = {\n 'ARTICLE_PIPELINES': (\n 'marcus.wordpress_importer.pipelines.CodecolorerToHighlightJsPipeline',\n 'marcus.wordpress_importer.pipelines.WpContentUploadsToMediaPipeline',\n 'marcus.wordpress_importer.pipelines.BbCodeDetector',\n 'marcus.wordpress_importer.pipelines.EscapeTheUnderscore',\n # 'marcus.wordpress_importer.pipelines.ChangeUrlToArticleForImagePipeline',\n # 'marcus.wordpress_importer.pipelines.RemoveImgClassPipeline',\n # 'marcus.wordpress_importer.pipelines.HtmlToMarkdownPipeline',\n ),\n # 'CATEGORY_PIPELINES': tuple(),\n # 'TAG_PIPELINES': tuple(),\n 'COMMENT_PIPELINES': (\n 'marcus.wordpress_importer.pipelines.CodecolorerToHighlightJsPipeline',\n ),\n 'ALLOW_DOMAINS': ( # Used to determine the internal domain to import only local \"wp-content/uploads\", etc.\n 'my-old-blog-on-wordpress.org',\n 'www.my-old-blog-on-wordpress.org',\n ),\n }\n\n\nHow enable WYSIWYG?\n-----------------------------\n\nAs an editor was selected MarkitUp (http://markitup.jaysalvat.com/), so you need to install ``django-markitup``::\n\n pip install django-markitup\n\nNow, add to your ``settings.py``::\n\n INSTALLED_APPS = (\n ...\n 'markitup',\n )\n \n MARKITUP_FILTER = ('markdown2.markdown', {'safe_mode': True})\n MARKITUP_SET = 'marcus/sets/markdown'\n\nAnd add to your ``urls.py``::\n\n url(r'^markitup/', include('markitup.urls')),\n\nThat's all!\n\nInstallation guide for new projects:\n======================================\n::\n\n django-admin.py startproject project\n cd project\n pip install --process-dependency-links django-marcus # use \"--process-dependency-links\" for pip>=1.5\n ... Copy the settings to settings.py and you urls to you urls.py described above ...\n python ./manage.py syncdb\n python ./manage.py createsuperuser\n python ./manage.py runserver 8000\n\nGo to https://akismet.com/signup/, get a **key** and enter it here::\n\n SCIPIO_AKISMET_KEY = ''\n\nAfter installation, going to http://localhost:8000/admin/scipio/profile/ and create you profile.\n\nMySQL Timezone Fixes\n=====================\n\nIf you use MySQL and have problem with open an article by URL, it is likely that you did not work ``CONVERT_TZ``, it can be solved as follows::\n\n mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql\n\n\nLicense\n========\n\nBSD licensed.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/adw0rd/marcus", "keywords": "django", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "django-marcus", "package_url": "https://pypi.org/project/django-marcus/", "platform": "", "project_url": "https://pypi.org/project/django-marcus/", "project_urls": { "Homepage": "http://github.com/adw0rd/marcus" }, "release_url": "https://pypi.org/project/django-marcus/0.7.6/", "requires_dist": null, "requires_python": "", "summary": "Bilingual blog on Django", "version": "0.7.6" }, "last_serial": 4420044, "releases": { "0.4.2": [], "0.4.3": [ { "comment_text": "", "digests": { "md5": "4d8c83b455017a592ba1649c9e356294", "sha256": "9994a2a7e7b92efed4e7bc4625f036d8c799ffa8a46e7c9fde3669babbde9782" }, "downloads": -1, "filename": "django-marcus-0.4.3.tar.gz", "has_sig": false, "md5_digest": "4d8c83b455017a592ba1649c9e356294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95195, "upload_time": "2012-10-19T19:45:31", "url": "https://files.pythonhosted.org/packages/a9/58/062905186cb28ddbeb8d34f8c13494d1ad3f99f7b2e763b22628a4ec03df/django-marcus-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "22c79589a25a02e5f5067aae696559b4", "sha256": "b1045db7dda1e574dac042a5b0a5cec81e0c56f2ac34f505122fe3d48ddecaf4" }, "downloads": -1, "filename": "django-marcus-0.4.4.tar.gz", "has_sig": false, "md5_digest": "22c79589a25a02e5f5067aae696559b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97826, "upload_time": "2012-10-29T20:01:02", "url": "https://files.pythonhosted.org/packages/0a/42/bc3bcc83310b56cd2ed4e13b69e5d085e2bc0d7876574d171070c3b04b96/django-marcus-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "41008e96fd5fab21d3f7947d6486c572", "sha256": "77450aa4be9075806709ed736e8e301352c49e3e4acb4221c6b429353767830e" }, "downloads": -1, "filename": "django-marcus-0.4.5.tar.gz", "has_sig": false, "md5_digest": "41008e96fd5fab21d3f7947d6486c572", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97835, "upload_time": "2012-11-10T10:27:44", "url": "https://files.pythonhosted.org/packages/bf/ae/e6f5a399d18894db066221a2bebe1f77e7b046361dc55078ee4566817d63/django-marcus-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "eb1b946ab0f40f97e394631474169edc", "sha256": "ea6e5417d243eaec77b36098969fef4516b7d55442f2325b1794a437ffc7ac84" }, "downloads": -1, "filename": "django-marcus-0.4.6.tar.gz", "has_sig": false, "md5_digest": "eb1b946ab0f40f97e394631474169edc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97846, "upload_time": "2012-11-11T10:47:46", "url": "https://files.pythonhosted.org/packages/a2/c1/50ef4194aa3f6fc4a22998e1f739ffc85f24710ec3863504d1998480bf48/django-marcus-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "4b656d1d45942ab989e26713fbdac45f", "sha256": "471af308ba7a12b0dd9f8b2fd1d6cbaff4d937ebf970c9fdb76ee2f8d73641e1" }, "downloads": -1, "filename": "django-marcus-0.4.7.tar.gz", "has_sig": false, "md5_digest": "4b656d1d45942ab989e26713fbdac45f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107135, "upload_time": "2013-01-04T19:15:02", "url": "https://files.pythonhosted.org/packages/cc/b2/9178e6911fb0c64fca04d79f9f35967a9ebfe77039d6d709e35d4e293d23/django-marcus-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "4c6645e3902cff362b384cec10f6dcc7", "sha256": "67e4ed50dad896b322681c948f98186741f4dadf8d7d4c8416e436192b8eff29" }, "downloads": -1, "filename": "django-marcus-0.4.8.tar.gz", "has_sig": false, "md5_digest": "4c6645e3902cff362b384cec10f6dcc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108076, "upload_time": "2013-01-31T13:48:03", "url": "https://files.pythonhosted.org/packages/0e/f7/557570842184adfb67832971b70c957cdfd237b06eed4468107885647808/django-marcus-0.4.8.tar.gz" } ], "0.4.9": [ { "comment_text": "", "digests": { "md5": "4454de9d744a431720fc2c5a47e60095", "sha256": "d537fc9ea7567ea40f706f19914e5436c6e09f00af8654f95b02c2196605d501" }, "downloads": -1, "filename": "django-marcus-0.4.9.tar.gz", "has_sig": false, "md5_digest": "4454de9d744a431720fc2c5a47e60095", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108096, "upload_time": "2013-02-02T06:36:36", "url": "https://files.pythonhosted.org/packages/f9/ff/dfee8776d0376708cbcc6508fa6a04f5c25b35acdcb37ef91ff308afb3ce/django-marcus-0.4.9.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "2c1ad8fc8c6a8185b6987bc411242cd6", "sha256": "e13f22e70de9ab3851172ad4e02903d30eef92e978aa5b6bfe7886dde2de9105" }, "downloads": -1, "filename": "django-marcus-0.5.0.tar.gz", "has_sig": false, "md5_digest": "2c1ad8fc8c6a8185b6987bc411242cd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108848, "upload_time": "2013-02-18T08:03:05", "url": "https://files.pythonhosted.org/packages/a4/78/76dadd230ea90b7ed6f7acd9531e02253f76511b9dba66b6957a9588cd78/django-marcus-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "a9d19416ce6c5d9bd861e4a63f8680f9", "sha256": "32131daf92eeb4337f7af294be33057fb2326ae5bbc49e87374d6ff756960804" }, "downloads": -1, "filename": "django-marcus-0.5.1.tar.gz", "has_sig": false, "md5_digest": "a9d19416ce6c5d9bd861e4a63f8680f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112768, "upload_time": "2013-05-05T11:48:44", "url": "https://files.pythonhosted.org/packages/eb/f2/478bc85198f5f0ce67a91bcf185857d80f4fccffde2b5c959b3e61836693/django-marcus-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "d84520acfa87202e50fa52a163ee60fb", "sha256": "fee5d76a01ca521a77978a3c93291341ded9cea4f8bee9d031d765bfe923a20f" }, "downloads": -1, "filename": "django-marcus-0.5.2.tar.gz", "has_sig": false, "md5_digest": "d84520acfa87202e50fa52a163ee60fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112759, "upload_time": "2013-05-05T12:15:24", "url": "https://files.pythonhosted.org/packages/0f/33/081f706dedd7e50d4e72930d2b084c8da1930c49c870c00aa5103fa06dab/django-marcus-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "9e6113110f99ad4e607a295ba92c8e1d", "sha256": "2be3145956f11e4c914ece9c95fbe4d588d8be13a63941016ea01d4cc662efd0" }, "downloads": -1, "filename": "django-marcus-0.5.3.tar.gz", "has_sig": false, "md5_digest": "9e6113110f99ad4e607a295ba92c8e1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117322, "upload_time": "2013-05-05T12:59:03", "url": "https://files.pythonhosted.org/packages/2b/fd/0c7897bb868a110839b8f8a770323d1e4b160137d6ebdd125c14a4c9db26/django-marcus-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "4d5d555dd58d69aa918674ffed87a804", "sha256": "a679795c6165b1a331c1c348f79c10cdb720ed8f87276fb152aa9e2b38945de7" }, "downloads": -1, "filename": "django-marcus-0.5.4.tar.gz", "has_sig": false, "md5_digest": "4d5d555dd58d69aa918674ffed87a804", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117687, "upload_time": "2013-05-12T08:18:11", "url": "https://files.pythonhosted.org/packages/34/15/2eaf6e2f296f6cc4c5156c9369408ed8785f0bd70ce27af00855bd2393a8/django-marcus-0.5.4.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "66901c2cf6eb4421fd5ca62b5e90d4d7", "sha256": "c142df4b265fe416bf6df3f2f5aee85a80515f5798dba2221d88d4bf09637ad1" }, "downloads": -1, "filename": "django-marcus-0.5.5.tar.gz", "has_sig": false, "md5_digest": "66901c2cf6eb4421fd5ca62b5e90d4d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117644, "upload_time": "2013-07-23T21:12:24", "url": "https://files.pythonhosted.org/packages/7a/38/95b7ff3d026277f6d6c2720593c433126c49e131a6e0b51750b2ac9e64ed/django-marcus-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "36c7b661567b93ca12e03b24af0f1ffc", "sha256": "6f97d0f8fc14f3f8d4c4fe198803fc39bd0496378279c29a98be3eb98f9fa39c" }, "downloads": -1, "filename": "django-marcus-0.5.6.tar.gz", "has_sig": false, "md5_digest": "36c7b661567b93ca12e03b24af0f1ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118030, "upload_time": "2014-12-28T09:05:26", "url": "https://files.pythonhosted.org/packages/4a/59/d741eba3cabb69fc0d6f08ab7fbc2d59f8b3b6f8db800a639f41349821c2/django-marcus-0.5.6.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "40ab79a44d54002635dd1ccf7d42754c", "sha256": "6112b559b17225057a4a5b536d54e4ffa7085fce845bb5f1e346a86e32d8d5af" }, "downloads": -1, "filename": "django-marcus-0.6.0.tar.gz", "has_sig": false, "md5_digest": "40ab79a44d54002635dd1ccf7d42754c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119096, "upload_time": "2015-04-28T16:47:38", "url": "https://files.pythonhosted.org/packages/dc/76/78d2fd47310e745b5acb26dcb8556900344adb96eb45d87598912d6d6b71/django-marcus-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "be4641f4b8dc8a55c68e2523af9048bc", "sha256": "b8253c1d2d0ba788fb17ca322729dd7d2a7d625e1f3669dd4497749f2b4e8ddf" }, "downloads": -1, "filename": "django-marcus-0.6.1.tar.gz", "has_sig": false, "md5_digest": "be4641f4b8dc8a55c68e2523af9048bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119168, "upload_time": "2015-04-28T17:48:07", "url": "https://files.pythonhosted.org/packages/be/d5/4f5dd6e100da751cd25a88e459d2cd279fb3ec6ab4f43817545c6fb42082/django-marcus-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "7d83646902127dea4d140c6cd009f4e6", "sha256": "a0dd34d2fd56c5845a9312c72e15a5aa94bddf0bad04b66fb2771978e2d80ba4" }, "downloads": -1, "filename": "django-marcus-0.6.2.tar.gz", "has_sig": false, "md5_digest": "7d83646902127dea4d140c6cd009f4e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179124, "upload_time": "2015-04-28T22:12:12", "url": "https://files.pythonhosted.org/packages/b5/e7/32a0e7bd71aad700d73a91ed2427608aad29ed04e9f946eea788a2f2c019/django-marcus-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "08a695fca03251047873720cae6ffcd9", "sha256": "c818e3da3ae3e19d05c3198ea144ab3e52fbfb6ccb3e17b6c17cace127547918" }, "downloads": -1, "filename": "django-marcus-0.6.3.tar.gz", "has_sig": false, "md5_digest": "08a695fca03251047873720cae6ffcd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179140, "upload_time": "2015-04-28T22:37:00", "url": "https://files.pythonhosted.org/packages/46/c6/1b688d4a49b1161dc645573fb42e1aa83be560df8e8e7e9d366cf1930f03/django-marcus-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "7e0a7df234e511406c6ca2fab865f994", "sha256": "f36499e350f7b45e4ae3c5729b34c5edb6663c526f12f13edb1e80874cc53652" }, "downloads": -1, "filename": "django-marcus-0.6.4.tar.gz", "has_sig": false, "md5_digest": "7e0a7df234e511406c6ca2fab865f994", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179423, "upload_time": "2015-05-12T16:12:19", "url": "https://files.pythonhosted.org/packages/2f/34/33b5f640b5a0fcd9601d9e8fd0d06843cca149a13235acbf51339c1cf266/django-marcus-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "f26f5ab5bf103f35d12007109d4a7c0d", "sha256": "797f3e1dec5c985d8f093f04cdc865ce08b256565a30a4cca5a8e52582279818" }, "downloads": -1, "filename": "django-marcus-0.6.5.tar.gz", "has_sig": false, "md5_digest": "f26f5ab5bf103f35d12007109d4a7c0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179480, "upload_time": "2015-05-27T18:26:14", "url": "https://files.pythonhosted.org/packages/6c/62/72e93ae882b1c7ef0fb53a5d3a1fd01c848b15ebb5171e1a329f92d1db33/django-marcus-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "ee62e67bb969b0ad8d5483cd9b483903", "sha256": "88c181a5a60de58456e4fb071715169f8b87b06c10ec5368ad49e95b4a850fb0" }, "downloads": -1, "filename": "django-marcus-0.6.6.tar.gz", "has_sig": false, "md5_digest": "ee62e67bb969b0ad8d5483cd9b483903", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179498, "upload_time": "2015-05-27T20:21:52", "url": "https://files.pythonhosted.org/packages/54/91/b965e5b94f0287419fb73c8d5a9721e74c5ea9e4f74cee312e76a4169cbe/django-marcus-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "db30bafd587a0b94b70fb5f6988fdd08", "sha256": "658ec5db72fdc1e6f8bca23d304dc64e30249b22c0b876c2df69b825d253aba2" }, "downloads": -1, "filename": "django-marcus-0.6.7.tar.gz", "has_sig": false, "md5_digest": "db30bafd587a0b94b70fb5f6988fdd08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179500, "upload_time": "2015-06-15T17:09:37", "url": "https://files.pythonhosted.org/packages/ad/ec/c9727e126483af543aef915c56ae4edea93d88d64390b6126b7cd8e068fa/django-marcus-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "58ea286a36c63024f75fdb620f9657e1", "sha256": "9577f99e2efc0768677c2b078f937aef25c1e47d0480fa47ddd3ccfb9cb409da" }, "downloads": -1, "filename": "django-marcus-0.6.8.tar.gz", "has_sig": false, "md5_digest": "58ea286a36c63024f75fdb620f9657e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179487, "upload_time": "2015-06-16T15:36:47", "url": "https://files.pythonhosted.org/packages/88/5d/f26ccce0fa6c9f81ab85238141855ae851ba7b3ca8e53b2b6003379c0344/django-marcus-0.6.8.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "47b41713ec1cb4cbe78d3b65a0464f22", "sha256": "6966e8246257055677b1ba3995602f14c11e55506c13c26a8c14ec363e947c82" }, "downloads": -1, "filename": "django-marcus-0.7.tar.gz", "has_sig": false, "md5_digest": "47b41713ec1cb4cbe78d3b65a0464f22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177458, "upload_time": "2016-04-15T11:14:42", "url": "https://files.pythonhosted.org/packages/e9/b8/27e2fe0622ba4aa771bd177e875109c18d5fe0b11f3bd1bf52f55471b607/django-marcus-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "380343672b5083dc9f7ddd875f53d592", "sha256": "74a752c67e0a5a5e39e674f02de2fafa71cced1c8f349b5915d61fa6ae01fe3f" }, "downloads": -1, "filename": "django-marcus-0.7.1.tar.gz", "has_sig": false, "md5_digest": "380343672b5083dc9f7ddd875f53d592", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177479, "upload_time": "2016-05-13T09:37:03", "url": "https://files.pythonhosted.org/packages/b8/06/deda7dc8fb641cb13e0c7001be396c9fcc2f52f988843f9e5ca144d09b71/django-marcus-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c43b5361b2805d1c595f60d0b578d038", "sha256": "17341f8009b5fc7fe004991e78d551ef7d41d1da9b891249a45b1af855128b05" }, "downloads": -1, "filename": "django-marcus-0.7.2.tar.gz", "has_sig": false, "md5_digest": "c43b5361b2805d1c595f60d0b578d038", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177450, "upload_time": "2016-05-13T09:49:43", "url": "https://files.pythonhosted.org/packages/39/38/dad8edff3d3e57c43c4e06ad30faedb3276d3cd450fc61d5729ee438a801/django-marcus-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "3e69b345b69ed3df114fcdf39b1f2f29", "sha256": "8a0ff5a03f199c077e9972a1fadc617683d3228416108a70e418ad673c5dcef4" }, "downloads": -1, "filename": "django-marcus-0.7.3.tar.gz", "has_sig": false, "md5_digest": "3e69b345b69ed3df114fcdf39b1f2f29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 176186, "upload_time": "2018-10-23T21:39:42", "url": "https://files.pythonhosted.org/packages/7c/30/e47bec1a25f578935d34b35476700b98dc29b673cfa8fbaa8b1b6fdd2e7b/django-marcus-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "7b4c2f61f9660e66d0813124a1619868", "sha256": "3f060df1831490e976c47870dd3e1cbca6136c361613a779d72917948414ff10" }, "downloads": -1, "filename": "django-marcus-0.7.4.tar.gz", "has_sig": false, "md5_digest": "7b4c2f61f9660e66d0813124a1619868", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 176152, "upload_time": "2018-10-23T22:06:59", "url": "https://files.pythonhosted.org/packages/53/c6/f79e7c3c18815a17986bc8f4eeb373ec61c68e5b28f086b14c7997c24c9f/django-marcus-0.7.4.tar.gz" } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "de56154f0abe0c1f0b569d725e374af8", "sha256": "8dc740f672f376b9f5b3937f7ed5e6690c69f1c05745f0b7d35f43a794a408bc" }, "downloads": -1, "filename": "django-marcus-0.7.5.tar.gz", "has_sig": false, "md5_digest": "de56154f0abe0c1f0b569d725e374af8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 176145, "upload_time": "2018-10-24T15:32:55", "url": "https://files.pythonhosted.org/packages/92/b7/dd893312a55f4969c0744bae6590733fef949d28adb4789076cad0ca9dc0/django-marcus-0.7.5.tar.gz" } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "bfeb1df6a928af25928bf52cb1bcebac", "sha256": "35091c169dc3c6be8b0a26c5a8a73e87f402bfcd2107a186242aa57afe377e16" }, "downloads": -1, "filename": "django-marcus-0.7.6.tar.gz", "has_sig": false, "md5_digest": "bfeb1df6a928af25928bf52cb1bcebac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 176209, "upload_time": "2018-10-26T17:03:25", "url": "https://files.pythonhosted.org/packages/6f/51/f78e3eae26a57775305bc3dcbfc04e0098b79857260387345d7f9bdf4ff6/django-marcus-0.7.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bfeb1df6a928af25928bf52cb1bcebac", "sha256": "35091c169dc3c6be8b0a26c5a8a73e87f402bfcd2107a186242aa57afe377e16" }, "downloads": -1, "filename": "django-marcus-0.7.6.tar.gz", "has_sig": false, "md5_digest": "bfeb1df6a928af25928bf52cb1bcebac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 176209, "upload_time": "2018-10-26T17:03:25", "url": "https://files.pythonhosted.org/packages/6f/51/f78e3eae26a57775305bc3dcbfc04e0098b79857260387345d7f9bdf4ff6/django-marcus-0.7.6.tar.gz" } ] }