{ "info": { "author": "Andrew J. Moodie other contributors", "author_email": "amoodie@rice.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Education", "Intended Audience :: End Users/Desktop", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Topic :: Education" ], "description": "\n\n[![Build Status](https://travis-ci.org/sededu/sededu.svg?branch=release)](https://travis-ci.org/sededu/sededu)\n[![Build status](https://ci.appveyor.com/api/projects/status/a0ay66ve5lp47o9k/branch/release?svg=true)](https://ci.appveyor.com/project/amoodie/sededu/)\n\n[![Anaconda-Server Badge](https://anaconda.org/sededu/sededu/badges/version.svg)](https://anaconda.org/sededu/sededu)\n[![PyPI version](https://badge.fury.io/py/sededu.svg)](https://badge.fury.io/py/sededu)\n\n\n\n\nSedEdu is a suite of educational activities related to geomorphology and sedimentology. \nThe suite is targeted at educators who want to bring engaging, interactive, and scientifically relevant activities into their classroom. \nSedEdu is built __entirely in Python and is free and open source__ software. \nModules included in SedEdu are built by researchers at the cutting edge of their fields and are designed to showcase their research in a digestible manner.\n\n\n\n\n\n# Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for use in the classroom. \nSee [Contributing to SedEdu](#contributing-to-sededu) for information on becoming a part of the SedEdu project.\n\n\n## Installing dependencies\n\nSedEdu runs in Python 3 and utilizes PyQt5 for rendering the graphical user interface. \nModules included in SedEdu rely on `scipy`, `matplotlib`, `pillow`, and `shapely`. \n\nYou can check your Python version by running: `python3 -V` in a terminal. \nNote that you may need to specify the path to your Python executable on some systems.\nIf you do not have Python 3 installed, you will need to do so to use SedEdu. \nThis will not disrupt an existing Python 2.x installation, if you rely on that for other uses.\n\nIf you are new to Python, __it is strongly recommended that you install Anaconda Python__, which is an open source distribution of Python which includes many basic scientific libraries, some of which are used in the module. \nAnaconda can be downloaded at https://www.anaconda.com/download/ for Windows, macOS, and Linux. \nIf you do not have storage space on your machine for Anaconda or wish to install a smaller version of Python for another reason, see below on options for Miniconda or vanilla Python.\n\n1. Visit the website for Anaconda https://www.anaconda.com/download/ and select the installer for your operating system.\n__Be sure to select the Python 3.x installation.__\n2. Start the installer.\n3. If prompted, select to \"install just for me\", unless you know what you are doing.\n4. When prompted to add Anaconda to the path during installation, select _yes_ if you __know__ you do not have any other Python installed on your computer; otherwise select _no_.\n5. If you received no errors, proceed to installing below.\n\n\nIf you want a more flexible and lightweight Python distribution, you can use whatever your favorite package manager is distributing (e.g., `homebrew` or `apt`), check the [Windows downloads here](https://www.python.org/downloads/windows/), or compile [from source](https://www.python.org/downloads/source/). \nIf you go this route, you will need to also install `pip3`, PyQt5 (`python3-pyqt5`), and the dependency python packages listed below. \n\nNote that on Linux, users may need to specify an installation of `pyqt` and/or `tkinter` directly from `apt`:\nInstall PyQt5:\n\n```\nsudo apt install python3-pyqt5 python3-tk\n```\n\n\n## Installing SedEdu\n\nIf you installed Anaconda Python or Miniconda, you can follow the instructions below for your operating system. \nOtherwise see the instructions for PyPi installation below.\n\n__Please__ [open an issue](https://github.com/sededu/rivers2stratigraphy/issues) if you encounter any troubles installing or any error messages along the way! \nPlease include 1) operating system, 2) installation method, and 3) copy-paste the error.\n\n### Windows users\n\n1. Open your \"start menu\" and search for the \"Anaconda prompt\"; start this application.\n\n2. Install with the module type the following command and hit \"enter\":\n```\nconda install -c sededu sededu\n```\nIf asked to proceed at either step, type `Y` and press \"enter\" to continue installation. \n3. This process may take a few minutes as the necessary source code is downloaded.\nIf the installation succeeds, proceed below to the \"Run the module\" section.\n\n__Note on permissions:__ you may need to run the Anaconda prompy \"as administrator\" on Windows.\n\n\n### Mac OSX and Linux users\n\n1. Install the module by opening a terminal and typing the following command.\n```\nconda install -c sededu sededu\n```\nIf asked to proceed at either step, type `Y` and press enter to continue installation.\n2. This process may take a few minutes as the necessary source code is downloaded.\nIf the installation succeeds, proceed below to the \"Run the module\" section.\n\n__Note on permissions:__ you may need to use `sudo` on OSX and Linux.\n\n\n### Advanced user installations\n\n__Install with pip__\nTo install with `pip` from Pypi use (not recommended for entry-level users):\n```\npip3 install pyqt sededu\n```\nor in the event of a failed install, try:\n```\npip3 install pyqt5 sededu\n```\n\nSee below instructions for downloading the source code if you wish to be able to modify the source code for development or for exploration.\n\n\n__Install by cloning the repository__\n\n_Developers see below:_\nYou can clone the git repository to get the latest release version with:\n```\ngit clone --recurse-submodules -b release https://git@github.com/sededu/sededu.git\n```\nand SedEdu is then run with:\n```\npython3 sededu/run_sededu.py\n```\n\nNote that if you have no modules: run `git submodule update --init --recursive`.\n\n### Running SedEdu\n\n1. Open a Python shell by typing `python` (or `python3`) at the terminal (OSX and Linux users) or at the Anaconda / Command Prompt (Windows users).\n2. Run the module from the Python shell with:\n```\nimport sededu\n```\nInstructions will indicate to use the following command to then run the module:\n```\nsededu.run()\n```\n\nAlternatively, you can do this in one line from the standard terminal with:\n```\npython -c \"import sededu; sededu.run()\"\n```\n\n\n\nAlternatively, run the module with provided script:\n```\npython3 run_sededu.py\n```\n\nPlease [open an issue](https://github.com/sededu/sededu/issues) if you encounter any additional error messages! \nPlease include 1) operating system, 2) installation method, and 3) copy-paste the error.\n\n\n### Troubleshooting\n\n* __SedEdu won't launch:__ you're probably missing some Python or PyQt dependencies. If you `pip install`ed, did you install `pyqt`? Linuz users: try `sudo apt install python3-pyqt5`.\n\n* __There are no modules in SedEdu:__ you probably didn't get the submodules when you `git clone`d. Try `git submodule update --init --recursive` inside the cloned repository.\n\n\n\n# Contributing to SedEdu\n\n[![Project Status: Active \u2013 The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n\nThe SedEdu project needs contributions from the community to be successful.\nHowever, there are __many different ways you can contribute!__\nYou do not even need to write code to contribute to SedEdu.\nSome opportunities for contributions are listed below (in no particular order):\n\n* write (code) a standalone interactive module\n* write an activity for an existing module\n* write (code) features and bug fixes for existing modules\n* write (code) features and bug fixes for SedEdu\n* write documentation for SedEdu\n\nPlease read [CONTRIBUTING.md](https://github.com/sededu/sededu/blob/release/CONTRIBUTING.md) for details on our code of conduct, and the process for contributing to SedEdu (which includes any pull request).\n\n\n\n### Developer installation\n\nDev channel stats:\n[![Build Status](https://travis-ci.org/sededu/sededu.svg?branch=release)](https://travis-ci.org/sededu/sededu)\n[![Build status](https://ci.appveyor.com/api/projects/status/a0ay66ve5lp47o9k/branch/release?svg=true)](https://ci.appveyor.com/project/sededu/sededu/)\n[![Coverage Status](https://coveralls.io/repos/github/sededu/sededu/badge.svg?branch=tests)](https://coveralls.io/github/sededu/sededu?branch=tests)\n\nYou should get the entire repository and work off of the `develop` branch:\n\n```\ngit clone --recurse-submodules https://github.com/sededu/sededu.git\ngit checkout -b develop\n```\n\nIf you have already `git clone`d and need to pull the submodules now try:\n\n```\ngit submodule update --init --recursive\n```\n\nSee [CONTRIBUTING.md](https://github.com/sededu/sededu/blob/release/CONTRIBUTING.md) for more information on the preferred `git` workflow for SedEdu, including a note on hot-fixes.\n\n\n\n# Authors\n\n* **Andrew J. Moodie** - *3 modules* - [github.com/amoodie](https://github.com/amoodie)\n* **Kensuke Naito** - *1 module* - [github.com/kensukename2](https://github.com/kensukename2)\n* **Jeffrey Kwang** - *1 module* - [github.com/jeffskwang](https://github.com/jeffskwang)\n\nSee also the list of [contributors](https://github.com/sededu/sededu/graphs/contributors) who have participated in this project in other ways.\n\n\n\n# License\n\nThis project is licensed under the GNU GPL License - see the [full license](https://github.com/sededu/sededu/blob/release/LICENSE.md) file for details.\nIt is provided without warranty or guaranteed support.\nEach submodule may be licensed under a different license, please see the relevant module's license file, README, or project homepage for more information.\n\n\n\n# Acknowledgments\n\nThe SedEdu framework was created by Andrew J. Moodie but has been built through the efforts of many authors (see Authors above).\nThe authors have been supported by:\n* The US National Science Foundation under Grant Nos. 1427262 and 1450681.\n\n\n\n# Disclaimer\n\nAny opinion, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of any funding agency.\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/sededu/sededu", "keywords": "", "license": "LICENSE.txt", "maintainer": "", "maintainer_email": "", "name": "sededu", "package_url": "https://pypi.org/project/sededu/", "platform": "", "project_url": "https://pypi.org/project/sededu/", "project_urls": { "Bug Reports": "https://github.com/sededu/sededu/issues", "Homepage": "https://github.com/sededu/sededu", "Source": "https://github.com/sededu/sededu/" }, "release_url": "https://pypi.org/project/sededu/1.1.6/", "requires_dist": [ "scipy", "numpy", "matplotlib", "shapely", "pillow" ], "requires_python": ">=3", "summary": "sediment-related educational activity suite", "version": "1.1.6" }, "last_serial": 5685229, "releases": { "1.0.11": [ { "comment_text": "", "digests": { "md5": "f538d8ff385346a85ce1409464c860a0", "sha256": "afd23c157101b4241acbf7086c75cdf27b0e3b3e43361ba18d3794791c7720dd" }, "downloads": -1, "filename": "sededu-1.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "f538d8ff385346a85ce1409464c860a0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 16967749, "upload_time": "2018-10-08T22:17:02", "url": "https://files.pythonhosted.org/packages/a1/2c/1f2c2757fe398692516294fd6f3f7191b57f5f5dc6a2060d39a2eb73557d/sededu-1.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dffe5badc429598a8e632feb692106aa", "sha256": "11b72180fe8304160198892da1e0b89e550a45e165576fb3e4617e4e8c7fe4a2" }, "downloads": -1, "filename": "sededu-1.0.11.tar.gz", "has_sig": false, "md5_digest": "dffe5badc429598a8e632feb692106aa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 17045113, "upload_time": "2018-10-08T22:17:06", "url": "https://files.pythonhosted.org/packages/14/73/df2d100c9d70c9268200f89e478b93cd4edd7ee919db270d5ad929440499/sededu-1.0.11.tar.gz" } ], "1.0.12": [ { "comment_text": "", "digests": { "md5": "b8b3c0c438cf06ac8ae8a823c1c5659f", "sha256": "273cf36bcda072d48c0a5b778638033be54168454e3df15aaf3aa0581a43c1cf" }, "downloads": -1, "filename": "sededu-1.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "b8b3c0c438cf06ac8ae8a823c1c5659f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 16967750, "upload_time": "2018-10-08T22:53:00", "url": "https://files.pythonhosted.org/packages/2d/38/813c04429c5e9a432c63b6d7b4545a66f1c79779622cac1a88503fc9d048/sededu-1.0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3950a3a53629712473869cdceaf6aa1", "sha256": "92d0357e560b8379b04d12c5b7b2b2c643ad4b9630c0120109d802fcce0eb5f0" }, "downloads": -1, "filename": "sededu-1.0.12.tar.gz", "has_sig": false, "md5_digest": "b3950a3a53629712473869cdceaf6aa1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 17045090, "upload_time": "2018-10-08T22:53:05", "url": "https://files.pythonhosted.org/packages/96/af/93d91b4ee1b674cf21eab7c024b9cbb8b43f34fefd925b4ff32b7d4f42b4/sededu-1.0.12.tar.gz" } ], "1.0.14": [ { "comment_text": "", "digests": { "md5": "699abed350c2673398f459b89d3ce527", "sha256": "62876ce0ebc6b64ab52b07d306c2d79bf8740b7741eb03568dbaf01b95c8441c" }, "downloads": -1, "filename": "sededu-1.0.14-py3-none-any.whl", "has_sig": false, "md5_digest": "699abed350c2673398f459b89d3ce527", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 16968267, "upload_time": "2018-10-11T14:49:08", "url": "https://files.pythonhosted.org/packages/73/61/af2b7a90895cafb2380819b74fb1bf8a35bd0454f13d2fbb7c262445d1c0/sededu-1.0.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a651b41072fd4f504f302dc58b032fb", "sha256": "9d7e4a4fd5ab23ab2dfbcaf3bc6695c9e6bebf3744ae73dcd92abea607348f3f" }, "downloads": -1, "filename": "sededu-1.0.14.tar.gz", "has_sig": false, "md5_digest": "5a651b41072fd4f504f302dc58b032fb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 17046021, "upload_time": "2018-10-11T14:49:13", "url": "https://files.pythonhosted.org/packages/c2/a8/b73dbcab88db3f656d1483a27b2f58407ab3547bafb30755a2df9d21a842/sededu-1.0.14.tar.gz" } ], "1.0.15": [ { "comment_text": "", "digests": { "md5": "4e2ddcc1816548fb063c98b399b5f7f6", "sha256": "f3c7ca81511d7a2e7d564a0be39037e20ec0868f51deed25ba3f1e85b0141967" }, "downloads": -1, "filename": "sededu-1.0.15-py3-none-any.whl", "has_sig": false, "md5_digest": "4e2ddcc1816548fb063c98b399b5f7f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 16968826, "upload_time": "2018-10-12T00:13:38", "url": "https://files.pythonhosted.org/packages/0d/01/39bb751ab3af37af73269e4e0e14d548bea01d836d32186454c306b84464/sededu-1.0.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34210ec6a8f772644056b3301e658ac9", "sha256": "55368fe2c54b99eed1a6f98c9fa95448a3893051e6b9fb156b1fb83c947206e8" }, "downloads": -1, "filename": "sededu-1.0.15.tar.gz", "has_sig": false, "md5_digest": "34210ec6a8f772644056b3301e658ac9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 17045611, "upload_time": "2018-10-12T00:13:42", "url": "https://files.pythonhosted.org/packages/13/c0/7482eff27a6f6064d245a024156e2736382c6b0e6449d83b4bbeb0a4ab27/sededu-1.0.15.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3883442680fb9afd2661621d3191da17", "sha256": "f6a0945fd4aab402b41130e8ec19ec5a041aae2b357a84287378fb961f5d649c" }, "downloads": -1, "filename": "sededu-1.0.3a-py3-none-any.whl", "has_sig": false, "md5_digest": "3883442680fb9afd2661621d3191da17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 4419193, "upload_time": "2018-04-25T01:38:44", "url": "https://files.pythonhosted.org/packages/db/f3/9d80048ed9771147c8be09dd8856d3db09b05e56ac5e1bdc5578c0177b09/sededu-1.0.3a-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5aadcc6b38b7a6178dc0131100c98318", "sha256": "caa0e102d09858b6a262795e600ff217b10d4d69badd4ea9b8f75f5e55360336" }, "downloads": -1, "filename": "sededu-1.0.3a.tar.gz", "has_sig": false, "md5_digest": "5aadcc6b38b7a6178dc0131100c98318", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4507461, "upload_time": "2018-04-25T01:38:53", "url": "https://files.pythonhosted.org/packages/fc/42/26cf1e54d676e01de79eb3b78012764d9e53512babaccf190570b04d36d5/sededu-1.0.3a.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "ca1deff26adfaeb624adb48c163b8c01", "sha256": "8283bb32396ebb0a59da5d94b20a35f4742cf9eec9c3a0bc262710b8f6ae5d3c" }, "downloads": -1, "filename": "sededu-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ca1deff26adfaeb624adb48c163b8c01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 18128653, "upload_time": "2018-11-06T14:57:10", "url": "https://files.pythonhosted.org/packages/1e/a0/56fe33bf69043352803b7fd61ba162958ab37e8d66c5b7a0cdca56fd8cb4/sededu-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8908c7d1a7d2fa14aed965fdac23577", "sha256": "85144dcc2106085ac9e9c3d26e1801e19480635fd74a444188af81f278539011" }, "downloads": -1, "filename": "sededu-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f8908c7d1a7d2fa14aed965fdac23577", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 18167421, "upload_time": "2018-11-06T14:57:14", "url": "https://files.pythonhosted.org/packages/ce/4b/786aa8fa832a2c1d312cacc5e52d7c7a4a2dae41a1a72d3fe74a92adb7fb/sededu-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "b15852dd49532dabffbb6380a491fb4e", "sha256": "45eedb2b87d01b0b2efb24b8ed4c57e09af77e4c839f255a7775ae03930688c4" }, "downloads": -1, "filename": "sededu-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b15852dd49532dabffbb6380a491fb4e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 18128824, "upload_time": "2018-11-06T22:02:45", "url": "https://files.pythonhosted.org/packages/96/13/85b89a9cd5ca64100fbee6fc1672b8464b44a6b6e3c4cda2e0699c72ac3b/sededu-1.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c67b045cdffcf78e8d62fd59fd8ed1f", "sha256": "98132958ddcce0cc9de7586e74cf3f6cf5128376e2346dc4130d8af2fa87c891" }, "downloads": -1, "filename": "sededu-1.1.1.tar.gz", "has_sig": false, "md5_digest": "0c67b045cdffcf78e8d62fd59fd8ed1f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 18167565, "upload_time": "2018-11-06T22:02:49", "url": "https://files.pythonhosted.org/packages/7e/a0/7b7c7a34fb2690155cf8f55293320bc1f43ae1d468cc8221a8c3a261d5de/sededu-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "a59447d771e17bdb7440331dc718c7f7", "sha256": "d246da29c2791d7e44565daecec35af914279501ffb943a9fec62ba360562945" }, "downloads": -1, "filename": "sededu-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a59447d771e17bdb7440331dc718c7f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 39934169, "upload_time": "2018-11-29T14:01:57", "url": "https://files.pythonhosted.org/packages/4e/e6/2283139eb35b93485f8c3f5450ed159da781f29f6377065c48126103ddef/sededu-1.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eaf1dd1461f9dd4663f8d6d5e42dc25e", "sha256": "8e7b90c7bed1141588c9a8b04ab7a091fc0b37d1b2b839d09e51e0fa65b5ac1e" }, "downloads": -1, "filename": "sededu-1.1.2.tar.gz", "has_sig": false, "md5_digest": "eaf1dd1461f9dd4663f8d6d5e42dc25e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 39998735, "upload_time": "2018-11-29T14:02:03", "url": "https://files.pythonhosted.org/packages/50/f6/93eca7e874fac89e8d7ea5e897fd9e7da50d131447dd2d82c0a9f052b638/sededu-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "8b693a05d69223e3338ab9450a4d8970", "sha256": "5bdf361f5165c8b5c463c148420e3ced702622ad5e2d1b5119f654b92cff073d" }, "downloads": -1, "filename": "sededu-1.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "8b693a05d69223e3338ab9450a4d8970", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 39934295, "upload_time": "2019-04-11T14:59:33", "url": "https://files.pythonhosted.org/packages/51/2e/109effb3e2c203412fd77fbe9e5cbd123aa02a1fce25a481e6c689992e47/sededu-1.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cfe0cb04bae2283a17ba1d1677e16209", "sha256": "219484476fea852249e3477fd37012636e30509163f603b0c1401c68eb3b9645" }, "downloads": -1, "filename": "sededu-1.1.3.tar.gz", "has_sig": false, "md5_digest": "cfe0cb04bae2283a17ba1d1677e16209", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 39998941, "upload_time": "2019-04-11T14:59:40", "url": "https://files.pythonhosted.org/packages/34/2b/cabff3ceb6b715493ec125ed61d9e5d54b3b32094e755712991f279906be/sededu-1.1.3.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "d33ac022528c634ef80af625ecb98a73", "sha256": "71d730622518c97ddf65dd60e326d59993d80ee07344cb610aaff916faa323b5" }, "downloads": -1, "filename": "sededu-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d33ac022528c634ef80af625ecb98a73", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 42590367, "upload_time": "2019-08-16T01:55:49", "url": "https://files.pythonhosted.org/packages/4e/fb/6247e6379a2ae0aa40c285294afab1d56b4bb869d280166095a2ac39a1b1/sededu-1.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "823c69efcdfb6c2f018342bbe5ec7ecb", "sha256": "a8c41d0f329d0a1ff984d7fb22871084b2d5ae4a6afba38a8511aaf4b9eaf867" }, "downloads": -1, "filename": "sededu-1.1.6.tar.gz", "has_sig": false, "md5_digest": "823c69efcdfb6c2f018342bbe5ec7ecb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 42643468, "upload_time": "2019-08-16T01:55:56", "url": "https://files.pythonhosted.org/packages/d9/99/10bdeaa084cfc090b8e477991fa6f01cd90b20914aad11f32f84bc7706ea/sededu-1.1.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d33ac022528c634ef80af625ecb98a73", "sha256": "71d730622518c97ddf65dd60e326d59993d80ee07344cb610aaff916faa323b5" }, "downloads": -1, "filename": "sededu-1.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d33ac022528c634ef80af625ecb98a73", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 42590367, "upload_time": "2019-08-16T01:55:49", "url": "https://files.pythonhosted.org/packages/4e/fb/6247e6379a2ae0aa40c285294afab1d56b4bb869d280166095a2ac39a1b1/sededu-1.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "823c69efcdfb6c2f018342bbe5ec7ecb", "sha256": "a8c41d0f329d0a1ff984d7fb22871084b2d5ae4a6afba38a8511aaf4b9eaf867" }, "downloads": -1, "filename": "sededu-1.1.6.tar.gz", "has_sig": false, "md5_digest": "823c69efcdfb6c2f018342bbe5ec7ecb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 42643468, "upload_time": "2019-08-16T01:55:56", "url": "https://files.pythonhosted.org/packages/d9/99/10bdeaa084cfc090b8e477991fa6f01cd90b20914aad11f32f84bc7706ea/sededu-1.1.6.tar.gz" } ] }