Skip to main content

Download and publish EverQuest scripts and software using the RedGuides API

Project description

six wizards levitating a package, the word redfetch underneath

redfetch is for updating software and scripts for EverQuest that RedGuides recommends, as well as those you "watch". It's also open source, how nice.

Installation

On Windows the easiest way to install redfetch is to download and run redfetch.exe. (optional: If you're still on Windows 10 and want a more modern appearance, follow this guide to set Windows Terminal as your default terminal.)

Terminal / Python / Linux

Make sure you have a recent version of Python

  1. Install pipx
python -m pip install --user pipx
  1. Make it so you can run packages without having to type "python -m"
python -m pipx ensurepath
  1. Install redfetch
pipx install redfetch

When you open a new terminal window, you'll be able to run redfetch by typing redfetch from the command line.

Usage

1) Double-click redfetch.exe to run the script.

Take a moment to consider your configuration and the settings tab.

2) Click the big blue "Easy Update" button, and then "Yes" or "Always" on the popup.

a screenshot showing the easy update button
(It's updating Very Vanilla MQ and any of its scripts or plugins you have watched on RedGuides, your licensed resources, and scripts recommended by staff. You can customize this if you like.)

Now you're ready to play EQ with the big boys.

Add more MQ Scripts

To add more MacroQuest scripts, "watch" them on www.redguides.com/community/resources, and then click the Easy Update button again.

a screenshot showing the watch button on a resource page

If there are non-MQ resources you'd like to keep in sync with redfetch, you can add them as a "special resource" in the local settings file, as shown in settings section.

Command Line

To run redfetch from the command line:

.exe file python
.\redfetch.exe update redfetch update

a screenshot showing the command line interface

Command Line Reference

Run redfetch --help or .\redfetch.exe --help to see something like this in your terminal:

📦 Resource Management

  • update - Update all watched and special resources
    • --force / -f - Force re-download of all watched resources
  • download <ID_OR_URL> - Download a specific resource by ID or URL
    • --force / -f - Force re-download by resetting this resource's download date
  • list - List resources and dependencies in the cache database
  • reset - Reset download dates for watched resources

🍔 Configuration

  • server <SERVER> - Switch the current server/environment to LIVE, TEST, or EMU
  • config <SETTING_PATH> <VALUE> - Update a setting by path and value
    • SETTING_PATH - Dot-separated setting path (e.g., SPECIAL_RESOURCES.1974.opt_in)
    • VALUE - New value for the setting
    • --server / -s - Server to apply the change in (LIVE, TEST, EMU)
  • status - Show the configuration for the current or specified server
    • --server / -s - Server to show (defaults to current)

🔧 System & Utilities

  • ui - Launch the Terminal User Interface
  • web - Launch the RedGuides.com web interface
  • version - Show version and exit
  • logout - Disconnect your account from redfetch
  • uninstall - Uninstall redfetch and clean up data

📤 Publishing

  • publish <resource_id> - Publish an update to you or your team's resource. There's also a github action for this.
    • resource_id - Existing RedGuides resource ID
    • --description <README.md> / -d - Path to a file (e.g. README.md) that will become the resource's overview description
    • --version <version_number> / -v - New version string (e.g., v1.0.1)
    • --message <CHANGELOG.md | MESSAGE> / -m - Version update message, a message file (e.g. message.md / message.txt), or a CHANGELOG.md (keep a changelog) file.
    • --file <FILE.zip> / -f - Path to your zipped release file
    • --domain <URL> - Domain to prepend to relative URLs in README.md or CHANGELOG.md files. (mostly for images. e.g., https://raw.githubusercontent.com/yourusername/yourrepo/main/)

Settings

settings.local.toml is found in your configuration directory, which by default is c:\Users\Public\redfetch\settings.local.toml. Any keys you add will override their default values in settings.toml.

All settings are prefixed with the environment,

  • [DEFAULT] - encompasses all environments that are not explicitly defined.
  • [LIVE] - EverQuest Live
  • [TEST] - EverQuest Test
  • [EMU] - EverQuest Emulator

Adding a special resource

To add a "special resource" (a non-MQ resource that you want to keep updated), open settings.local.toml and add an entry. You'll need the resource ID (numbers at the end of the url) and a target directory. Example:

[LIVE.SPECIAL_RESOURCES.153]
custom_path = 'C:\Users\Public\Daybreak Game Company\Installed Games\EverQuest\maps\Brewall_Maps'
opt_in = true
  • Note the use of single quotes around the path, which are required for windows paths.

The above will install Brewall's maps to the EQ maps directory the next time --download-watched is run for LIVE servers.

Overwrite protection

If there are local files you don't want overwritten by a resource, you can add them to the PROTECTED_FILES_BY_RESOURCE setting. Include the resource ID and files you want to protect. e.g.,

[LIVE.PROTECTED_FILES_BY_RESOURCE]
1974 = ["CharSelect.cfg", "Zoned.cfg", "MQ2Map.ini", "MQ2MoveUtils.ini"]
153 = ["citymist.txt", "innothule.txt", "oasis.txt"]
navmesh = ["befallen.navmesh", "innothuleb.navmesh"]

Tinkerers

If you self-compile MacroQuest or use a discord friend's copy, you can still keep your scripts and plugins in sync with redfetch by opting out of Very Vanilla:

redfetch.exe config SPECIAL_RESOURCES.1974.opt_in false --server LIVE
redfetch.exe config SPECIAL_RESOURCES.60.opt_in false --server EMU
redfetch.exe config SPECIAL_RESOURCES.2218.opt_in false --server TEST

Then assign the Very Vanilla MQ path to your self-compiled MacroQuest.

Trailmap

  • Re-write auth for Xenforo 2.4 (when available).
  • Add custom buttons for "fetch" tab.
  • Option: Close after update
  • Launch programs with cli options
  • Indicate when updated VV is available
  • Launch more than just mq (eqbcs, etc) upon update.
  • Run from MQ
  • Integrate with the forums

Contributing

I'd love help, conceptually and technically. I'm not a developer and this is my first big python script.

To set up a development environment,

git clone https://github.com/RedGuides/redfetch
cd redfetch
pip install hatch
hatch env create dev
hatch shell dev

You can then run your dev version with,

redfetch

Or if the issue is ui-specific, run the terminal UI in debug mode,

textual run --dev .\src\redfetch\main.py

When you're done, type exit to leave the shell.

Project details


Download files

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

Source Distribution

redfetch-1.0.0.tar.gz (116.1 kB view details)

Uploaded Source

Built Distribution

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

redfetch-1.0.0-py2.py3-none-any.whl (103.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file redfetch-1.0.0.tar.gz.

File metadata

  • Download URL: redfetch-1.0.0.tar.gz
  • Upload date:
  • Size: 116.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for redfetch-1.0.0.tar.gz
Algorithm Hash digest
SHA256 042f432fde7ca3f9f52f70879ac7b53ef4c2f74e03ae502c7a97d508cf248ab0
MD5 e63682d92991cdcfb097ca081650270b
BLAKE2b-256 5711db88019ee4b5253988defa4c80f674478692b0235220596d1176138f2a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for redfetch-1.0.0.tar.gz:

Publisher: pipeline.yml on RedGuides/redfetch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file redfetch-1.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: redfetch-1.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 103.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for redfetch-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4ca9c0a4d66a79f05f9d3465b95e7b7452d20bff1b89d40d99e93f136602e22b
MD5 8f95b19960d22560d0b67b2b99fedc71
BLAKE2b-256 0ddbbaeab08eafbe758b422dfeb07c50fd33da370671a26904cc27116c671052

See more details on using hashes here.

Provenance

The following attestation bundles were made for redfetch-1.0.0-py2.py3-none-any.whl:

Publisher: pipeline.yml on RedGuides/redfetch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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