{
"info": {
"author": "Matthew Scragg",
"author_email": "scragg@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
],
"description": "# Realms Wiki Beta\n\nGit based wiki written in Python\nInspired by [Gollum][gollum], [Ghost][ghost], and [Dillinger][dillinger].\nBasic authentication and registration included.\n\nDemo: http://realms.io\nThis domain is being used temporarily as a demo so expect it to change.\n\nSource: https://github.com/scragg0x/realms-wiki\n\n## Features\n\n- Built with Bootstrap 3.\n- Markdown (w/ HTML Support).\n- Syntax highlighting (Ace Editor).\n- Live preview.\n- Collaboration (TogetherJS / Firepad).\n- Drafts saved to local storage.\n- Handlebars for templates and logic.\n\n## Screenshots\n\n[
](https://db.tt/Q2XHGRnT) [
](https://db.tt/pIZ4w2oN) [
](https://db.tt/ERLmDHrk) [
](https://db.tt/Ls08ocLh) [
](https://db.tt/7QVfXFQ4) [
](https://db.tt/Lna3BOm1)\n\n## Requirements\n\n- Python 2.7\n\n### Optional\n\n- Nginx (if you want proxy requests, this is recommended).\n- Memcached or Redis, default is memonization.\n- MariaDB, MySQL, Postgresql, or another database supported by SQLAlchemy, default is sqlite.\n Anon or single user does not require a database.\n\n## Installation\n\n### Requirements installation\n\nYou will need the following packages to get started:\n\n#### Ubuntu\n\n sudo apt-get install -y python-pip python-dev libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libyaml-dev libssl-dev libsasl2-dev libldap2-dev\n\n#### CentOS / RHEL\n\n yum install -y python-pip python-devel.x86_64 libxslt-devel.x86_64 libxml2-devel.x86_64 libffi-devel.x86_64 libyaml-devel.x86_64 libxslt-devel.x86_64 zlib-devel.x86_64 openssl-devel.x86_64 openldap2-devel cyrus-sasl-devel python-pbr gcc\n \n#### OSX / Windows\n\nThis app is designed for Linux and I recommend using Vagrant to install on OSX or Windows.\n\n### Realms Wiki installation via PyPI\n\nThe easiest way. Install it using Python Package Index:\n\n pip install realms-wiki\n\n### Realms Wiki installation via Git\n\n#### Ubuntu\n\n git clone https://github.com/scragg0x/realms-wiki\n cd realms-wiki\n\n sudo apt-get install -y software-properties-common python-software-properties\n sudo add-apt-repository -y ppa:chris-lea/node.js\n sudo apt-get update\n sudo apt-get install -y nodejs python-pip python-dev libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libyaml-dev libssl-dev libsasl2-dev libldap2-dev\n sudo npm install -g bower\n bower install\n\n virtualenv .venv\n source .venv/bin/activate\n\n pip install -r requirements.txt\n realms-wiki start\n \nNodeJS is required for installing [bower](http://bower.io) and it's used for pulling front end dependencies.\n\n### Realms Wiki via Vagrant\n\nVagrantfile is included for development or running locally.\nTo get started with Vagrant, download and install Vagrant and VirtualBox for your platform with the links provided:\n\n- https://www.vagrantup.com/downloads.html\n- https://www.virtualbox.org/wiki/Downloads\n\nThen execute the following in the terminal:\n\n git clone https://github.com/scragg0x/realms-wiki\n cd realms-wiki\n vagrant up\n\nCheck [http://127.0.0.1:5000/](http://127.0.0.1:5000/) to make sure it's running.\n\n### Realms Wiki via Docker\n\nMake sure you have docker installed. http://docs.docker.com/installation/\nHere is an example run command, it will pull the image from docker hub initially.\n\n docker run --name realms-wiki -p 5000:5000 -d realms/realms-wiki\n \nYou can build your own image if you want. Mine is based off https://github.com/phusion/baseimage-docker\nThe Dockerfile is located in [docker/Dockerfile](docker/Dockerfile) `realms/base` just creates the deploy user.\n\n## Config and Setup\n\nYou should be able to run the wiki without configuration using the default config values.\nYou may want to customize your app and the easiest way is the setup command:\n\n realms-wiki setup\n \nThis will ask you questions and create a `realms-wiki.json` file.\nYou can manually edit this file as well.\nAny config value set in `realms-wiki.json` will override values set in `realms/config/__init__.py`.\n\n### Nginx Setup\n\n sudo apt-get install -y nginx\n\nCreate a file called `realms.conf` in `/etc/nginx/conf.d`\n\n sudo nano /etc/nginx/conf.d/realms.conf\n\nPut the following sample configuration in that file:\n\n server {\n listen 80;\n \n # Your domain here\n server_name wiki.example.org;\n \n # Settings to by-pass for static files \n location ^~ /static/ {\n # Example:\n root /full/path/to/realms/;\n }\n \n location / {\n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header Host $http_host;\n \n proxy_pass http://127.0.0.1:5000/;\n proxy_redirect off;\n }\n }\n\n\nTest Nginx config:\n \n sudo nginx -t\n\nReload Nginx:\n\n sudo service nginx reload\n\n### Apache + mod_wsgi Setup\n\n sudo apt-get install -y apache2 libapache2-mod-wsgi\n\nCreate a virtual host configuration in `/etc/apache2/sites-available/realms_vhost`\n\n \n ServerName wiki.example.org\n\n WSGIDaemonProcess realms_wsgi display-name=%{GROUP}\n WSGIProcessGroup realms_wsgi\n WSGIScriptAlias / /var/www/my-realms-dir/wsgi.py\n\n Alias /static /full/path/to/realms/static\n \n\nCreate `/var/www/my-realms-dir/wsgi.py`\n\n import os\n import site\n\n # Uncomment the following lines if you are using a virtual environment\n\n # ----------------------------------\n # Enter path to your virtualenv's site-packages directory\n # VENV_SITE_DIR = \".venv/lib/python2.7/site-packages\"\n # PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))\n # site.addsitedir(os.path.abspath(os.path.join(PROJECT_ROOT, VENV_SITE_DIR)))\n # ----------------------------------\n\n from realms import create_app\n application = create_app()\n\nEnable the virtual host:\n\n sudo a2ensite realms_vhost\n\nTest your configuration:\n\n apache2ctl configtest\n\nReload apache:\n\n sudo service apache2 reload\n\n### MySQL Setup\n \n sudo apt-get install -y mysql-server mysql-client libmysqlclient-dev\n realms-wiki pip install python-memcached\n \n### MariaDB Setup\n \n sudo apt-get install -y mariadb-server mariadb-client libmariadbclient-dev\n realms-wiki pip install MySQL-Python\n\n### Postgres Setup\n\n sudo apt-get install -y libpq-dev postgresql postgresql-contrib postgresql-client\n realms-wiki pip install psycopg2\n\n_Don't forget to create your database._\n\n## Search\n\nRealms wiki comes with basic search capabilities, however this is not recommended\nfor large wikis or if you require more advanced search capabilities.\nWe currently support Elasticsearch and Whoosh as alternative backend.\n\n### Elasticsearch Setup\n\nThere are multiple ways to install/run Elasticsearch. An easy way is to use your their\nrepositories. \n\n**apt**\n\n wget -qO - http://packages.elasticsearch.org/GPG-KEY-elasticsearch | sudo apt-key add -\n echo \"deb http://packages.elasticsearch.org/elasticsearch/1.4/debian stable main\" | sudo tee /etc/apt/sources.list.d/elasticsearch.list\n apt-get update && apt-get install elasticsearch\n \nFor `yum` instructions or more details, follow the link below:\n\nhttp://www.elasticsearch.org/guide/en/elasticsearch/reference/current/setup-repositories.html\n\n**Configuring Elasticsearch**\n\nIn your Realms Config, have the following options set:\n\n \"SEARCH_TYPE\": \"elasticsearch\"\n \"ELASTICSEARCH_URL\": \"http://127.0.0.1:9200\"\n\nOptionally, also set the following option to configure which fields are searchable:\n\n \"ELASTICSEARCH_FIELDS\": [\"name\"]\n\nAllowable values are `\"name\"`, `\"content\"`, `\"username\"`, `\"message\"`. The default is `[\"name\"]`.\n\n### Whoosh Setup\n\nSimply install Whoosh to your Python environment, e.g.\n\n pip install Whoosh\n\n**Configuring Whoosh**\n\nTo use Whoosh, set the following in your Realms config:\n\n \"SEARCH_TYPE\": \"whoosh\"\n \"WHOOSH_INDEX\": \"/path/to/your/whoosh/index\"\n \"WHOOSH_LANGUAGE\": \"en\"\n\nWHOOSH_INDEX has to be a path readable and writeable by Realm's user. It will be created automatically if it doesn't exist.\n\nWhoosh is set up to use language optimization, so set WHOOSH_LANGUAGE to the language used in your wiki. For available languages, check `whoosh.lang.languages`.\nIf your language is not supported, Realms will fall back to a simple text analyzer.\n\n## Authentication\n\n### Local\n\nLocal default will be done using a backend database as defined in the config.\nTo disable local authentication, put the following your config.\n\n \"AUTH_LOCAL_ENABLE\": false\n\n\n### LDAP (beta)\n\nRealms uses the following library to authenticate using LDAP. https://github.com/ContinuumIO/flask-ldap-login\nIt supports direct bind and bind by search. \nUse these examples as a guide and place it in your realms-wiki.json config.\n\n\n#### Bind By Search Example\n\nIn this example, BIND_DN and BIND_AUTH are used to search and authenticate. Leaving them blank implies anonymous authentication.\n\n \"LDAP\": {\n \"URI\": \"ldap://localhost:8389\",\n \"BIND_DN\": \"\",\n \"BIND_AUTH\": \"\",\n \"USER_SEARCH\": {\"base\": \"dc=realms,dc=io\", \"filter\": \"uid=%(username)s\"},\n \"KEY_MAP\": {\n \"username\":\"cn\",\n \"email\": \"mail\"\n }\n }\n\n#### Direct Bind Example\n\n \"LDAP\": {\n \"URI\": \"ldap://localhost:8389\",\n \"BIND_DN\": \"uid=%(username)s,ou=People,dc=realms,dc=io\",\n \"KEY_MAP\": {\n \"username\":\"cn\",\n \"email\": \"mail\",\n },\n \"OPTIONS\": {\n \"OPT_PROTOCOL_VERSION\": 3,\n }\n }\n\n\n### OAuth (beta)\n\nRealms currently supports Github, Twitter, Facebook and Google. Each provider requires a key and secret.\nPut them in your `realms-wiki.json` config file. Use the example below.\n\n \"OAUTH\": {\n \"twitter\": {\n \"key\": \"\",\n \"secret\": \"\"\n },\n \"github\": {\n \"key\": \"\",\n \"secret\": \"\"\n }\n }\n\n### Authentication by reverse proxy\n\nIf you configured realms behind a reverse-proxy or a single-sign-on, it is possible to delegate authentication to\nthe proxy.\n\n \"AUTH_PROXY\": true\n \nNote: of course with that setup you must ensure that **Realms is only accessible through the proxy**.\n\nExample Nginx configuration:\n \n location / {\n auth_basic \"Restricted\";\n auth_basic_user_file /etc/nginx/.htpasswd;\n \n proxy_set_header X-Real-IP $remote_addr;\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n proxy_set_header Host $http_host;\n proxy_set_header REMOTE_USER $remote_user;\n \n proxy_pass http://127.0.0.1:5000/;\n proxy_redirect off;\n } \n \nBy default, Realms will look for the user ID in `REMOTE_USER` HTTP header. You can specify another header name with:\n\n \"AUTH_PROXY_HEADER_NAME\": \"LOGGED_IN_USER\"\n \n\n\n## Running\n\n realms-wiki start\n \n### Upstart\n \nSetup upstart with this command:\n\n sudo realms-wiki setup_upstart\n\nThis command requires root priveleges because it creates an upstart script.\nAlso note that ports below `1024` require user root.\nAfter your config is in place use the following commands:\n\n sudo start realms-wiki\n sudo stop realms-wiki\n sudo restart realms-wiki\n \n\n### Development mode\n\nThis will start the server in the foreground with auto reloaded enabled:\n\n realms-wiki dev\n\n### Other commands\n\n Usage: realms-wiki [OPTIONS] COMMAND [ARGS]...\n \n Options:\n --help Show this message and exit.\n \n Commands:\n auth\n configure Set config.json, expects JSON encoded string\n create_db Creates DB tables\n dev Run development server\n drop_db Drops DB tables\n pip Execute pip commands, useful for virtualenvs\n restart Restart server\n run Run production server (alias for start)\n setup Start setup wizard\n setup_upstart Start upstart conf creation wizard\n start Run server daemon\n status Get server status\n stop Stop server\n test Run tests\n version Output version\n\nAccess from your browser:\n\nhttp://localhost:5000\n\n## Templating\n\nRealms uses Handlebars partials to create templates.\nEach page that you create can be imported as a partial.\n\nThis page imports and uses a partial:\n\nhttp://realms.io/_edit/hbs\n\nThis page contains the content of the partial:\n\nhttp://realms.io/_edit/example-tmpl\n \nI locked these pages to preserve them. \nYou can copy and paste into a new page for testing purposes.\n\n## Contributing\n\nIssues and pull requests are welcome.\nPlease follow the code style guide.\n\n[Python style guide](https://www.python.org/dev/peps/pep-0008/)\n\n## Author\n\nMatthew Scragg \n\n[gollum]: https://github.com/gollum/gollum\n[ghost]: https://github.com/tryghost/Ghost\n[dillinger]: https://github.com/joemccann/dillinger/",
"description_content_type": null,
"docs_url": null,
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/scragg0x/realms-wiki",
"keywords": null,
"license": "GPLv2",
"maintainer": null,
"maintainer_email": null,
"name": "realms-wiki",
"package_url": "https://pypi.org/project/realms-wiki/",
"platform": "any",
"project_url": "https://pypi.org/project/realms-wiki/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "https://github.com/scragg0x/realms-wiki"
},
"release_url": "https://pypi.org/project/realms-wiki/0.9.3/",
"requires_dist": null,
"requires_python": null,
"summary": "Simple git based wiki",
"version": "0.9.3"
},
"last_serial": 2362957,
"releases": {
"0.3.22": [
{
"comment_text": "",
"digests": {
"md5": "6b045de579cb5b548a52733f27b38a78",
"sha256": "6bffeb574d902a7e726a29c67e5579aed1abbc07e9f5169face9ca684662bdf1"
},
"downloads": -1,
"filename": "realms-wiki-0.3.22.tar.gz",
"has_sig": false,
"md5_digest": "6b045de579cb5b548a52733f27b38a78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10627238,
"upload_time": "2014-10-22T18:57:35",
"url": "https://files.pythonhosted.org/packages/c1/99/f7c2a3e677478768ec8408eef668cc5dc6d4aa07cebadc7e1e2b3d61bd05/realms-wiki-0.3.22.tar.gz"
}
],
"0.3.23": [
{
"comment_text": "",
"digests": {
"md5": "8d4b6c44ccc0627bdfb56edd7fb75cf7",
"sha256": "a088dc6f679ecb544cb4d6960010f82f170a6dd0ab0cbbdae08544050704f207"
},
"downloads": -1,
"filename": "realms-wiki-0.3.23.tar.gz",
"has_sig": false,
"md5_digest": "8d4b6c44ccc0627bdfb56edd7fb75cf7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10626899,
"upload_time": "2014-10-22T19:06:12",
"url": "https://files.pythonhosted.org/packages/25/0f/e312623168855e7fa19f191c0dc031d9c6d658ba4b7d947f45f3cd1324de/realms-wiki-0.3.23.tar.gz"
}
],
"0.3.24": [
{
"comment_text": "",
"digests": {
"md5": "d37adb6f7360d7a4baa5aff9635c531e",
"sha256": "1708795ab3a8916aa76340b8a2dac0f6ae7d96f6b520c3472235e828f23eda70"
},
"downloads": -1,
"filename": "realms-wiki-0.3.24.tar.gz",
"has_sig": false,
"md5_digest": "d37adb6f7360d7a4baa5aff9635c531e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10627504,
"upload_time": "2014-10-22T20:34:27",
"url": "https://files.pythonhosted.org/packages/fe/f2/f11a7bd120fcbf98ab3b5cad9aff78bba3920068b6a4bcc559bb19dbddc1/realms-wiki-0.3.24.tar.gz"
}
],
"0.3.25": [
{
"comment_text": "",
"digests": {
"md5": "6618393f1df30ea7941304610813163a",
"sha256": "4e0bd5b16d3466418f83700076269b950f6f482241394e0cdf616ea193a4814a"
},
"downloads": -1,
"filename": "realms-wiki-0.3.25.tar.gz",
"has_sig": false,
"md5_digest": "6618393f1df30ea7941304610813163a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10627259,
"upload_time": "2014-10-22T21:46:36",
"url": "https://files.pythonhosted.org/packages/64/3c/8c3d008421962811089549247729bde1558c1cb171fb3a20f7a9a35fffe3/realms-wiki-0.3.25.tar.gz"
}
],
"0.3.26": [
{
"comment_text": "",
"digests": {
"md5": "3a0744a752debd9a2bfdc0b164133877",
"sha256": "e182ff6790132d2c87818c85a98666c97d517cf96763fdabc9f5efd0a953e2b3"
},
"downloads": -1,
"filename": "realms-wiki-0.3.26.tar.gz",
"has_sig": false,
"md5_digest": "3a0744a752debd9a2bfdc0b164133877",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10627473,
"upload_time": "2014-10-22T22:17:51",
"url": "https://files.pythonhosted.org/packages/71/19/72bc95095f9708a40a0ec2ba07aabc295f3a17e91ef30d2ab21c0614906e/realms-wiki-0.3.26.tar.gz"
}
],
"0.3.31": [
{
"comment_text": "",
"digests": {
"md5": "c5985f84ec00ce88c0d5f4b3dfb5f303",
"sha256": "e39b3c409e00749c0d475df39d949cb33527f119265ba882fbe07b505363c4a1"
},
"downloads": -1,
"filename": "realms-wiki-0.3.31.tar.gz",
"has_sig": false,
"md5_digest": "c5985f84ec00ce88c0d5f4b3dfb5f303",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278509,
"upload_time": "2014-10-23T23:51:42",
"url": "https://files.pythonhosted.org/packages/01/19/03858738123c3e29d7c2fd22274139bbe15eab5485e825290659b31f73a5/realms-wiki-0.3.31.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "f3318e83ec24b9fb69b5e76fd26e7b4b",
"sha256": "6a283ec6b63b33a0230dc5852821daa5d12131a63ab8cdee974dc55b79887d32"
},
"downloads": -1,
"filename": "realms-wiki-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "f3318e83ec24b9fb69b5e76fd26e7b4b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278103,
"upload_time": "2014-10-24T19:38:19",
"url": "https://files.pythonhosted.org/packages/a0/46/0f8250df4e3c2dfcd24fb47bcb26ec2cf4acb8b46b67ce364ff114f10967/realms-wiki-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "81d92c56d7b4550043406611d095d5cc",
"sha256": "3ba24295035b0f4409a4f2b5a28316cd7fa3e80f7d45f6ff6588da43259494a7"
},
"downloads": -1,
"filename": "realms-wiki-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "81d92c56d7b4550043406611d095d5cc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278224,
"upload_time": "2014-10-24T19:47:48",
"url": "https://files.pythonhosted.org/packages/f9/29/245cb9ca3eef657d425901e6dcc9a100f39b35d7c652f1d9c888c07eb62e/realms-wiki-0.4.1.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "36b05881f0403b9ac024b1b2cccabba2",
"sha256": "db87f8d593d867d802b1567b38424d437b6957ab17c467da6ce8ff8a4f492d18"
},
"downloads": -1,
"filename": "realms-wiki-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "36b05881f0403b9ac024b1b2cccabba2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278069,
"upload_time": "2014-10-24T19:54:34",
"url": "https://files.pythonhosted.org/packages/74/f1/5bd60e48c8f9ab2fe107f21e269d82c56b0409b5de0e3cd0b902d31b2c7e/realms-wiki-0.4.3.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "099be19fc6c5017e0dc9184e059bac72",
"sha256": "66fe0d0e0ecc61f6b88c0959786473191c3ea6ca317801251d562816f6fd00d0"
},
"downloads": -1,
"filename": "realms-wiki-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "099be19fc6c5017e0dc9184e059bac72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10277763,
"upload_time": "2014-10-29T20:06:15",
"url": "https://files.pythonhosted.org/packages/3b/0f/f61c7e24673215c97eee235c150b016c30f76753df9fe4925a16a765994c/realms-wiki-0.4.4.tar.gz"
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "91ed8699cb5de903eea45fb5058965f1",
"sha256": "d82cf939b0c0602d4dd8b2a40e99d36a2456d6d8ebd7e50e59f132c81c92bd1d"
},
"downloads": -1,
"filename": "realms-wiki-0.4.5.tar.gz",
"has_sig": false,
"md5_digest": "91ed8699cb5de903eea45fb5058965f1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278176,
"upload_time": "2014-10-30T22:58:39",
"url": "https://files.pythonhosted.org/packages/ed/d9/6d1c978ee5eacedddcd131463952e578baeea5a984aa939317d2a9ee4c6d/realms-wiki-0.4.5.tar.gz"
}
],
"0.4.6": [
{
"comment_text": "",
"digests": {
"md5": "3a3e6c7c9ce455de7fa83e9cb8f53264",
"sha256": "efb94eb512272d1e25739e518be9e9653a6d95239affc7a2e61a12de717a0556"
},
"downloads": -1,
"filename": "realms-wiki-0.4.6.tar.gz",
"has_sig": false,
"md5_digest": "3a3e6c7c9ce455de7fa83e9cb8f53264",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278269,
"upload_time": "2014-11-11T18:49:59",
"url": "https://files.pythonhosted.org/packages/63/3c/28f4035de85b1f08d2736a83f6221b8578456c3bed26235a32a9c4699e3e/realms-wiki-0.4.6.tar.gz"
}
],
"0.4.7": [
{
"comment_text": "",
"digests": {
"md5": "6a56b801a8dd813763b6ab42a82038e0",
"sha256": "e0cb073aa16177d7f186f8db591979e8c3bb81d72f0a0ce85271acbfa87bb62e"
},
"downloads": -1,
"filename": "realms-wiki-0.4.7.tar.gz",
"has_sig": false,
"md5_digest": "6a56b801a8dd813763b6ab42a82038e0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278206,
"upload_time": "2014-11-11T19:55:03",
"url": "https://files.pythonhosted.org/packages/5e/e7/de0a55a5b985a4d8d28cab67b0ac95f6b87bc3600da9a976d7427542b126/realms-wiki-0.4.7.tar.gz"
}
],
"0.4.8": [
{
"comment_text": "",
"digests": {
"md5": "d88a391fce8495b7f061a56c24015b4c",
"sha256": "85841489ee89b0ad484ca829c4fd0873cea88c600e0a28d50d5f823d20e7dbd1"
},
"downloads": -1,
"filename": "realms-wiki-0.4.8.tar.gz",
"has_sig": false,
"md5_digest": "d88a391fce8495b7f061a56c24015b4c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278211,
"upload_time": "2014-11-11T20:09:30",
"url": "https://files.pythonhosted.org/packages/91/2b/ba05897f5a2012d534e4822b0f2391103c9d504e00c8dc1f092da0e273e2/realms-wiki-0.4.8.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "e1e0a11495c9e570dbd60b55e9c1e481",
"sha256": "10a828b0d7e2047e661524ef455188575a0288754b311ae817cc8ad47903d6e8"
},
"downloads": -1,
"filename": "realms-wiki-0.5.0.tar.gz",
"has_sig": false,
"md5_digest": "e1e0a11495c9e570dbd60b55e9c1e481",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278385,
"upload_time": "2014-11-12T23:10:39",
"url": "https://files.pythonhosted.org/packages/03/06/2930905f63db5289ca792de44a5edcad56ea65451ee41fe3ee7c344b7269/realms-wiki-0.5.0.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "3ecc0913d9c1f1be23a1591862dcf2d5",
"sha256": "2173171e495147d92b1c2fbba72cc222c395e762db928e057e790474d0ac1973"
},
"downloads": -1,
"filename": "realms-wiki-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "3ecc0913d9c1f1be23a1591862dcf2d5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278297,
"upload_time": "2014-11-13T04:11:24",
"url": "https://files.pythonhosted.org/packages/98/e2/35f627a9e87761a11ddd559aecb102fb79efa32aeccaab837f15afc11bf2/realms-wiki-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "1caa515077a075e9a7dc332601581aaa",
"sha256": "63b2de0d633bd08e4d44ae9792acd5380eec4dc9ae3ddc3430637e6e523e4f2f"
},
"downloads": -1,
"filename": "realms-wiki-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "1caa515077a075e9a7dc332601581aaa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10278312,
"upload_time": "2014-11-17T17:26:35",
"url": "https://files.pythonhosted.org/packages/cb/22/9d4d5608d50e4e4ee9bff64e810d6a9890ddcdd6168ed769b335d2d6ffb3/realms-wiki-0.5.2.tar.gz"
}
],
"0.5.3": [
{
"comment_text": "",
"digests": {
"md5": "96a086233520e34a0c3219f969630d4f",
"sha256": "d26b17f12c7ced648523d9a94de0f8cac4f3bc48f5cb291540c50fd7f38b833b"
},
"downloads": -1,
"filename": "realms-wiki-0.5.3.tar.gz",
"has_sig": false,
"md5_digest": "96a086233520e34a0c3219f969630d4f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9623147,
"upload_time": "2015-06-02T14:41:29",
"url": "https://files.pythonhosted.org/packages/ea/b9/ae3424bf8cf48d142faf9b7e465eb3aa7eb0807013ebb19ee433fab473f9/realms-wiki-0.5.3.tar.gz"
}
],
"0.5.4": [
{
"comment_text": "",
"digests": {
"md5": "2239f852996fb6ea84d2a158568d8594",
"sha256": "f07f97712587762876e1859d48ca61eed78bd2227c47483f14cf938e90dbda12"
},
"downloads": -1,
"filename": "realms-wiki-0.5.4.tar.gz",
"has_sig": false,
"md5_digest": "2239f852996fb6ea84d2a158568d8594",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9629362,
"upload_time": "2015-07-22T17:03:13",
"url": "https://files.pythonhosted.org/packages/f6/09/de60b5507f9b76aaf964febf062c4a68d56bb510ba5fd8ed08f4de330402/realms-wiki-0.5.4.tar.gz"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "a43214714aae487bb1a81cb913096673",
"sha256": "90bf923a38360f703fa13ec8b1befe9bcf02e814f66a93ac82a229ceaaf1e87f"
},
"downloads": -1,
"filename": "realms-wiki-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "a43214714aae487bb1a81cb913096673",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14419377,
"upload_time": "2015-12-07T02:57:20",
"url": "https://files.pythonhosted.org/packages/e4/d3/a929566c12205a5611d035c65575ffa6320a1b95556f91701b8cfa9b7744/realms-wiki-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "ab221c78ffc20dd0507fe7701a235452",
"sha256": "d8b0bd8ee95304adb7511af4a03c7f4f83fe636e60ff81b560b4ad6178ff17e1"
},
"downloads": -1,
"filename": "realms-wiki-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "ab221c78ffc20dd0507fe7701a235452",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14419453,
"upload_time": "2015-12-08T23:22:22",
"url": "https://files.pythonhosted.org/packages/ad/b7/9d503f1ae9b7a6693476bb3201dae1832f12a123c8c0f26724d9921fba20/realms-wiki-0.6.1.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "a87197e99be9a59dd2edbab4b537b843",
"sha256": "99c06ccba7e07e48015ae80666601e6621012d6a211cca467f6237a983f41841"
},
"downloads": -1,
"filename": "realms-wiki-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "a87197e99be9a59dd2edbab4b537b843",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14420495,
"upload_time": "2016-05-17T14:57:11",
"url": "https://files.pythonhosted.org/packages/5d/d2/2edd2ec28873aa5ce69903439a405bf439d172c480b59d2967e3668735a9/realms-wiki-0.7.0.tar.gz"
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "be17fc82745113422897ab9b6db99173",
"sha256": "97796447a18e5a29f2c661183310ee96aa8f431321f02439c2e194f337c1f443"
},
"downloads": -1,
"filename": "realms-wiki-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "be17fc82745113422897ab9b6db99173",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14420696,
"upload_time": "2016-06-24T21:53:16",
"url": "https://files.pythonhosted.org/packages/4a/e7/53b4fd1a0692df03fc3f454252a4d503364465bd009010a25c539cefb6c5/realms-wiki-0.8.0.tar.gz"
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "9a42198ce0a8ff2bb049e4d0ce248857",
"sha256": "f8d97bf5433fb8e74bfaa6a317da463e65111a2a3074b62bc2ea30cffa444939"
},
"downloads": -1,
"filename": "realms-wiki-0.8.1.tar.gz",
"has_sig": false,
"md5_digest": "9a42198ce0a8ff2bb049e4d0ce248857",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14421872,
"upload_time": "2016-08-03T16:55:55",
"url": "https://files.pythonhosted.org/packages/2b/93/0aeff986a08e117c6c45986b14f68d9663baf28f86667985e1437a9d78b5/realms-wiki-0.8.1.tar.gz"
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "dfa36d3dc0a6cfbe2571a69d3cf7b9be",
"sha256": "624d3325ce6a93db6d7daf2c01251478fce5a8477609ce6ee52c9a7ce74848da"
},
"downloads": -1,
"filename": "realms-wiki-0.9.0.tar.gz",
"has_sig": false,
"md5_digest": "dfa36d3dc0a6cfbe2571a69d3cf7b9be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15607332,
"upload_time": "2016-09-05T21:33:38",
"url": "https://files.pythonhosted.org/packages/0e/a0/d788d4e761d130f8a54ef0d7a495822eb5da61a853c88876a2ddfff18328/realms-wiki-0.9.0.tar.gz"
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "d9838cd9d4fc119c9f7c030998d43d48",
"sha256": "75c8ecd2adc4cbe7638f88b128b0f8c31c2cf3e0074276d5f7ee21eaca793b03"
},
"downloads": -1,
"filename": "realms-wiki-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "d9838cd9d4fc119c9f7c030998d43d48",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15613947,
"upload_time": "2016-09-07T15:54:30",
"url": "https://files.pythonhosted.org/packages/10/66/0b7659eace3e9feb5386f2c1b260b52e2206bf45d2da66f2be8e757096fe/realms-wiki-0.9.1.tar.gz"
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "6edeec47307c8be921ad4e62ed39ddb9",
"sha256": "10bbf8cd53eec62bcc30a107795ac28422f3d05d4798d9a2d9710bbb39016eb4"
},
"downloads": -1,
"filename": "realms-wiki-0.9.2.tar.gz",
"has_sig": false,
"md5_digest": "6edeec47307c8be921ad4e62ed39ddb9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18147861,
"upload_time": "2016-09-25T19:49:36",
"url": "https://files.pythonhosted.org/packages/57/b4/80346499d6ccb81d316df8748a4d58a20b8b4bb8c544f89e63e2f7a85868/realms-wiki-0.9.2.tar.gz"
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "a92338e6cf2797a20a1b92596c325788",
"sha256": "c9554b9bf241595cb5d00f9c6f9cbeb8d3432f16664243a9404a430a9de1d2cb"
},
"downloads": -1,
"filename": "realms-wiki-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "a92338e6cf2797a20a1b92596c325788",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18147948,
"upload_time": "2016-09-25T20:43:45",
"url": "https://files.pythonhosted.org/packages/3f/16/8de89ee706debd307ce1fc05ea8aae73c9124f2960d8de472c7e42a1854e/realms-wiki-0.9.3.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "a92338e6cf2797a20a1b92596c325788",
"sha256": "c9554b9bf241595cb5d00f9c6f9cbeb8d3432f16664243a9404a430a9de1d2cb"
},
"downloads": -1,
"filename": "realms-wiki-0.9.3.tar.gz",
"has_sig": false,
"md5_digest": "a92338e6cf2797a20a1b92596c325788",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18147948,
"upload_time": "2016-09-25T20:43:45",
"url": "https://files.pythonhosted.org/packages/3f/16/8de89ee706debd307ce1fc05ea8aae73c9124f2960d8de472c7e42a1854e/realms-wiki-0.9.3.tar.gz"
}
]
}