{ "info": { "author": "Rog\u00e9rio Theodoro de Brito", "author_email": "rbrito@ime.usp.br", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Education" ], "description": "Coursera Downloader\n===================\n\n|Build Status| |Coverage Status| |Latest version on PyPI| |Downloads\nfrom PyPI| |Code Climate|\n\nIntroduction\n============\n\n`Coursera `__ is arguably the leader in\n*massive open online courses* (MOOC) with a selection of more than 300\nclasses from 62 different institutions `as of February\n2013 `__.\nGenerous contributions by educators and institutions are making\nexcellent education available to many who could not afford it otherwise.\nThere are even non-profits with \"feet on the ground\" in remote areas of\nthe world who are helping spread the wealth (see the feedback below from\n`Tunapanda `__).\n\nThis script makes it easier to batch download lecture resources (e.g.,\nvideos, ppt, etc) for Coursera classes. Given one or more class names\nand account credentials, it obtains week and class names from the\n*lectures* page, and then downloads the related materials into\nappropriately named files and directories.\n\nWhy is this helpful? A utility like\n`wget `__\ncan work, but has the following limitations:\n\n1. Video names have numbers in them, but this does not correspond to the\n actual order. Manually renaming them is a pain that is best left for\n computers.\n2. Using names from the syllabus page provides more informative names.\n3. Using ``wget`` in a for loop picks up extra videos which are not\n posted/linked, and these are sometimes duplicates.\n\nBrowser extensions like *DownloadThemAll* is another possibility, but\n``coursera-dl`` provides more features such as appropriately named\nfiles.\n\nThis work was originally inspired in part by\n`youtube-dl `__ by which I've\ndownloaded many other good videos such as those from Khan Academy.\n\nFeatures\n========\n\n- Support for all kinds of courses (i.e., \"Old Platform\"/time-based as\n well as \"New Platform\"/on-demand courses).\n- Intentionally detailed names, so that it will display and sort\n properly on most interfaces (e.g.,\n `VLC `__\n or MX Video on Android devices).\n- Regex-based section (week) and lecture name filters to download only\n certain resources.\n- File format extension filter to grab resource types you want.\n- Login credentials accepted on command-line or from ``.netrc`` file.\n- Core functionality tested on Linux, Mac and Windows.\n\nDisclaimer\n==========\n\n``coursera-dl`` is meant to be used only for your material that Coursera\ngives you access to download.\n\nWe do not encourage any use that violates their `Terms Of\nUse `__. A relevant excerpt:\n\n \"[...] Coursera grants you a personal, non-exclusive,\n non-transferable license to access and use the Sites. You may\n download material from the Sites only for your own personal,\n non-commercial use. You may not otherwise copy, reproduce,\n retransmit, distribute, publish, commercially exploit or otherwise\n transfer any material, nor may you modify or create derivatives\n works of the material.\"\n\nInstallation instructions\n=========================\n\n``coursera-dl`` requires Python 2 or Python 3 and a free Coursera\naccount enrolled in the class of interest. (As of February of 2016, we\ntest automatically the execution of the program with Python versions\n2.6, 2.7, Pypy, 3.2, 3.3, 3.4, and 3.5).\n\n**Note:** We *strongly* recommend that you use a Python 3 interpreter\n(3.4 or later).\n\nOn any operating system, ensure that the Python executable location is\nadded to your ``PATH`` environment variable and, once you have the\ndependencies installed (see next section), for a *basic* usage, you will\nneed to invoke the script from the main directory of the project and\nprepend it with the word ``python``. You can also use more advanced\nfeatures of the program by looking at the \"Running the script\" section\nof this document.\n\n*Note:* You must already have (manually) agreed to the Honor of Code of\nthe particular courses that you want to use with ``coursera-dl``.\n\nRecommended installation method for all Operating Systems\n---------------------------------------------------------\n\nFrom a command line (preferrably, from a virtual environment), simply\nissue the command:\n\n::\n\n pip install coursera\n\nThis will dowload `the latest released\nversion `__ of the program from\nthe `Python Package Index (PyPI) `__ along with\n*all* the necessary dependencies. At this point, you should be ready to\nstart using it.\n\nIf this does not work, because your Python 2 version is too old (e.g.\n2.7.5 on Ubuntu 14.4), try:\n\n::\n\n apt-get install python3 python3-pip\n pip3 install coursera\n\ninstead.\n\n**Note 1:** Note that the PyPI package is called simply ``coursera``,\nbut the command-line is called ``coursera-dl``. This is an unfortunate\nfact related to conflicting names.\n\n**Note 2:** We strongly recommend that you *don't* install the package\nglobally on your machine (i.e., with root/administrator privileges), as\nthe installed modules may conflict with other Python applications that\nyou have installed in your system (or they can interfere with\n``coursera-dl``). Prefer to use the option ``--user`` to\n``pip install``, if you need can.\n\n**Note 3:** As already mentioned, we *strongly* recommend that you use a\nnew Python 3 interpreter (e.g., 3.4 or later), since Python 3 has better\nsupport for SSL/TLS (for secure connections) than earlier versions. If\nyou must use Python 2, be sure that you have at least Python 2.7.9\n(later versions are OK). Otherwise, you can still use ``coursera-dl``,\nbut you will have to install the extra package ``ndg-httpsclient``,\nwhich may involve compilation (at least on Linux systems).\n\nAlternative ways of installing missing dependencies\n---------------------------------------------------\n\nWe strongly recommend that you consider installing Python packages with\n`pip `__, as in it is the\ncurrent `preferred\nmethod `__, unless\ndirected otherwise by one of the project members (for instance, when\ntesting or debugging a new feature or using the source code directly\nfrom our git repository). If you are using ``pip``, you can directly\ninstall all the dependencies from the requirements file using\n``pip install -r requirements.txt``.\n\nAlternative installation method for Unix systems\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nWe strongly recommend that you install ``coursera-dl`` and all its\ndependencies in a way that does *not* interfere with the rest of your\nPython installation. This is accomplished by the creation of a *virtual\nenvironment*, or \"virtualenv\".\n\nFor the initial setup, in a Unix-like operating system, please use the\nfollowing steps (create/adapt first the directory\n``/directory/where/I/want/my/courses``):\n\n::\n\n cd /directory/where/I/want/my/courses\n virtualenv my-coursera\n cd my-coursera\n source bin/activate\n git clone https://github.com/coursera-dl/coursera\n cd coursera\n pip install -r requirements.txt\n ./coursera-dl ...\n\nTo further download new videos from your classes, simply perform:\n\n::\n\n cd /directory/where/I/want/my/courses/my-coursera\n source bin/activate\n cd coursera\n ./coursera-dl ...\n\nWe are working on streamlining this whole process so that it is as\nsimple as possible, but to support older versions of Python and to cope\nwith Coursera disabling SSLv3, we have to take a few extra steps. In any\ncase, it is *highly* recommended that you always install the latest\nversion of the Python interpreter that you can.\n\nInstalling dependencies on your own\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**Warning:** This method is not recommended unless you have experience\nworking with multiple Python environments.\n\nYou can use the ``pip`` program to install the dependencies on your own.\nThey are all listed in the ``requirements.txt`` file (and the extra\ndependencies needed for development are listed in the\n``requirements-dev.txt`` file).\n\nTo use this method, you would proceed as:\n\n::\n\n pip install -r requirements.txt\n pip install -r requirements-dev.txt\n\nThe second line above should only be needed if you intend to help with\ndevelopment (and help is *always* welcome) or if a maintainer of the\nproject asks you to install extra packages for debugging purposes.\n\nOnce again, before filing bug reports, if you installed the dependencies\non your own, please check that the versions of your modules are at least\nthose listed in the ``requirements.txt`` file (and,\n``requirements-dev.txt`` file, if applicable).\n\nCreate an account with Coursera\n-------------------------------\n\nIf you don't already have one, create a\n`Coursera `__ account and enroll in a class.\nSee https://www.coursera.org/courses for the list of classes.\n\nRunning the script\n------------------\n\nRun the script to download the materials by providing your Coursera\naccount credentials (e.g. email address and password or a ``~/.netrc``\nfile), the class names, as well as any additional parameters:\n\n::\n\n General: coursera-dl -u -p modelthinking-004\n Multiple classes: coursera-dl -u -p saas historyofrock1-001 algo-2012-002\n Filter by section name: coursera-dl -u -p -sf \"Chapter_Four\" crypto-004\n Filter by lecture name: coursera-dl -u -p -lf \"3.1_\" ml-2012-002\n Download only ppt files: coursera-dl -u -p -f \"ppt\" qcomp-2012-001\n Use a ~/.netrc file: coursera-dl -n -- matrix-001\n Get the preview classes: coursera-dl -n -b ni-001\n Specify download path: coursera-dl -n --path=C:\\Coursera\\Classes\\ comnetworks-002\n Display help: coursera-dl --help\n\n Maintain a list of classes in a dir:\n Initialize: mkdir -p CURRENT/{class1,class2,..classN}\n Update: coursera-dl -n --path CURRENT `\\ls CURRENT`\n\n**Note:** If your ``ls`` command is aliased to display a colorized\noutput, you may experience problems. Be sure to escape the ``ls``\ncommand (use ``\\ls``) to assure that no special characters get sent to\nthe script.\n\nNote that we *do* support the New Platform (\"on-demand\") classes.\n\nOn \\*nix platforms, the use of a ``~/.netrc`` file is a good alternative\nto specifying both your username (i.e., your email address) and password\nevery time on the command line. To use it, simply add a line like the\none below to a file named ``.netrc`` in your home directory (or the\n`equivalent `__, if you are\nusing Windows) with contents like:\n\n::\n\n machine coursera-dl login password \n\nCreate the file if it doesn't exist yet. From then on, you can switch\nfrom using ``-u`` and ``-p`` to simply call ``coursera-dl`` with the\noption ``-n`` instead. This is especially convenient, as typing\nusernames (email addresses) and passwords directly on the command line\ncan get tiresome (even more if you happened to choose a \"strong\"\npassword).\n\nResuming downloads\n------------------\n\nIn default mode when you interrupt the download process by pressing\nCTRL+C, partially downloaded files will be deleted from your disk and\nyou have to start the download process from the begining. If your\ndownload was interrupted by something other than KeyboardInterrupt\n(CTRL+C) like sudden system crash, partially downloaded files will\nremain on your disk and the next time you start the process again, these\nfiles will be discraded from download list!, therefore it's your job to\ndelete them manually before next start. For this reason we added an\noption called ``--resume`` which continues your downloads from where\nthey stopped:\n\n::\n\n coursera-dl -u -p --resume sdn1-001\n\nThis option can also be used with external downloaders:\n\n::\n\n coursera-dl --wget -u -p --resume sdn1-001\n\n*Note 1*: Some external downloaders use their own built-in resume\nfeature which may not be compatible with others, so use them at your own\nrisk.\n\n*Note 2*: Remember that in resume mode, interrupted files **WON'T** be\ndeleted from your disk.\n\n**NOTE**: If your password contains punctuation, quotes or other \"funny\ncharacters\" (e.g., ``<``, ``>``, ``#``, ``&``, ``|`` and so on), then\nyou may have to escape them from your shell. With bash or other\nBourne-shell clones (and probably with many other shells) one of the\nbetter ways to do so is to enclose your password in single quotes, so\nthat you don't run into problems. See `issue\n#213 `__ for more\ninformation.\n\nTroubleshooting\n===============\n\nIf you have problems when downloading class materials, please try to see\nif one of the following actions solve your problem:\n\n- Make sure the class name you are using corresponds to the resource\n name used in the URL for that class:\n ``https://class.coursera.org//class/index``\n\n- Have you tried to clean the cached cookies/credentials with the\n ``--clear-cache`` option?\n\n- Note that many courses (most, perhaps?) may remove the materials\n after a little while after the course is completed, while other\n courses may retain the materials up to a next session/offering of the\n same course (to avoid problems with academic dishonesty, apparently).\n In short, it is not guaranteed that you will be able to download\n after the course is finished and this is, unfortunately, nothing that\n we can help you with.\n\n- Make sure you have installed and/or updated all of your dependencies\n according to the ``requirements.txt`` file as described above.\n\n- One can export a Netscape-style cookies file with a browser extension\n (`1 `__,\n `2 `__)\n and use it with the ``-c`` option. This comes in handy when the\n authentication via password is not working (the authentication\n process changes now and then).\n\n- If results show 0 sections, you most likely have provided invalid\n credentials (username and/or password in the command line or in your\n ``.netrc`` file).\n\n- For courses that have not started yet, but have had a previous\n iteration sometimes a preview is available, containing all the\n classes from the last course. These files can be downloaded by\n passing the ``--preview`` parameter.\n\n- If you get an error like ``Could not find class: ``,\n then:\n\n - Verify that the name of the course is correct. Current class names\n in coursera are composed by a short course name e.g. ``class`` and\n the current version of the course (a number). For example, for a\n class named ``class``, you would have to use ``class-001``,\n ``class-002`` etc.\n - Second, verify that you are enrolled in the course. You won't be\n able to access the course materials if you are not officially\n enrolled and agreed to the honor course *via the website*.\n\n- If:\n\n - You get an error when using ``-n`` to specify that you want to use\n a ``.netrc`` file and,\n - You want the script to use your default netrc file and,\n - You get a message saying ``coursera-dl: error: too few arguments``\n\n Then you should specify ``--`` as an argument after ``-n``, that is,\n ``-n --`` or change the order in which you pass the arguments to the\n script, so that the argument after ``-n`` begins with an hyphen\n (``-``). Otherwise, Python's ``argparse`` module will think that what\n you are passing is the name of the netrc file that you want to use.\n See issue #162.\n\nFiling an issue/Reporting a bug\n===============================\n\nWhen reporting bugs against ``coursera-dl``, please don't forget to\ninclude enough information so that you can help us help you:\n\n- Is the problem happening with the latest version of the script?\n- What operating system are you using?\n- Do you have all the recommended versions of the modules? See them in\n the file ``requirements.txt``.\n- What is the course that you are trying to access?\n- What is the precise command line that you are using (feel free to\n hide your username and password with asterisks, but leave all other\n information untouched).\n- What are the precise messages that you get? Please, use the\n ``--debug`` option before posting the messages as a bug report.\n Please, copy and paste them. Don't reword/paraphrase the messages.\n\nFeedback\n========\n\nI enjoy getting feedback. Here are a few of the comments I've received:\n\n- \"Thanks for the good job! Knowledge will flood the World a little\n more thanks to your script!\" Guillaume V. 11/8/2012\n\n- \"Just wanted to send you props for your Python script to download\n Coursera courses. I've been using it in Kenya for my non-profit to\n get online courses to places where internet is really expensive and\n unreliable. Mostly kids here can't afford high school, and\n downloading one of these classes by the usual means would cost more\n than the average family earns in one week. Thanks!\" Jay L.,\n `Tunapanda `__ 3/20/2013\n\n- \"I am a big fan of Coursera and attend lots of different courses.\n Time constraints don't allow me to attend all the courses I want at\n the same time. I came across your script, and I am very happily using\n it! Great stuff and thanks for making this available on Github - well\n done!\" William G. 2/18/2013\n\n- \"This script is awesome! I was painstakingly downloading each and\n every video and ppt by hand -- looked into wget but ran into wildcard\n issues with HTML, and then.. I came across your script. Can't tell\n you how many hours you've just saved me :) If you're ever in Paris /\n Stockholm, it is absolutely mandatory that I buy you a beer :)\"\n Razvan T. 11/26/2012\n\n- \"Thanks a lot! :)\" Viktor V. 24/04/2013\n\nContact\n=======\n\nPlease, post bugs and issues on\n`github `__. Send\nother comments to Rog\u00e9rio Theodoro de Brito (the current maintainer):\nrbrito@ime.usp.br (twitter:\n[@rtdbrito]\\ `21 `__) or to John Lehmann\n(the original author): first last at geemail dotcom (twitter:\n[@jplehmann]\\ `12 `__).\n\n|Bitdeli Badge|\n\n.. |Build Status| image:: https://travis-ci.org/coursera-dl/coursera-dl.svg?branch=master\n :target: https://travis-ci.org/coursera-dl/coursera-dl\n.. |Coverage Status| image:: https://coveralls.io/repos/coursera-dl/coursera/badge.svg\n :target: https://coveralls.io/r/coursera-dl/coursera\n.. |Latest version on PyPI| image:: https://img.shields.io/pypi/v/coursera.svg\n :target: https://pypi.python.org/pypi/coursera\n.. |Downloads from PyPI| image:: https://img.shields.io/pypi/dm/coursera.svg\n :target: https://pypi.python.org/pypi/coursera\n.. |Code Climate| image:: https://codeclimate.com/github/coursera-dl/coursera-dl/badges/gpa.svg\n :target: https://codeclimate.com/github/coursera-dl/coursera-dl\n.. |Bitdeli Badge| image:: https://d2weczhvl823v0.cloudfront.net/coursera-dl/coursera/trend.png\n :target: https://bitdeli.com/free", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/coursera-dl/coursera-dl", "keywords": "coursera,download,education,MOOCs,video", "license": "LGPL", "maintainer": null, "maintainer_email": null, "name": "coursera", "package_url": "https://pypi.org/project/coursera/", "platform": "any", "project_url": "https://pypi.org/project/coursera/", "project_urls": { "Homepage": "https://github.com/coursera-dl/coursera-dl" }, "release_url": "https://pypi.org/project/coursera/0.5.2/", "requires_dist": null, "requires_python": null, "summary": "Script for downloading Coursera.org videos and naming them.", "version": "0.5.2" }, "last_serial": 1950444, "releases": { "0.0.0": [ { "comment_text": "", "digests": { "md5": "5a25cb492943a1405d0b7c51956b4678", "sha256": "9b3a7024c1267574c70f4e71a718c56fe23ab61ef0a7aa9193e7e7fb43580762" }, "downloads": -1, "filename": "coursera-0.0.0.tar.gz", "has_sig": true, "md5_digest": "5a25cb492943a1405d0b7c51956b4678", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37594, "upload_time": "2015-04-30T14:09:32", "url": "https://files.pythonhosted.org/packages/5e/04/2f40c2251892b5c8729a96d3e11474a63fc25e9d03c44825e9320eede580/coursera-0.0.0.tar.gz" } ], "0.0.1": [ { "comment_text": "", "digests": { "md5": "da8f30f654b9b8a3f5d6def00995998b", "sha256": "925a872bde1cd1f81c01f92293bac0cf4157ee79ed41f117259cad0402c4308d" }, "downloads": -1, "filename": "coursera-0.0.1.tar.gz", "has_sig": true, "md5_digest": "da8f30f654b9b8a3f5d6def00995998b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44373, "upload_time": "2015-05-03T03:16:25", "url": "https://files.pythonhosted.org/packages/ac/a3/f373592a33f27612e958be3fdb3d51a40f99206bddd9ecc33a3932a6ad61/coursera-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "5b3934764a7f9dcf3f95961aef6690b9", "sha256": "5b7acad2f63d5df0bdeadb0d0e5ffc5ad14fcc520a14b7dbdfc314c7eb9b392f" }, "downloads": -1, "filename": "coursera-0.0.2.tar.gz", "has_sig": true, "md5_digest": "5b3934764a7f9dcf3f95961aef6690b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36376, "upload_time": "2015-05-03T23:03:59", "url": "https://files.pythonhosted.org/packages/07/72/fc82fb393b9a8e2603e2d2721b255a5328178ea4bfd97640b06b5047a230/coursera-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "2022e12c498abe2f94dc148f244f15fe", "sha256": "8e08d9a2ef358337e0204d05bc0824ca4cd7c0546d24ade0ce0b25a5f9a308b6" }, "downloads": -1, "filename": "coursera-0.0.3.tar.gz", "has_sig": true, "md5_digest": "2022e12c498abe2f94dc148f244f15fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43440, "upload_time": "2015-05-06T22:24:57", "url": "https://files.pythonhosted.org/packages/d6/48/d63e229b28fab0cfb98e6ed9198f3766ad477206798fd4b4cec3a194d9b8/coursera-0.0.3.tar.gz" } ], "0.1.0a1": [ { "comment_text": "", "digests": { "md5": "8fc9401aa41fea3f9bf1cd9a00e6ca56", "sha256": "d176b206f736042fe6171107ac633b557de1bf58e85a3ef58ae6e10bb7713d4c" }, "downloads": -1, "filename": "coursera-0.1.0a1.tar.gz", "has_sig": true, "md5_digest": "8fc9401aa41fea3f9bf1cd9a00e6ca56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48166, "upload_time": "2015-08-16T07:59:12", "url": "https://files.pythonhosted.org/packages/9d/28/ff8e44446a1ffc614c16890c0ceedaa8df0ef04a45f00243279eedb16657/coursera-0.1.0a1.tar.gz" } ], "0.1.0a2": [ { "comment_text": "", "digests": { "md5": "27c672e91c5f650e958365ed57b56f65", "sha256": "bad78fea76034232490b73713f34631d344c3b416dde5b92b9392586a5c94c92" }, "downloads": -1, "filename": "coursera-0.1.0a2.tar.gz", "has_sig": true, "md5_digest": "27c672e91c5f650e958365ed57b56f65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47413, "upload_time": "2015-08-16T08:05:14", "url": "https://files.pythonhosted.org/packages/54/cf/06501d5ade63083537512aa216ee334670b16287e21330ba352d134261a5/coursera-0.1.0a2.tar.gz" } ], "0.1.0a3": [ { "comment_text": "", "digests": { "md5": "2f7a5d49e1a6bb3cd8e8224e5c585b1d", "sha256": "978311f6fc4dc3630db7be4e0f5000c836a451e6c93c54c6299cef472714024e" }, "downloads": -1, "filename": "coursera-0.1.0a3.tar.gz", "has_sig": true, "md5_digest": "2f7a5d49e1a6bb3cd8e8224e5c585b1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40585, "upload_time": "2015-08-18T01:44:51", "url": "https://files.pythonhosted.org/packages/fc/6c/7a1c574e66a0e5e5620bba2b585e72c81370b52e7f9bc3b36661ac0a55df/coursera-0.1.0a3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "9011764aa834c3ea5bf3b09a9e9013b5", "sha256": "1889b80fc8b92415b7684b9ef26d8516e629a8e3a06487c4e36cf805ad1b707b" }, "downloads": -1, "filename": "coursera-0.5.0.tar.gz", "has_sig": true, "md5_digest": "9011764aa834c3ea5bf3b09a9e9013b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53502, "upload_time": "2016-01-30T08:17:24", "url": "https://files.pythonhosted.org/packages/12/1c/5453b1b6a394b3cba6b86f358264e23d40c6b0220d81bbb6ddcad4c7da60/coursera-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "9bea75f7df7d03130fb04a0192229757", "sha256": "e6f5d15743b2c0f1fc58ba6a1c899a960f76ef5f07d193780256265dd3ae8fd3" }, "downloads": -1, "filename": "coursera-0.5.1.tar.gz", "has_sig": true, "md5_digest": "9bea75f7df7d03130fb04a0192229757", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52592, "upload_time": "2016-01-30T09:06:31", "url": "https://files.pythonhosted.org/packages/99/15/f29237217ebe16b929e534245f339d29dec64e89c1e5850fc0cd7b5a2353/coursera-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "e0c9c19380667af3c212d175419eb5d3", "sha256": "52360177182b40f84bceb5bf458f6f3938405d05ca0a4b9d2fad877e346e5c36" }, "downloads": -1, "filename": "coursera-0.5.2.tar.gz", "has_sig": true, "md5_digest": "e0c9c19380667af3c212d175419eb5d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54228, "upload_time": "2016-02-11T04:45:49", "url": "https://files.pythonhosted.org/packages/92/a1/5b194fbebc8850ca1b1c15f65e1ca7c5e52a2eb570767d57b6b0c46e175b/coursera-0.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e0c9c19380667af3c212d175419eb5d3", "sha256": "52360177182b40f84bceb5bf458f6f3938405d05ca0a4b9d2fad877e346e5c36" }, "downloads": -1, "filename": "coursera-0.5.2.tar.gz", "has_sig": true, "md5_digest": "e0c9c19380667af3c212d175419eb5d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 54228, "upload_time": "2016-02-11T04:45:49", "url": "https://files.pythonhosted.org/packages/92/a1/5b194fbebc8850ca1b1c15f65e1ca7c5e52a2eb570767d57b6b0c46e175b/coursera-0.5.2.tar.gz" } ] }