The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Bhagavatgita - display/obtain Gita verses.

SYNOPSIS

  #for displaying random Bhagavatgita verse in terminal
  gita

  use Bhagavatgita;
  @verse=Bhagavatgita->gita(-first='20');
  print "@verse"; #prints verse 20

  @verse=Bhagavatgita->gita(-first='20',-last='100');
  print "@verse"; #prints verses from 20 to 100

  note: maximum value of -last is 700

  @verse=Bhagavatgita->gita(-first='20',-last='last');
  print "@verse"; #prints verse 20 to last verse of Bhagavatgita

  @chapter=gita_chapter(10);
  print "@chapter"; #prints entire Chapter 10 with title

  note:maximum number of chapter is 18

  @random=gita_random(15);
  print "@random"; #prints random 15 consecutive verses

  @glossary=gita_glossary();
  print "@glossary";

DESCRIPTION

Module for accessing contents of Bhagavatgita. Bhagavatgita meaning The Song of the Bhagavan(God), also called Gita, is a 700-verse scripture that is part of the Hindu epic Mahabharata. This scripture contains a conversation between Pandava prince Arjuna and his guide Lord Krishna on a variety of theological and philosophical issues.The material used is a transulation by A.C. Bhaktivedanta Swami Prabhupada

Please note that certain verses has been transulated into a single combined english verse e.g verses 16,17 and 18 are transulated into a single english verse.Check this site to make clarity on that, "http://vedabase.net/bg/1/en". Hence displaying verses 1-16 is same as displaying verses 1-17 or 1-18.

Glossary is obtained from "https://sites.google.com/site/iskconcapechat/home/books-group/lexicon-dictionary-concordance/glossary-of-bhagavad-gita"

EXPORT

gita =item gita_chapter =item gita_random =item gita_glossary

AUTHOR

Dileep Mani <dileepmani@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2014 by Dileep Mani

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.16.3 or, at your option, any later version of Perl 5 you may have available.