Skip to content

Determine the occurrence of the next full moon or to determine if a given date is/was/will be a full moon.

Notifications You must be signed in to change notification settings

jr-k/python-fullmoon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FullMoon

This python module is a translation and implementation of the Astro::MoonPhase Perl module via the Ruby implementation. You can use this module to determine the occurrence of the next full moon or to determine if a given date is/was/will be a full moon.

Installation

Add this line to your application’s Gemfile:

pip install fullmoon

Usage

Two classes can be called. One determines the next full moon. The other determines if a given date is a full moon or not.

from fullmoon import NextFullMoon
from fullmoon import IsFullMoon

###################################
#   Next Full Moon Examples
###################################

n = NextFullMoon()

# Iterate through all next full moon from "now"
print(n.next_full_moon())
print(n.next_full_moon())

# Restart from "now"
print(n.reset().next_full_moon())
print(n.next_full_moon())

# Change the origin to 1998-07-12
print(n.set_origin_date_string('1998-07-12').next_full_moon()) # PRINT: 1998-08-07
print(n.next_full_moon()) # PRINT: 1998-09-06

# Reset the origin to 1998-07-12
n.reset()
print(n.next_full_moon()) # PRINT: 1998-08-07

# Reset the origin to "now"
print(n.set_origin_now().next_full_moon())


###################################
#   Is Full Moon Examples
###################################

i = IsFullMoon()

# Check if "now" if full moon
print(i.is_full_moon())

# Check if "1998-07-12" is full moon
print(i.set_date_string('12/07/1992', '%d/%m/%Y').is_full_moon()) # PRINT: False

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jr-k/fullmoon. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The module is available as open source under the terms of the MIT License.

About

Determine the occurrence of the next full moon or to determine if a given date is/was/will be a full moon.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages