Metadata-Version: 1.0
Name: opening_hours
Version: 0.1.0
Summary: Python wrapper embedding the C_OpeningHours writing on my own, implementation of the opening hours standard as described here: https://wiki.openstreetmap.org/wiki/Key:opening_hours
Home-page: https://github.com/anthill/Python_OpeningHours
Author: Luka Boulagnon (Asphahyre) during internship at WeAreAnts.fr
Author-email: asphahyre@geluti.org
License: MIT
Description: 
        ## OpeningHours (python)
        
        This module is a parser between the excellent [OpenStreetMap Opening Hour format](https://wiki.openstreetmap.org/wiki/Key:opening_hours) 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')))
        
        ```
        
Keywords: OSM,OpenStreetMap,opening_hours
Platform: UNKNOWN
