README.md

August 9, 2016 ยท View on GitHub

OpeningHours (python)

This module is a parser between the excellent OpenStreetMap Opening Hour format and python datetime objects.

Installation

pip install opening_hours

Usage

from opening_hours import OpeningHours
from datetime import datetime
import pytz


oh = OpeningHours("2016 Mar: Mo-Sa 08:00-13:00,14:00-17:00")
oh.is_open(datetime.now(pytz.timezone('Europe/Paris')))

Contents

  1. 1OpeningHours (python)
  2. 1.1Installation
  3. 1.2Usage