Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Python wrapper for Secret of Evermore Randomizer from https://github.com/black-sliver/evermizer
This is used in Archipelago cross-game multiworld randomizer.
pip install pyevermizer
pip install
itgit clone https://github.com/black-sliver/pyevermizer --recurse-submodules
python3 -m build --wheel
pip install dist/*.whl
git clone https://github.com/black-sliver/pyevermizer --recurse-submodules
main(src: Path, dst: Path, placement: Path, apseed: str, apslot: str, seed: int, flags: str,
money: int, exp: int, switches: list[str]) # create a randomized rom
get_locations() -> List[Location] # returns a list of all non-sniff locations
get_sniff_locations() -> List[Location] # returns a lof of all sniff spots
get_items() -> List[Item] # returns a lost of all vanilla non-sniff items
get_sniff_items() -> List[Item] # returns a list of vanilla sniff spot items
get_extra_items() -> List[Item] # returns all extra items that can be placed, but are not vanilla
get_traps() -> List[Item] # returns all traps that can be placed
get_logic() -> List[Location] # returns the logic as real and pseudo locations for all locations that provide progress
P_... # some progression IDs
class Location:
name: str
type: int # location type, i.e. gourd, alchemy, boss
index: int # location index for each location type. (type, index) gives a unique ID
difficulty: int # difficulty 0..2 for bad/hidden spots
requires: List[Tuple[int, int]] # list of (amount, progression) required to reach the spot
provides: List[Tuple[int, int]] # list of (amount, progression) provided by reaching the spot
class Item:
name: str
progression: bool
useful: bool
type: int # vanilla location type or extra location type, i.e. gourd, alchemy, boss, trap
index: int # item index for each location type. (type, index) gives a unique ID
provides: List[Tuple[int, int]] # list of (amount, progression) provided by obtaining the item
See Archipelago/worlds/soe for a complete example.
FAQs
Python wrapper for Evermizer
We found that pyevermizer 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.