dimjournal

Dimjournal

Dimjournal is a Midjourney backup tool. It automatically downloads the metadata archive and the upscaled images from Midjourney into a local archive (folder tree). It also embeds some basic metadata (like the prompt) into the PNG files.

Note: the terms of use of Midjourney disallow any automation.

Dimjournal is a Python tool uses the Selenium WebDriver to log into the Midjourney website, fetch user data, and download job information and images.

Changelog

Installation

Stable version:

pip install dimjournal

Development version:

python3 -m pip install git+https://github.com/twardoch/dimjournal

Usage

Command Line Interface (CLI)

In Terminal, run:

dimjournal

Dimjournal will open a browser where you need to log into MidJourney. The tool will create the backup folder, which by default is the midjourney/dimjournal subfolder inside your Pictures/My Pictures folder. It will operate the browser, download all metadata (up to 2,500 last upscale jobs, and up to 2,500 jobs), and save it in JSON files in the backup folder. Then it will use the browser to download all upscales that are not in the backup folder. If you run the tool again, it will only download new metadata, and new images.

To specify a different backup folder, use:

python3 -m dimjournal --archive_folder /path/to/your/archive/folder

Python

You can also use Dimjournal in your Python scripts. Here is an example of how to import and use the download function:

from dimjournal import download

# Specify the directory where you want to store the data
archive_folder = "/path/to/your/archive/folder"

# Download the data
download(archive_folder)

License