You can use this library as a CLI tool to generate character sheets from the terminal; seepython -m dnd_character --helpfor details. Installation and Use Install from PyPI usingpip install dnd-character Seeexample.pyfor example code on how to use the library. ...
Depletion and rest mechanics are planned for a future version. from dnd_character import Wizard from dnd_character.spellcasting import SPELLS # Create wizard and teach Identify, a level 1 spell my_wizard = Wizard(name="Gormwinkle") my_wizard.spells_prepared.append(SPELLS["identify"]) # Get ...