Skyrim
0 of 0

File information

Last updated

Original upload

Created by

arT2

Uploaded by

gamemodul

Virus scan

Safe to use

About this mod

A mods collection list creator to use with the Nexus Mod Manager. It can create HTML, BBCODE, CSV, JSON, and TXT output. Also works with games other than Skyrim.

Requirements
Permissions and credits
Changelogs
NMLISTER

A mods collection list creator to use with the Nexus Mod Manager.
It can create HTML, BBCODE, CSV, JSON, and TXT output.

Runs on Windows and Linux.


doc/README.html included.


3.0.1 is the last version from me for now. Feel free to build upon this.


HOW TO FIX BROKEN LINKS FOR SKYRIM SPECIAL EDITION MOD PAGES

In lib/nmlister/parser.py

1. add below line 42:

game_url_key = game_handle
if game_handle == 'skyrimse': game_url_key = 'skyrimspecialedition'  


2. replace line 64 from:

link_page = '{}{}/mods/{}'.format(self.brain.nexusmods_base_url, game_handle, mod.attrib['modId'])

to

link_page = '{}{}/mods/{}'.format(self.brain.nexusmods_base_url, game_url_key, mod.attrib['modId'])
    
3. save

4. restart nmlister