Skip to main content

Calculation of Gaurabda calendar (Gaudiya Vaishnava calendar)

Project description

Python library for calculating panchanga calendar with vaisnava events.

Installation

pip install gaurabda

Using

Here are a few examples of code that you can try quickly. Examples are related to calculation of calendar. Before calendar calculation we need to specify location and start date.

We can obtain location object basically in two ways:

  • create new location

# create new location

loc = gcal.GCLocation(data = {
    'latitude': 27.583,
    'longitude': 77.73,
    'tzname': '+5:30 Asia/Calcutta',
    'name': 'Vrindavan, India'
})

List of all timezones can be obtained by calling gcal.GetTimeZones().

  • find location in existing list

# find existing location

loc = gcal.FindLocation(city='Vrindavan')

List of all countries gcal.GetCountries() and list of cities for given country: gcal.GetLocationsForCountry('India'). Function GetLocationsForCountry has optional parameter limit, that takes whole number limiting number of locations returned by this method. Default value is -1, that means there is no limit.

Then we need create date object.

today = gcal.Today()
print(repr(today))

date1 = gcal.GCGregorianDate(text='24 apr 2017')
print(repr(date1))

Constructor for GCGregorianDate contains more optional parameters:

  • year, month, day that are whole natural numbers, year between 1500 - 2500, month 1-12, day according given month

  • shour is from interval 0.0 up to 1.0 where 0.0 is mignight, 0.5 is noon (12:00 PM) and 1.0 is next midnight.

  • tzone is offset from UTC 0:00 in hours, so value +5.5 means offset 5:30, which is actual for India

  • date is existing GCGregorianDate object

  • text can be text form of date (e.g. ‘24 Apr 2017’)

Parameters can be combined with certain succession of evaluation. Parameters are evaluated in this order, where later parameter overrides previous values.

  • text

  • date

  • year

  • month

  • day

  • shour

So for example, to get first day of current month, we may use:

d = gcal.GCGregorianDate(date=gcal.Today(), day=1)

Next step is to create calculation engine for calendar, execute calculation and write results to file:

# create calculation engine and calculate
tc = gcal.TCalendar()
tc.CalculateCalendar(loc,today,365)

# save results in various formats
with open('calendar.txt','wt') as wf:
    tc.write(wf, format='plain')
with open('test/calendar.rtf','wt') as wf:
    tc.write(wf, format='rtf')
with open('test/calendar.html','wt') as wf:
    tc.write(wf)
with open('test/calendar2.html','wt') as wf:
    tc.write(wf, layout='table')
with open('test/calendar.json','wt') as wf:
    tc.write(wf, format='json')
with open('test/calendar.xml','wt') as wf:
    tc.write(wf, format='xml')

Arguments for write method of TCalendar class:

  • stream any text writer, for example subclass of io.TextWriter

  • format this is optional parameter, default value is ‘html’, posible values are: ‘plain’, ‘rtf’, ‘xml’, ‘html’, ‘json’

  • layout this is optional, denotes layout of output. It is effective for ‘html’ format, and possible values are ‘list’ and ‘table’. Default is ‘list’.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gaurabda-0.7.9.tar.gz (143.0 kB view details)

Uploaded Source

File details

Details for the file gaurabda-0.7.9.tar.gz.

File metadata

  • Download URL: gaurabda-0.7.9.tar.gz
  • Upload date:
  • Size: 143.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.4

File hashes

Hashes for gaurabda-0.7.9.tar.gz
Algorithm Hash digest
SHA256 319ff61722d75a3d81bfef5824b9c0878161b3fb7e60de5ccfe71e7907559aeb
MD5 531d2c2e417baafedacd3dfbea7880be
BLAKE2b-256 210de6852aef660e46150829432e57a47e86713382cb6cd461091ad0fc8cd82d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page