Legends of Runeterra deck coder and decoder
Project description
Python Implementation
Install
python >=3.5 required pip >= 19.0.0
pip install lor-deckcodes
Usage
Ever expanding rich API with method to display cards conveniently
from lor_deckcodes import LoRDeck, CardCodeAndCount
# Decoding
deck = LoRDeck.from_deckcode('CEBAIAIFB4WDANQIAEAQGDAUDAQSIJZUAIAQCBIFAEAQCBAA')
# list all cards with card format 3:01SI001
list(deck)
card = deck.cards[0] # instance of CardCodeAndCount
card.faction # SI/FR...
card.card_id # 111
card.set # 01
# Encoding
# These are equivalent
deck = LoRDeck(['3:01SI015', '3:01SI044'])
deck = LoRDeck([
CardCodeAndCount.from_card_string('3:01SI015'),
CardCodeAndCount('01SI015', 3)]
)
# returns encoded string
deck.encode()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lor_deckcodes-5.0.0.tar.gz
(4.6 kB
view hashes)
Built Distribution
Close
Hashes for lor_deckcodes-5.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 190f95cb55ca0922b5b66969ef513c17e1e8aa535be229c3bd9be00d2a64baa3 |
|
MD5 | 47b886fe671f538371a2a59bd428170b |
|
BLAKE2b-256 | b94f0e846e6a1d6667072c297bcf4018c2bba6d36a009ae07c395f6d959a0799 |