Skip to content

JaedanC/MinecraftItemListWebScraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Minecraft Item Scraper

To run, first ensure you have the BeautifulSoup module:

pip install bs4 requests

Then run,

python minecraft_items.py <folder-to-save-images-to> <csv-file-name>

This will download the images to the folder you specified, and write relevant metadata to the csv provided.

Example Usage

python minecraft_items.py img data.csv

Resulting file structure:

📦MinecraftItemListWebScraper
┣ 📜minecraft_items.py
┣ 📜data.csv
┗ 📂img
  ┣ 📜acacia_door acacia_door.png
  ┣ 📜acacia_fence acacia_fence.png
  ┗ ...

data.csv:

name, id_name, id, data_value, image_path
Acacia Door, minecraft:acacia_door, 430, 0, img/acacia_door acacia_door.png
Acacia Fence, minecraft:acacia_fence, 192, 0, img/acacia_fence acacia_fence.png
...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages