Вот генератор на основе itertools:
import itertools, string
def plates():
n = 1
while True:
for plate in itertools.product(string.ascii_lowercase,repeat = n):
yield ''.join(plate)
n += 1
#test:
p = plates()
test = [next(p) for _ in range(10000)]
print(test[:30])
print(test[-30:])
вывод:
['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'aa', 'ab', 'ac', 'ad']
['nsm', 'nsn', 'nso', 'nsp', 'nsq', 'nsr', 'nss', 'nst', 'nsu', 'nsv', 'nsw', 'nsx', 'nsy', 'nsz', 'nta', 'ntb', 'ntc', 'ntd', 'nte', 'ntf', 'ntg', 'nth', 'nti', 'ntj', 'ntk', 'ntl', 'ntm', 'ntn', 'nto', 'ntp']