Had to take it down, the host I was running it on is no longer available. I also have minimal time to continue to maintain it. I have since migrated the entire site to a simple set of bash and python scripts I can run to get my searches done. They are posted below for everyone to modify and use as they see fit. My apologies for parking the domain, hopefully this will make up for it!
[CODE lang="bash" title="Item Database Downloader"]#!/bin/bash
# download latest itemlist from sodeq.org
wget http://items.sodeq.org/downloads/items.txt.gz
gunzip -f items.txt.gz
# fix the funky Iksar R/L Hand import issue
sed -i 's/=\\|-/X420X/g' items.txt
[/CODE]
and the search utility that parses the items.txt file you just downloaded with the previous script.
[CODE lang="python" title="Item Search Python Script"]#!/usr/bin/python3
import csv
itemSearch = input("What item would you like me to look up?\n")
print("Generating advloot syntax for: ", itemSearch)
n = len(itemSearch)
with open('items.txt', 'r', newline='') as csvfile:
readCSV = csv.reader(csvfile, delimiter='|')
for row in readCSV:
itemName = row[1]
itemID = row[5]
itemIconID = row[13]
if itemName[:n].lower() == itemSearch.lower():
advline = itemID+'^'+itemIconID+'^'+itemName
print(advline)
[/CODE]
Enjoy!