The package lists all the Harry Potter spells.
Specifically, the scripts scrape the data from the website harrypotter.wikia.com and and provides all the spells.
The various python scripts provides various filters to list out the spells and enchantments (magic enchantments which are not specifically spells).
pip install potter_spells
>>> import potter_spells as potter
>>> potter.all_data()
>>> potter.find('Avada Kedavra')
>>> potter.all_spell_names()
>>> potter.all_enchantment_names()
>>> potter.all_by_type('Charm')
>>> potter.spells_by_type('Hex')
>>> potter.enchants_by_type('Charm')