Skip to main content

A Moodle downloader that downloads course content fast from Moodle (eg. lecture pdfs)

Project description


Moodle Downloader 2

Because manually downloading all the course files every few days is just way too easy inefficient.
Built with ❤︎

Hey 👋.

Moodle Downloader 2 in short moodle-dl is a console application that can download all the files from your Moodle courses that are necessary for your daily study routine. Furthermore, moodle-dl can notify you about various activities on your Moodle server. Notifications can be sent to Telegram, XMPP and Mail. The current implementation includes:

  • Download files, assignments including submissions, forums, workshops, lessons, quizzes, descriptions, as well as external links.
  • Notifications about all downloaded files
  • Text from your Moodle courses (like pages, descriptions or forum-posts) will be directly attached to the notifications, so you can read them directly in your messaging app.
  • A configuration wizard is also included, allowing all settings to be made very easily.
  • Running moodle-dl again will only download files that have not been downloaded yet. Do not miss any files, if files are deleted online, they are still available offline.
  • It is possible to download Moodle courses you are enrolled in, as well as courses that are publicly visible to you.

🚀 Setup

Deploy with Docker latest packaged version(s) Packaging status

  1. Install Python >=3.7
  2. Install ffmpeg
  3. Run pip install moodle-dl as administrator.
    (To upgrade from an older Version use pip install -U moodle-dl instead)
  4. Run moodle-dl --init in the desired download directory.

If you run the program on Windows, please use Powershell or CMD. Please do not use a mintty like MINGW or similar.

Usage

  • moodle-dl
    • Fetches the current state of your Moodle Account, saves it and detects any changes.
    • If configured, it also sends out a notifications.
    • It prints the changes into the console
  • moodle-dl --init
    • Guides you trough the configuration of the software, including the activation of notifications and obtainment of a login-token for your Moodle-Account.
    • After the necessary configuration, further additional configurations can be made.
    • If you have to log in with Single Sign On (SSO), you can set the option --sso additionally.
  • moodle-dl --config
    • Guides you through the additional configuration of the software.
    • The guide allows you to
      • select the courses that will be downloaded.
      • rename each course individually.
      • decide if subfolders should be created inside a course folder.
      • set whether submissions (files uploaded to assignments by yourself or a teacher), descriptions, links inside descriptions, databases, quizzes, lessons, workshops and forum discussions should be downloaded.
      • set if external linked files should be downloaded (files like youtube videos).
      • set if files on moodle that require a cookie should be downloaded.
      • to add extra courses to your download list which you can see but you are not enrolled in, check out this wiki entry.
  • moodle-dl --new-token
    • Overrides the login-token with a newly obtained one.
    • The script will ask for credentials unless they are explicitly specify with the options --username and --password
    • Use it if at any point in time, for whatever reason, the saved token gets rejected by Moodle.
  • moodle-dl --change-notification-mail
    • Activate/deactivate/change the settings for receiving notifications via e-mail.
  • moodle-dl --change-notification-telegram
    • Activate/deactivate/change the settings for receiving notifications via Telegram.
    • Click here for help in setting up telegram notifications
  • moodle-dl --change-notification-xmpp
    • Activate/deactivate/change the settings for receiving notifications via XMPP.
  • moodle-dl --manage-database
    • To manage the offline database.
    • It allows you to delete entries from the database that are no longer available locally so that they can be downloaded again.
  • moodle-dl --delete-old-files
    • To delete old versions of updated files.
  • moodle-dl --add-all-visible-courses
    • To add all courses visible to the moodle user to the configuration file.
  • moodle-dl --version
    • Print program version and exit
  • moodle-dl --log-responses
    • To generate a responses.log file, in which all JSON responses from Moodles are logged along with the requested URL
    • This is for development and debugging purposes only. The log file may contain private data.

Options

Options can be combined with all the actions mentioned above.

  • --path PATH
    • This option can be useful if you want to save the downloaded files in a directory other than the current working directory (the directory where you run the script).
    • Sets the location of the configuration, logs and downloaded files.
    • PATH must be an existing directory in which you have read and write access.
    • Default: current working directory
  • --threads INT
    • Overwrites the number of download threads. (default: 5)
  • --verbose
    • Print various debugging information into the MoodleDownloader.log file.
  • --username USERNAME
    • Can be used to automate the --new-token process.
    • Specify username to skip the query when creating a new token.
  • --password PASSWORD
    • Can be used to automate the --new-token process.
    • Specify password to skip the query when creating a new token.
    • If the password contains special characters like spaces you can enclose it in quotation marks
  • --max-path-length-workaround
    • If this flag is set, all path are made absolute in order to work around the max_path limitation on Windows.
    • To use relative paths on Windows you should disable the max_path limitation.
    • Default: False
  • --skip-cert-verify
    • This flag is used to skip the certification verification while sending requests to Moodle and all other websites.
    • Warning: This might lead to security flaws and should only be used in non-production environments.
    • Default: False
  • --ignore-ytdl-errors
    • If this option is set, errors that occur when downloading with the help of Youtube-dl are ignored. Thus, no further attempt will be made to download the file using youtube-dl.
    • By default, youtube-dl errors are critical, so the download of the corresponding file will be aborted and when you run moodle-dl again, the download will be repeated.
    • You can use this option if a download using youtube-dl fails repeatedly.
  • --without-downloading-files
    • This flag is used to skip the downloading of files.
    • This allows the local database to be updated to the latest version of Moodle without having to download all files.
    • This can also be used to ignore recurring errors by adding the files that produce the errors to the database. So these files are not downloaded again.
  • --sso
    • This flag is used to indicate that a Single Sign On (SSO) login to your Moodle is required.
    • Can be combined with --init and --new-token.

Notes

  • Use a separate E-Mail/XMPP - Account for sending out the notifications, as its login data is saved in cleartext.
  • The Login-Information for your Moodle-Account is secure, it isn't saved in any way. Only a Login-Token is saved.
  • Your Moodle token is stored in the configuration file (config.json). Be careful that no unauthorized person reads this file, especially the token must not be given to an unauthorized person, this can cause a lot of trouble.
  • The privatetoken can be used to create a cookie for your Moodle account. A Cookie is what is used to tell Moodle that you are logged in. The cookie.txt always keeps a valid cookie for you, take great care of this file, if it falls into the wrong hands someone can take over your entire Moodle account. This feature is only important for Moodles with plugins installed that are not supported by the Moodle app. If you do not want to generate cookies, remove the privatetoken from the config.json.

🏆 Contributing

Do you have a great new feature idea or just want to be part of the project ? Awesome! Every contribution is welcome! If you want to find out more about how to contribute to the project, please checkout our CONTRIBUTING.md!

⚖️ License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

moodle-dl-2.2.1.4.tar.gz (148.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

moodle_dl-2.2.1.4-py3-none-any.whl (170.2 kB view details)

Uploaded Python 3

File details

Details for the file moodle-dl-2.2.1.4.tar.gz.

File metadata

  • Download URL: moodle-dl-2.2.1.4.tar.gz
  • Upload date:
  • Size: 148.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for moodle-dl-2.2.1.4.tar.gz
Algorithm Hash digest
SHA256 84fb99e1a23e0940f13a21323bd554927a49885e09f0c1e4fc5f7ac3a3a0239b
MD5 67601b1da968a016d903be590e83b45e
BLAKE2b-256 56154be55d29dd19b5d7936a5374f8ffda92f78ce194e0ed821e2507b7a66edb

See more details on using hashes here.

File details

Details for the file moodle_dl-2.2.1.4-py3-none-any.whl.

File metadata

  • Download URL: moodle_dl-2.2.1.4-py3-none-any.whl
  • Upload date:
  • Size: 170.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for moodle_dl-2.2.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1dce4b415c5ccc78644331b2dbdb2622fc74e9bc48e97ab8e146c141445a587a
MD5 396949ed665df63d58e1310cfad37361
BLAKE2b-256 a0be780aa3d1b0fc3d39934209b38f6e2a6a9f7475775ce5825818ecce4fa7fc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page