コード例 #1
0
ファイル: application.py プロジェクト: makkasi/myastro
def get_lunarb(Timezonezs, years, months, days):
    result = eclipses_lunar.lunar(float(Timezonezs), int(years), int(months), int(days), location_latitude, location_longitude)
    return jsonify({'Lunar Eclipse': result})
コード例 #2
0
ファイル: application.py プロジェクト: makkasi/myastro
def leclipse():
    result = eclipses_lunar.lunar(time_zone, year, month, day, location_latitude, location_longitude)
    return render_template('lunareclipse.html', rez=result) 
コード例 #3
0
ファイル: application.py プロジェクト: makkasi/myastro
def get_lunarx(Timezonezs):
    result = eclipses_lunar.lunar(float(Timezonezs), year, month, day, location_latitude, location_longitude)
    return jsonify({'Lunar Eclipse': result})