Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
🌎 A python wrapper for pixel worlds' data
About | Installation | Usage | Author | License |
Pixel Worlds API is a python wrapper for Pixel Worlds' data. It was built to get blocks info, recipes, wearables and also events.
You can easily get information without storing thousands of pixel worlds data time to time. With just a single module, you can get everything you want.
First of all you need to install python. Please choose version 3.x. Next step is download it via pip:
(copy this command and paste to your terminal)
$ pip install pixelworldsapi
from pixelworlds import Item
item = Item("soil block")
# Item class functions:
#
# get_description() -> Get description
# get_complexity_info() -> Get complexxity info
# get_tier_info() -> Get tier info
# get_rarity_info() -> Get rarity info
# get_item_type() -> Get item type
# get_farmable_info() -> Get farmable info
# get_growth_time() -> Get growth time
# get_data() -> Get all data in a dict for
# get_recipe () -> Get recipe
print(item.get_data()) # Get all data in a json format
# Output:
#
# {
# "name": "Soil Block",
# "description": "This is what natural ground is made of. Most common block of them all.",
# "complexity": "1",
# "tier": "1",
# "rarity": "Common",
# "itemType": "Blocks",
# "farmable": "Farmable",
# "growthTime": "31s",
# "recipe": None
# }
print(item.get_description()) # Get description info
# Output:
# This is what natural ground is made of. Most common block of them all.
# On going
# On going
Pixel Worlds API Author/s
Zenqi |
Pixel worlds API is under GNU Affero General Public License.
FAQs
🌎 A python wrapper for pixel worlds' data
We found that Pixelworlds demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.