Welcome to growtopia-info! This code can search any info in Growtopia, like sprite, description, server status and more!
If you want to try this code, you can download it by writing this on CMD, PowerShell or Terminal
PS> pip install Growtopia-Info==2.0.2
PS> pip install Growtopia-Info
requests
PS> pip install requests
beautifulsoup
PS> pip install beautifulsoup4
Once you install the package, you can use the package to search any items in Growtopia Fandom (ID/EN/ES)* and Server Status in Growtopia!
If you want to know about server, you can use this code:
import GTInformation
print(GTInformation.GameData())
The output will look like this:
{
"Online_User":"67767",
"WOTDLink":"https://www.growtopiagame.com/worlds/oillao.png",
"WOTDName":"OILLAO",
"GTTime":"09:42:09",
"GTDate":"09/13/22"
}
The next code is Item Sprite, yes! You can use this package to search Item Sprite! Lets find Dirt:
import GTInformation
print(GTInformation.ItemSprite("Dirt"))
And here's the output:
{
"Item":"https://static.wikia.nocookie.net/growtopia/images/8/8f/ItemSprites.png/revision/latest/window-crop/width/32/x-offset/32/y-offset/1152/window-width/32/window-height/32?format=webp&fill=cb-20220909151519",
"Tree":"https://static.wikia.nocookie.net/growtopia/images/e/e5/TreeSprites.png/revision/latest/window-crop/width/32/x-offset/32/y-offset/1152/window-width/32/window-height/32?format=webp&fill=cb-20220909151522",
"Seed":"https://static.wikia.nocookie.net/growtopia/images/9/9c/SeedSprites.png/revision/latest/window-crop/width/16/x-offset/16/y-offset/576/window-width/16/window-height/16?format=webp&fill=cb-20220909151520",
"Title":"Dirt"
}
**Note! This link is not from Growtopia or Ubisoft, we use web scraping on growtopia.fandom.com to get this data! But don't worry, you don't need a Fandom.com account to use this package!
What about Item Data? You can use ItemData to get the Item Data:
import GTInformation
print(GTInformation.ItemData("Dirt"))
The output:
{
"Description":"Yep, it's dirt.",
"Properties":[
"None"
],
"Rarity":1,
"Type":[
"Foreground Block",
"Foreground"
],
"Chi":"Earth",
"Texture Type":"8 Directional",
"Collision Type":"Full Collision",
"Hardness":{
"Fist":"3",
"Pickaxe":"3",
"Restore":"8"
},
"Seed Color":[
"#603913",
"#A67C52"
],
"Grow Time":"31s",
"Default Gems Drop":"0 - 1",
"Title":"Dirt"
}
Yeah yeah cool... but, can we get the item recipe? Yes you can! here:
import GTInformation
print(GTInformation.ItemRecipe("Water Bucket"))
The output:
{
"Treasure Blast":[
[
"It can be found naturally generated in Treasure-blasted worlds.",
""
]
],
"Undersea Blast":[
[
"It can be found naturally generated in Undersea-blasted worlds.",
""
]
],
"Beach Blast":[
[
"It can be found naturally generated in Beach-blasted worlds.",
""
]
],
"Summer Surprise":[
[
"Chance to be dropped from breaking a: • Summer Surprise • Treasure Chest naturally-generated in a beach-blasted world",
"May yield 1 item each time."
]
],
"Splicing":[
[
"The tree of this item can be made by mixing the following seeds:",
"Aqua Block Seed Toilet Seed",
""
]
],
"Provider":[
[
"Drops in sets of 1-2 from harvesting a/an: Well"
]
],
"Special Event":[
[
"Found in the Beat The Heat! special event .",
"One has unlimited time to find? dropped Water Bucket."
]
],
"Title":"Water Bucket"
}
- You can also change different languages (if the page exists), here's some example code:
import GTInformation
print(GTInformation.ItemRecipe("Water Bucket", "id"))
The output:
{
"Pencampuran":[
[
"Pohonnya dapat dibuat dengan cara Pencampuran :",
"Aqua Block Seed Toilet Seed",
""
]
],
"Summer Surprise":[
[
"Kemungkinan didapat dengan cara menghanucrkan Summer Surprise atau dari Treasure Chest biasanya muncul secara alami di world pantai .",
"Player mungkin akan mendapatkan 1 item"
]
],
"Produksi":[
[
"1-2 Item ini diproduksi dari Well ."
]
],
"Special Event":[
[
"Dapat ditemukan di Beat The Heat! special event .",
"Player memiliki waktu tidak terbatas untuk menemukan? Water Bucket."
]
],
"Muncul Secara Alami":[
[
"Item ini muncul secara alami di world yang menggunakan: • Undersea Blast • Beach Blast • Treasure Blast"
]
],
"Tidak Tersedia Lagi":{
"Peluang Saat Menghancurkan":[
[
"1 item ini didapat dengan cara menghancurkan • Fishing Supply Crate"
]
]
},
"Title":"Water Bucket"
}
Language code can be found in: https://community.fandom.com/wiki/Help:Language_code
Yeah...... i hate bug, especially cockroaches! Here's the list of bugs I found in this package
- Sometimes you will get 403 Forbidden error (i cant fix this, because this is Growtopia's fault)
- Page with tabber, tabview still not working (fixed! (only tabber!))
- Page with tabber, tabview still not working (fixed! (only tabber!))
- Page with tabber, tabview still not working (fixed! (only tabber!))
- Duplicate template not working (ex: Pocong Clothes, Mine Laser Drill, and more) (fixed!)
- Page with 3 Require template not working (ex: Mossy Mask)
- Require template not working (ex: Rift Cape, Pegasus Chest, and more) (fixed!)
- When you use this in page that uses RecipeCrystal it wont show the the crystal (i cant fix this, unless they add the crystal name in the code like adding parameter in the link or something) *thanks cynthia for telling me this