Site: Fandom

For instructions on how to use recipes as well as pointers to other structured sites to use for word list building, see the recipes home page.

To get the primary text content of a Fandom page

The options below will grab the text from an article on a standard Fandom wiki, defined by all text content within <p> tags.

--webpage https://[fansite].fandom.com/wiki/[subject] --container id=mw-content-text --webextract html-p

Unfortunately there is no single container used by Fandom wikis that contains only the article text; the one used above (mw-content-text) may also include additional messages such as references to spoilers, other texts, etc. It is recommended that you first use the above recipe to pull the raw text and then manually delete any such extraneous text. Then you can run the standard commands for turning the remaining text into a word list by using either line2word or word2word.

To get a list from a Fandom table

The options below will help you parse a Fandom table, a good example of which is a list of enchantments on the Minecraft Fandom wiki.

Every table in a standard Fandom page uses the class label wikitable. The instructions below — container class=wikitable — will grab all of such tables on the page. If you only want to get the content from one particular table, be sure to add =N to the end of the option, where N is which table (in order from the top) is being requested. For example, to pull the second table you would specify container class=wikitable=2. Experiment to make sure you are grabbing the data you are interested in.

To grab the key text (usually the first column), it is important to understand how the table is structured. For instance, on the above mentioned Minecraft enchantments page, the second table called “Summary of Enchantments” lists all the enchantments as a link (i.e., within an <a> tag). The option webextract html-a requests only text that is within links in that table, thus capturing the name of all the enchantments listed. To pull that list of enchantments, you would use this recipe.

--webpage https://minecraft.fandom.com/wiki/Enchanting --container class=wikitable=2 --webextract html-a

As described in the primary text section, this will also result in some extraneous data since there are a few other links in that table. Therefore, it is recommended that you first pull the raw text, then edit anything extraneous and finally run the additional commands line2word or word2word.

Additional Notes

Always read the terms of service first! Our inclusion of any website does not guarantee that pulling information programmatically is allowed under the site’s terms of service or that you won’t be blocked trying. We make no representations of anything; you’re on your own when use xwordlist and when you download data from public websites while using it.