mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
12 lines
252 B
Python
12 lines
252 B
Python
from .funcs import *
|
|
from .__init__ import getGenList
|
|
from worksheetgen.wg import Worksheet
|
|
|
|
genList = getGenList()
|
|
|
|
|
|
# || Non-generator Functions
|
|
def genById(id, *args, **kwargs):
|
|
generator = genList[id][2]
|
|
return (generator(*args, **kwargs))
|