Metadata-Version: 1.1
Name: bcferries
Version: 0.0.1
Summary: BC Ferries Python Library
Home-page: https://github.com/yasyf/bcferries
Author: Yasyf Mohamedali
Author-email: yasyfm@gmail.com
License: MIT
Download-URL: https://github.com/yasyf/bcferries/tarball/0.0.1
Description: # BC Ferries Python Library
        
        This is the Python client library for interacting with information published to the [BC Ferries mobile site](http://mobile.bcferries.com/). It is essentially a wrapper around a BeautifulSoup scraper.
        
        ## Installation
        
        `pip install bcferries`
        
        ## Usage
        
        ```python
        from bcferries.bcferries import BCFerries
        
        bc = BCFerries()
        terminals = bc.terminals()
        t = terminals['Tsawwassen']
        
        routes = t.routes()
        r = routes['Tsawwassen to Duke Point']
        
        crossing = r.crossings()['10:45pm']
        print crossing.capacity
        ```
        
Keywords: bc ferries,schedule
Platform: UNKNOWN
