#priest
Generate wishes from your command line with full customization.
Clueless ?
- If you try this in night :
>>> from priest import now
>>> now()
#=> good night, have sweet dreams !!#=> howdy, nighttime :-)- If you try this in morning :
>>> from priest import now
>>> now()
#=> hey, morning !#=> heya !! morning !PS: You can run this at any time of a day , it will generate wish messages accordingly. 😃
- If you run it in France in night
>>> from priest import now
>>> now()
# = > Bonne nuit , beaux rêves !!- If you run it in Germany in night
>>> from priest import now
>>> now()
# => Gute Nacht, süße Träume haben !!And, this gives you an awesome picture message 😉
>>> from priest import now
>>> now(lang='en',pic=True)And, the wishes are quite random, running the following 10 times,
>>> from priest import morning
>>> morning(lang='en')would generate wishes like these :
Hopeyourdaygoesgreatcheerfulmorning :-)
Hopeyourdaygoessuperbsplendidsunup !
yo, sunrise :)
Wishyouagoodsunrisehi, morning ;-)
eventfulsunupWishyouasplendidauroraheya, haveamarvelousday .
marveloussunup !
morning !It generates random wish messages/pictures in your native language and according to time of the day by querying APIs internally for getting the information of your timezone, location etc.
Note : If you are using a proxy connection, it might create a mess ! 😳
###methods
now - Generates a wish according to current time of the daymorning - Outputs a morning greeting messageafternoon - Outputs a afternoon greeting messageevening - Outputs a evening greeting messagenight- Outputs a night greeting message
##parameters
Each method takes in an optional lang parameter for eg. en,de etc and you can pass in an optional pic parameter.
>>> from priest import morning
>>> morning(lang='de',pic=True)Result:
#Installing
>>> pip install priestNote : You need to register at Mashape and set your api key as an environment variable as follow:
>>> export X_Mashape_Key=<api-key>- Rest API coming soon !
- Use calendar API to generate wishes for festivals ?
Pull requests are awesome and always welcome. Please use the issue tracker to report any bugs or file feature requests.
#License MIT


