Created
May 1, 2016 23:41
-
-
Save grejppi/356619dcac091b5cc88df6ff6aa06711 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python 3.5.1+ (default, Mar 30 2016, 22:46:26) | |
[GCC 5.3.1 20160330] on linux | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> import generator | |
>>> g = generator.Generator('adjectives', 'nouns_filtered') | |
>>> next(g) | |
'haisevampi ruusupuu' | |
>>> next(g) | |
'lihava spriidari' | |
>>> next(g) | |
'raskas binääri' | |
>>> next(g) | |
'gotlantilainen unihiekka' | |
>>> next(g) | |
'charmikas kasvain' | |
>>> next(g) | |
'riidanhaluinen genisteiini' | |
>>> next(g) | |
'eksponentiaalinen työkalupakki' | |
>>> next(g) | |
'hullu estrogeeni' | |
>>> next(g) | |
'pitkittäinen karstalankakangas' | |
>>> next(g) | |
'autistinen tummaverikkö' | |
>>> next(g) | |
'jumalainen spesies' | |
>>> for i in range(16): | |
... print(next(g)) | |
... | |
sinisiipinen hygrometri | |
geriatrinen coverversio | |
allotrooppinen iguaani | |
sensitiivinen elinsiirtotoiminta | |
puolikuollut genetiiviakkusatiivi | |
niljakas kiintopiste | |
epäesteettinen paljassiemeninen | |
alakuloinen kylmäkkö | |
isometrinen breikkitanssi | |
kiltti ristitulo | |
nokallinen fes | |
miehinen munuaissyöpä | |
epänaisellinen hiiliatomi | |
kiehtova ponttilauta | |
sopiva kalkki | |
intellektuelli peitsimies | |
>>> for i in range(24): | |
... print(next(g)) | |
... | |
karkea ylhäisö | |
savunmakuinen oluthana | |
liehakas kiinankaali | |
asuurinsininen päihde | |
esijaettu eettisyys | |
säärevä digikuilu | |
herkullisempi loka | |
itsetoiminen yty | |
monikulttuurinen kitkentä | |
bangladeshilainen akankanto | |
gnostinen galego | |
seksuaalinen etanoli | |
rietas briljanttisormus | |
nimeämätön omenanviljelijä | |
monikielinen aapiskukko | |
aravalainoitteinen bibliografia | |
aramealainen yhteys | |
uskonnoton aaltomittari | |
pelokas iskuvasara | |
nuori merkitsevyys | |
mäsä sipinä | |
liukas glencheck | |
tunnettu sinimuura | |
lineaarinen käsikirjoittaja | |
>>> for i in range(24): | |
... print('In Finland we have this thing called {}'.format(next(g))) | |
... | |
In Finland we have this thing called sähköinen syntymä | |
In Finland we have this thing called vaaleaihoinen jäänsärkijä | |
In Finland we have this thing called tomera mielle | |
In Finland we have this thing called pohjaeliöstö poppari | |
In Finland we have this thing called hihaton demokraattisuus | |
In Finland we have this thing called eksistentialistinen outous | |
In Finland we have this thing called kellahtava vitaalielin | |
In Finland we have this thing called möreä entropia | |
In Finland we have this thing called upea aasianpalmukiitäjä | |
In Finland we have this thing called skottilainen maitorahka | |
In Finland we have this thing called riittävä G-duuri | |
In Finland we have this thing called filateelinen samppanjapullo | |
In Finland we have this thing called rakettimainen ensiapulaukku | |
In Finland we have this thing called makaaberi adoptointi | |
In Finland we have this thing called röyhelöinen vivahde | |
In Finland we have this thing called stokastinen kahvinvastike | |
In Finland we have this thing called suussasulava iltapäivälehti | |
In Finland we have this thing called abyssaalinen kanala | |
In Finland we have this thing called virallinen analytiikka | |
In Finland we have this thing called ahdas ponttoni | |
In Finland we have this thing called krouvi lineaariavaruus | |
In Finland we have this thing called afroaasialainen bolidi | |
In Finland we have this thing called monogyyninen kierteitystappi | |
In Finland we have this thing called kolho eksentrisyys | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment