{ "info": { "author": "Calvin Edwards", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Flask", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "Note: version 2.1.1 fixes a major bug (see issue [#9](https://github.com/ed588/nselec/issues/9) on github)\nand it is strongly reccommended that you upgrade to this or a later version ASAP.\n# nselec\nAn election-running web app for your NationStates region.\n\n# Features\n- Supports for/against and fully-ranked elections\n- Automatically opens and closes elections at a given date and time\n- Verifies the voter's nation name with the NationStates verification API\n- Easy-to-use admin interface for managing elections\n- User management system with permissions and logins\n- Looks nice :)\n\n# Disclaimer\nThis software is still in fairly early beta, so there are probably bugs that I haven't noticed yet.\nPlease open an issue if you spot one! :)\n\n# Installation and Usage\nYou will need:\n- Python 3.5+ (with pip)\n- Any web server that supports wsgi.\n\n1. (Optional) Create a venv: `python3 -m venv venv`, and activate it: `source venv/bin/activate`\n2. Install nselec: `pip install nselec` (this will install requirements)\n3. Set things up:\n 1. Setup the environment: `export FLASK_APP=nselec`\n 2. Create the instance: `flask initialise`\n 3. Make yourself an admin user: `flask new_admin yourusername` and enter the password when prompted\n 4. Edit the config file. The path will be given to you when you did the initialisation command; it is normally at\n `venv/var/nselec-instance/config.py`. See the section \"Config File\" below for information on what you should put\n in that.\n4. (Optional) See if it works: `flask run` then visit the address it shows you. Do whatever you want, check\n it all works, then come back here.\n5. Connect it to your production WSGI server. This really depends on what server you're using, so you should read the \n [flask docs on deploying](http://flask.pocoo.org/docs/1.0/deploying/) for instructions. But normally you should just be able to put this \n ```python\n from nselec import create_app\n application = create_app()\n ```\n in your `wsgi.py`, and then do whatever you need to do. But I'm not a WSGI expert, go read the flask docs.\n6. Visit the website, log in using the credentials you supplied in step 3.3, make elections, add some more users, profit! Or maybe not, who knows...\n\n## The Config File\n- The first required field for this is `GET_VOTERS`, which should be a function that returns a dict of voters, which should look like this: `{\"honk_donk\": \"Honk Donk\", ...}`.\nIf you're using [my `ns-rc-checker` script](https://github.com/ed588/ns-rc-checker), then it'll look like this\n\n```python\nimport pickle\ndef GET_VOTERS():\n with open(\"/path/to/your/memstates.pkl\", \"rb\") as fp:\n data = pickle.load(fp)\n return data['example']\n```\n- Another required (well, not technically, but you definitely need to on production otherwise people could bypass all the security) field is `SECRET_KEY`. Check out the [flask docs](http://flask.pocoo.org/docs/1.0/config/#SECRET_KEY) for what you should set this to.\n- The three other required fields are `TITLE_MAINPAGE`, `TITLE_LONG`, and `TITLE_SHORT`.\n These string values control the title of the site, as displayed in different places. \n - `TITLE_MAINPAGE` is the big title on the main election listing page.\n - `TITLE_SHORT` is displayed in the page titles and as the first entry\n in breadcrumbs, linking back to the main page.\n - `TITLE_LONG` is displayed at the top of the footer of each page.\n\n These all have sensible (albeit fairly generic) defaults, so it's not \ncritical if you forget to set these.\n\n- Another field you can set is `DATABASE` which should be the filename of the database to use. It defaults \nto `\"nselec.db\"` in the instance folder, which should be fine for most people, but you can change it here if you really want.\n\n- The `FAVICON` field controls the url of the favicon used by the site. It defaults to `favicon.ico` in the application root.\n\n# Note on css\nThe CSS file (`nselec/static/site.min.css`) is [bulma](https://bulma.io) with some small customisations. The SCSS\nfile containing those customisations can be found [here](https://gist.github.com/ed588/9d87ba2bca0b6580fca6b691b5edcfc9).\n\n# History\n[Conifer](https://nationstates.net/region=conifer) is a region in the game NationStates.\nLike many other regions, we have democratic elections for things such as legislation and regional officials.\nThere didn't seem to be any existing solution for elections with large numbers of people which we didn't have to pay\nfor, so Honk Donk (aka ed588) made a quick app in Flask that just about solved the problem. This version of nselec\nis so bad that Honk Donk has refused to release it anywhere.\n\nA little later, when we realised that the existing app didn't support necessary things such as ranked elections, and \nthat the admin interface was impossible to use, (as well as the fact that all the code that wasn't in the templates\nwas in a single python file that was impossible to maintain or do anything with), Honk Donk rewrote the entire thing.\nIt now looked nicer (using the css library bulma for the frontend), supported ranked elections, and had a usable\ninterface for adding new elections. Additionally, it was split into separate files, so that Honk Donk could actually\nmaintain it and add new features in the future.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ed588/nselec", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "nselec", "package_url": "https://pypi.org/project/nselec/", "platform": "", "project_url": "https://pypi.org/project/nselec/", "project_urls": { "Homepage": "https://github.com/ed588/nselec" }, "release_url": "https://pypi.org/project/nselec/2.2.1/", "requires_dist": [ "flask", "tinydb", "tinydb-serialization", "ago" ], "requires_python": "", "summary": "Election website for your NationStates region", "version": "2.2.1" }, "last_serial": 5437470, "releases": { "2.0": [ { "comment_text": "", "digests": { "md5": "25451be9736570e69ffb24043554c76f", "sha256": "cd12b295a30ee08bf0e37ee755f53feefc542a6cce9e3b6f710e70f51917e105" }, "downloads": -1, "filename": "nselec-2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "25451be9736570e69ffb24043554c76f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88445, "upload_time": "2018-10-29T12:46:50", "url": "https://files.pythonhosted.org/packages/91/48/b046e71c21ab1dd6cb380d4f779b0b147e9379447268f591e478e38db418/nselec-2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3ba618dd5a5b1a61403b462cf6324af8", "sha256": "9b49e584c48af630767e2930023602528ac1887b26dc48a9b0e7f1a772662dd1" }, "downloads": -1, "filename": "nselec-2.0.tar.gz", "has_sig": false, "md5_digest": "3ba618dd5a5b1a61403b462cf6324af8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40667, "upload_time": "2018-10-29T12:46:55", "url": "https://files.pythonhosted.org/packages/6d/c2/ee76318e0b9aaf6ddd371648d08c03b4672be89f7484e57d7c13d7f74459/nselec-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "abed0ca78f395bb69e277a02fc454f62", "sha256": "9b36c4061e938481a38d98920e82a94447da0a777bc60313db956da7beb335ca" }, "downloads": -1, "filename": "nselec-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "abed0ca78f395bb69e277a02fc454f62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88365, "upload_time": "2018-10-30T10:09:50", "url": "https://files.pythonhosted.org/packages/24/ab/1773702a39cfdc91065c37ffd3b2f25d394fca3c61c6813d042b3a45172c/nselec-2.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2aac15d8af5ee649be16d74418bf5cbe", "sha256": "fb8594e3555ceeaa7a4cf151d495718cd2f2a00fd6db50bfa658074a2b47ef48" }, "downloads": -1, "filename": "nselec-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2aac15d8af5ee649be16d74418bf5cbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40581, "upload_time": "2018-10-30T10:10:51", "url": "https://files.pythonhosted.org/packages/12/ea/6fbc482631a353caf6a3e90fbe705351a21ab1b1e95e5bd0e49600850bc3/nselec-2.0.1.tar.gz" } ], "2.0.1.post1": [ { "comment_text": "", "digests": { "md5": "4c91b177abb65005b8e3d50295b9caae", "sha256": "852c7620acb557a198c4d3e560033310587a9905b67647660cd90daa36e145e0" }, "downloads": -1, "filename": "nselec-2.0.1.post1-py3-none-any.whl", "has_sig": false, "md5_digest": "4c91b177abb65005b8e3d50295b9caae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88435, "upload_time": "2018-10-30T12:29:53", "url": "https://files.pythonhosted.org/packages/7a/66/43e60dd5f6ac98eaf7b862457bd0aa962720bed6559e4acbed6db8b81d97/nselec-2.0.1.post1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "359a0a890bb85c2c59c47474a1fff43d", "sha256": "7a7f8afc0d572524a271bd4410348dc715f9665d89f3a53a7716d2335779f184" }, "downloads": -1, "filename": "nselec-2.0.1.post1.tar.gz", "has_sig": false, "md5_digest": "359a0a890bb85c2c59c47474a1fff43d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40588, "upload_time": "2018-10-30T12:29:54", "url": "https://files.pythonhosted.org/packages/31/c0/2bc264e2290cfbd07d99534e786975cbb8a9c6948ee194d9a2802fe124b8/nselec-2.0.1.post1.tar.gz" } ], "2.0a0": [ { "comment_text": "", "digests": { "md5": "a771994453b5f1286dc3d47a5d3b233c", "sha256": "bdad7a8c728f0b972397ea792e9bbd334b64f934e19208ab9cbf997397b18b05" }, "downloads": -1, "filename": "nselec-2.0a0-py3-none-any.whl", "has_sig": false, "md5_digest": "a771994453b5f1286dc3d47a5d3b233c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 43614, "upload_time": "2018-10-29T12:46:40", "url": "https://files.pythonhosted.org/packages/34/a6/7b312a5cc350c463e247f30531c1903a9efa7f58aa84efe23069fabe1ec9/nselec-2.0a0-py3-none-any.whl" } ], "2.0a1": [ { "comment_text": "", "digests": { "md5": "9346e158e278fb7b142bca968d648c53", "sha256": "2c8c0b9e492d1271e59a8665443c0e4dabd255543c0ea82ba39e1fc74cbed9bb" }, "downloads": -1, "filename": "nselec-2.0a1-py3-none-any.whl", "has_sig": false, "md5_digest": "9346e158e278fb7b142bca968d648c53", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44333, "upload_time": "2018-10-29T12:46:41", "url": "https://files.pythonhosted.org/packages/62/d7/069b8982caae8953cd763b5771b63930d6286ccbbfe6b56309f6db5e4984/nselec-2.0a1-py3-none-any.whl" } ], "2.0a2": [ { "comment_text": "", "digests": { "md5": "0fc277c5f1e81d5e410dee94b875f36b", "sha256": "64c2e528bb2efb636a7f66586bb5b5ab502a2629acaf6e0e0f96c310384a5ab0" }, "downloads": -1, "filename": "nselec-2.0a2-py3-none-any.whl", "has_sig": false, "md5_digest": "0fc277c5f1e81d5e410dee94b875f36b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44354, "upload_time": "2018-10-29T12:46:43", "url": "https://files.pythonhosted.org/packages/70/c3/f314fdbca67119b6af10d8c15e7bc944a06ce989deba792e3b13ca64d2c9/nselec-2.0a2-py3-none-any.whl" } ], "2.0a3": [ { "comment_text": "", "digests": { "md5": "0d6ed91d16a8f56326c5f2b67294eb9a", "sha256": "b02887c5e7f6d0634134e3b93a074ea92d5830a086093e3bb174daf924cd0d4f" }, "downloads": -1, "filename": "nselec-2.0a3-py3-none-any.whl", "has_sig": false, "md5_digest": "0d6ed91d16a8f56326c5f2b67294eb9a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44353, "upload_time": "2018-10-29T12:46:44", "url": "https://files.pythonhosted.org/packages/71/18/72e05b41b67ee2a5755a9aa4cbe9dbab40290f648e8f3c891268a841ca6e/nselec-2.0a3-py3-none-any.whl" } ], "2.0a4": [ { "comment_text": "", "digests": { "md5": "489d3b3f84ed874455c422f0876474ea", "sha256": "a082fb4b484d5975140dfdd48b202dde99efc2374a0cf2d8bce50a717e7ed4c6" }, "downloads": -1, "filename": "nselec-2.0a4-py3-none-any.whl", "has_sig": false, "md5_digest": "489d3b3f84ed874455c422f0876474ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46655, "upload_time": "2018-10-29T12:46:46", "url": "https://files.pythonhosted.org/packages/30/ac/6905b856a0c3fc4c16ed0cfee5d538d07cfabcdd8b7418d3bc5392e2dbca/nselec-2.0a4-py3-none-any.whl" } ], "2.0a5": [ { "comment_text": "", "digests": { "md5": "e2ffdcee12ed92feb252b00f0bc36243", "sha256": "7cb18572198559ca3dcc9ff9318f0ff9ab603966b5aff0f685f41ed4e0c84896" }, "downloads": -1, "filename": "nselec-2.0a5-py3-none-any.whl", "has_sig": false, "md5_digest": "e2ffdcee12ed92feb252b00f0bc36243", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 47831, "upload_time": "2018-10-29T12:46:47", "url": "https://files.pythonhosted.org/packages/c1/14/e9d581dac8848eceafb6fa264a91a01c60586ba4c16703d0a9de28e46b95/nselec-2.0a5-py3-none-any.whl" } ], "2.0a6": [ { "comment_text": "", "digests": { "md5": "9be38779a55879638a516cd409c4ea78", "sha256": "5ebf7327ee82f424de9cb85df674559313fa98c70528afeb9934adc3f0e707c4" }, "downloads": -1, "filename": "nselec-2.0a6-py3-none-any.whl", "has_sig": false, "md5_digest": "9be38779a55879638a516cd409c4ea78", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50463, "upload_time": "2018-10-29T12:46:48", "url": "https://files.pythonhosted.org/packages/79/de/02aa180f78c43a1cea2b4eba7a19ea6e8c392c91785b866bd1df8b605397/nselec-2.0a6-py3-none-any.whl" } ], "2.0rc0": [ { "comment_text": "", "digests": { "md5": "ee1543e9309c63062d0818540a27f41c", "sha256": "9e0324de453ebc0fe1c2bb51523d9e5dfeee601391cb126ee6d016507619d8d9" }, "downloads": -1, "filename": "nselec-2.0rc0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee1543e9309c63062d0818540a27f41c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 63702, "upload_time": "2018-10-28T11:12:44", "url": "https://files.pythonhosted.org/packages/78/fd/01f035834526eacead1d62b048533232bcfe61960da88412a6c3d9e9fe19/nselec-2.0rc0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb4c4f73f9e6ef270add38aab103d71f", "sha256": "88ec3ec540f7991848e786594e9cb89ceb5f17b8d588fb21d003014d37129111" }, "downloads": -1, "filename": "nselec-2.0rc0.tar.gz", "has_sig": false, "md5_digest": "cb4c4f73f9e6ef270add38aab103d71f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38846, "upload_time": "2018-10-28T11:13:12", "url": "https://files.pythonhosted.org/packages/eb/ba/70f8caea5128316211884580eedf68befcb671f4883a8e58e6dd21c68c03/nselec-2.0rc0.tar.gz" } ], "2.0rc1": [ { "comment_text": "", "digests": { "md5": "d4c45017bd748caf6052b0cdaf6155de", "sha256": "d29dc61519c94313265b38cd4242f44940de30ca6a8137b3e0e8e85a8e9d3aae" }, "downloads": -1, "filename": "nselec-2.0rc1-py3-none-any.whl", "has_sig": false, "md5_digest": "d4c45017bd748caf6052b0cdaf6155de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 87084, "upload_time": "2018-10-28T11:25:43", "url": "https://files.pythonhosted.org/packages/5e/85/d9898b7410b098a0ec16ed6e61adacc33d890a56b38f42db8b2af44470e3/nselec-2.0rc1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f070b9b778c76a26e9de4c132ac5426b", "sha256": "aa06cdca0189f9a3b5a054729877f28d0c373b3e66998530547497c3ddb38760" }, "downloads": -1, "filename": "nselec-2.0rc1.tar.gz", "has_sig": false, "md5_digest": "f070b9b778c76a26e9de4c132ac5426b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39139, "upload_time": "2018-10-28T11:25:44", "url": "https://files.pythonhosted.org/packages/65/eb/b46bfc51b1b73408f4a32fe5200c6d5b535321be190d31f936278f2fab82/nselec-2.0rc1.tar.gz" } ], "2.0rc2": [ { "comment_text": "", "digests": { "md5": "496970f23964bf6282bc48a21f56a0b0", "sha256": "6503eaa41b1dcb0b2df1206f8960f274be59d52e2e61fe9cddfb50b19568f8e5" }, "downloads": -1, "filename": "nselec-2.0rc2-py3-none-any.whl", "has_sig": false, "md5_digest": "496970f23964bf6282bc48a21f56a0b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 85557, "upload_time": "2018-10-28T11:28:20", "url": "https://files.pythonhosted.org/packages/21/e3/95301ac1bc8ebac38d8a88a95eb3cdfce092e73f2413e3f2ec939a1ed551/nselec-2.0rc2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0eebce3314184f7df24429a51b314e56", "sha256": "91014c973a6d24fd5288b34e4087759e7d52cb979cf222e7cfd649046645c813" }, "downloads": -1, "filename": "nselec-2.0rc2.tar.gz", "has_sig": false, "md5_digest": "0eebce3314184f7df24429a51b314e56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37707, "upload_time": "2018-10-28T11:28:21", "url": "https://files.pythonhosted.org/packages/1f/fb/600f89ca475c5a2ca666fba36229efd4105fe7ad0e4b9b3fd62641054f1c/nselec-2.0rc2.tar.gz" } ], "2.0rc3": [ { "comment_text": "", "digests": { "md5": "28fcabef455c83dba4c909b5e2f04b60", "sha256": "02e819d3fc302235c3819d144da28c44b889e9b06602130dca3a332983c77131" }, "downloads": -1, "filename": "nselec-2.0rc3-py3-none-any.whl", "has_sig": false, "md5_digest": "28fcabef455c83dba4c909b5e2f04b60", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88411, "upload_time": "2018-10-28T13:28:23", "url": "https://files.pythonhosted.org/packages/67/1b/893cd13d6d1bf3013f9bb3ba7aede74f69be37090a7f921a2fa0f5e76d91/nselec-2.0rc3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "91ccd3983ea551813c9e9e5215e11a81", "sha256": "4de49bad9d30e2c840b34b16b317c4cde1576f635bf6db3a44635abcfd9b5cf0" }, "downloads": -1, "filename": "nselec-2.0rc3.tar.gz", "has_sig": false, "md5_digest": "91ccd3983ea551813c9e9e5215e11a81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40488, "upload_time": "2018-10-28T13:28:24", "url": "https://files.pythonhosted.org/packages/f1/2d/c699f0b13dee981e42751eef3ff1f773651d1582fcee2c97b538ba32affd/nselec-2.0rc3.tar.gz" } ], "2.0rc5": [ { "comment_text": "", "digests": { "md5": "7332f99367dcd902467c7efa32b233ce", "sha256": "3e43ebbda4ba288cdd05063242573481bbd4f708469d37b40b174f2bb6072058" }, "downloads": -1, "filename": "nselec-2.0rc5-py3-none-any.whl", "has_sig": false, "md5_digest": "7332f99367dcd902467c7efa32b233ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88474, "upload_time": "2018-10-29T10:55:21", "url": "https://files.pythonhosted.org/packages/10/83/d43cf34ca6408f8787b681141e27e0be26518e2d433af46e24dcb1d7354e/nselec-2.0rc5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "987cd21e909f2b407aadc8cbdc59ed03", "sha256": "2914e76f7240debaf8b20eebd1b0b298ef611750b570faa4f775bbd9d53f3d59" }, "downloads": -1, "filename": "nselec-2.0rc5.tar.gz", "has_sig": false, "md5_digest": "987cd21e909f2b407aadc8cbdc59ed03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40668, "upload_time": "2018-10-29T10:55:22", "url": "https://files.pythonhosted.org/packages/57/74/d027b9b7c61c6f2e88441c3d153c7dbd015cf2adb0b256c8e56d689d3d35/nselec-2.0rc5.tar.gz" } ], "2.0rc6": [ { "comment_text": "", "digests": { "md5": "1cdab3b0c3742cf2d44a3ca157dfb2f8", "sha256": "c19d03c5cddf059ce52fd7a342b95e4259dd9d1c5d09ec02b4b5f68998acd663" }, "downloads": -1, "filename": "nselec-2.0rc6-py3-none-any.whl", "has_sig": false, "md5_digest": "1cdab3b0c3742cf2d44a3ca157dfb2f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 88485, "upload_time": "2018-10-29T11:07:15", "url": "https://files.pythonhosted.org/packages/ee/6c/45a8d53438cd965334536598b02c0ad6654f8354a7fe34f9fac899b84f29/nselec-2.0rc6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4cf36aa4d24c8cc49b46606fc39c91d6", "sha256": "ce50ab03ee148b11265ba27993a182220d11f53a5a454fb7a1a9aca983e7619f" }, "downloads": -1, "filename": "nselec-2.0rc6.tar.gz", "has_sig": false, "md5_digest": "4cf36aa4d24c8cc49b46606fc39c91d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40668, "upload_time": "2018-10-29T11:07:16", "url": "https://files.pythonhosted.org/packages/cc/64/d50e03969f660819cfcac67bf9a6e829fa79782b6ec5f8e01fe7a685f403/nselec-2.0rc6.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "d7ff7d2585ff00eee29056560fac52d7", "sha256": "804cd2939a46575161f7e758ac6a0cbe7255482409736f9deb4df26dc7b5e9ea" }, "downloads": -1, "filename": "nselec-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d7ff7d2585ff00eee29056560fac52d7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 89687, "upload_time": "2018-10-31T16:58:04", "url": "https://files.pythonhosted.org/packages/51/20/8953a573020e326862d1b8726cd570d4547246aca2c813ac42db20bbf9c1/nselec-2.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0595848720b183c427c9f5731c6f98cf", "sha256": "b15438d84e80bbcd69820b668be1d7aa21d12a6709cc6995cfce46f697edda0f" }, "downloads": -1, "filename": "nselec-2.1.0.tar.gz", "has_sig": false, "md5_digest": "0595848720b183c427c9f5731c6f98cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41072, "upload_time": "2018-10-31T16:58:06", "url": "https://files.pythonhosted.org/packages/bc/84/d72adcc1025b1b8ba66d9dfd484dddcceaf00d595a18b7fe5e52289adbf0/nselec-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "84a4f764d1a9e35d811c984a7ea94d1f", "sha256": "68a0b5931926ac4a50ab23341482620fea0ff948851e0bcad7bbfc88f31cfe0c" }, "downloads": -1, "filename": "nselec-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "84a4f764d1a9e35d811c984a7ea94d1f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 89793, "upload_time": "2018-12-09T19:10:43", "url": "https://files.pythonhosted.org/packages/33/79/dcd87d919336ae2786062f54dfa4a123817e97b86b875d14649784c2794d/nselec-2.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "320e3803e1432bbd54b8cf5dd32dbf2b", "sha256": "1087d6de7d8977bebab6637b2b210e90d025ef29fcaa0f5cb4522c5e508516a9" }, "downloads": -1, "filename": "nselec-2.1.1.tar.gz", "has_sig": false, "md5_digest": "320e3803e1432bbd54b8cf5dd32dbf2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41069, "upload_time": "2018-12-09T19:10:45", "url": "https://files.pythonhosted.org/packages/9e/f7/311d8fd6d949c74296c55c69fde1a0c8fed90c0e479f29db7846873fd6a5/nselec-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "951c6738bb93c3b46916934e0a7f5cb8", "sha256": "906d4f214d870abc48aab956bda57e81c996712488dd648d6dcb3e8d202b6b36" }, "downloads": -1, "filename": "nselec-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "951c6738bb93c3b46916934e0a7f5cb8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90354, "upload_time": "2018-12-09T20:15:32", "url": "https://files.pythonhosted.org/packages/6d/1b/acd036def52bd702d22522b6efdf2f39a94926626f3e3a610c36f09d367f/nselec-2.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bd1844f5624f19649778980cd3465c2a", "sha256": "0cf8daf54ae6adcc2af7d02dbd5bdcc028c6832f05bdf35c16cdb43ba711a9e4" }, "downloads": -1, "filename": "nselec-2.1.2.tar.gz", "has_sig": false, "md5_digest": "bd1844f5624f19649778980cd3465c2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41544, "upload_time": "2018-12-09T20:15:34", "url": "https://files.pythonhosted.org/packages/09/2a/a0d4ad8166db4cedad27a1395d8de3f704fe9166a333d099a269444fce1c/nselec-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "d76493f7edc773cb697458c346d80323", "sha256": "c279461821db6eb86c3b712677e7cd1582c82fa252d16f1ce3414436c97e23cc" }, "downloads": -1, "filename": "nselec-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d76493f7edc773cb697458c346d80323", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90435, "upload_time": "2018-12-16T18:10:35", "url": "https://files.pythonhosted.org/packages/19/89/391feaa01c4a89c90757c1bef2aca6dc7953ab033370270b73168837ca18/nselec-2.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aaa188089f7e882d7d62d8e462ba51b1", "sha256": "38d146a38936cec1dc81ab585fb7b368b0bd97fd2f23824f435a1c85b568d74f" }, "downloads": -1, "filename": "nselec-2.1.3.tar.gz", "has_sig": false, "md5_digest": "aaa188089f7e882d7d62d8e462ba51b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41612, "upload_time": "2018-12-16T18:11:08", "url": "https://files.pythonhosted.org/packages/d0/7f/1e5e8bfe35453b43223593f883accfd391ce0b3270d3ca8e36bf6c06bda9/nselec-2.1.3.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "fa507780fffb0e46d0bd38b44020f323", "sha256": "17732307b88e9be02a096c05ac00740a0715582e628b1d2fea930cb704354ee8" }, "downloads": -1, "filename": "nselec-2.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fa507780fffb0e46d0bd38b44020f323", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91655, "upload_time": "2018-12-29T20:38:53", "url": "https://files.pythonhosted.org/packages/b3/59/db7a8ecae6d1e4b1dfd2998283adaa99ac9441e1a51ea76808a4688cba14/nselec-2.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfdecf7ea4195eda6b7853904eb56874", "sha256": "cdafe48e561c6b647f17c241f00e7f759d8b77540fce98010fd38c8328f419e2" }, "downloads": -1, "filename": "nselec-2.1.5.tar.gz", "has_sig": false, "md5_digest": "dfdecf7ea4195eda6b7853904eb56874", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42411, "upload_time": "2018-12-29T20:38:55", "url": "https://files.pythonhosted.org/packages/5a/02/c7c6bb09f3a71f16b64f6859b9e564c325cf02677aa8f93a3e8c1f7cc606/nselec-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "630649e36ef65bc72e2afe6826b0b761", "sha256": "cfa949881782f0557098abc560ddca06dfd7bd5ec3512341bb3b5f1940ed7e5a" }, "downloads": -1, "filename": "nselec-2.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "630649e36ef65bc72e2afe6826b0b761", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91660, "upload_time": "2019-06-23T11:57:56", "url": "https://files.pythonhosted.org/packages/66/16/b2228239547f327d2d1bb98a8acca78faef3a98223a4b104ccd15d8790a3/nselec-2.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d59da0fba3d34bd60721d67d3680e7b1", "sha256": "8bacc3b3d86e545fc756a9ceafacb2d72a6bcacb9f8d65e988c8e2b7ea0733e6" }, "downloads": -1, "filename": "nselec-2.1.6.tar.gz", "has_sig": false, "md5_digest": "d59da0fba3d34bd60721d67d3680e7b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42443, "upload_time": "2019-06-23T11:57:58", "url": "https://files.pythonhosted.org/packages/a6/f4/1429f89ebb4aa7f964aa9638cf467a2b56643c33e1e848e9f65331d0bac0/nselec-2.1.6.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "78d0ed12c2675654a7234cdc4face978", "sha256": "e565250011dd0403a5dbf3352def2f5f4a8ef9705a7c68c985b4a3195a8da8bb" }, "downloads": -1, "filename": "nselec-2.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "78d0ed12c2675654a7234cdc4face978", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93005, "upload_time": "2019-06-23T14:31:04", "url": "https://files.pythonhosted.org/packages/98/66/5cca08107ac8084084dc0773a555ca99ca265336a27ecf8f476938c64f1a/nselec-2.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "880ea40199c4e9fec688702456aa4cdd", "sha256": "34835e1f52becebb3a7c703d34a67c17968f7a6b1d32cceaa0823426a660a601" }, "downloads": -1, "filename": "nselec-2.2.0.tar.gz", "has_sig": false, "md5_digest": "880ea40199c4e9fec688702456aa4cdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42892, "upload_time": "2019-06-23T14:31:07", "url": "https://files.pythonhosted.org/packages/6c/fe/21c0e0b3f7954bbfde7c62c84fb5d8ef03c597698ee2862d21261b79a7ba/nselec-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "4b6f7b5b6aaed2110cb53ceac34e7050", "sha256": "a1ab310409b3474937688a5565d646828f187a199e0a5c2862a0d6a8dd9a1cbc" }, "downloads": -1, "filename": "nselec-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4b6f7b5b6aaed2110cb53ceac34e7050", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93000, "upload_time": "2019-06-23T14:35:08", "url": "https://files.pythonhosted.org/packages/f7/12/9627d6c9ba3f806ad404a3e38b45955684f4c80ade01b7e5010ddb5a1dab/nselec-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e15d0c3300f5fd6066312f1100e0748d", "sha256": "8f3fb04c220b22ab2fff5007c146bd70fe94a04d1070d92fc6eeb59a698f68e6" }, "downloads": -1, "filename": "nselec-2.2.1.tar.gz", "has_sig": false, "md5_digest": "e15d0c3300f5fd6066312f1100e0748d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42876, "upload_time": "2019-06-23T14:35:09", "url": "https://files.pythonhosted.org/packages/c1/73/8148bf4e7a1319e37433809b1ea512e4bf1e1ae48e8cfdca982aea4fd255/nselec-2.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4b6f7b5b6aaed2110cb53ceac34e7050", "sha256": "a1ab310409b3474937688a5565d646828f187a199e0a5c2862a0d6a8dd9a1cbc" }, "downloads": -1, "filename": "nselec-2.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4b6f7b5b6aaed2110cb53ceac34e7050", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 93000, "upload_time": "2019-06-23T14:35:08", "url": "https://files.pythonhosted.org/packages/f7/12/9627d6c9ba3f806ad404a3e38b45955684f4c80ade01b7e5010ddb5a1dab/nselec-2.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e15d0c3300f5fd6066312f1100e0748d", "sha256": "8f3fb04c220b22ab2fff5007c146bd70fe94a04d1070d92fc6eeb59a698f68e6" }, "downloads": -1, "filename": "nselec-2.2.1.tar.gz", "has_sig": false, "md5_digest": "e15d0c3300f5fd6066312f1100e0748d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42876, "upload_time": "2019-06-23T14:35:09", "url": "https://files.pythonhosted.org/packages/c1/73/8148bf4e7a1319e37433809b1ea512e4bf1e1ae48e8cfdca982aea4fd255/nselec-2.2.1.tar.gz" } ] }