WowAir Python API
Project description
Install
Run the following command to install wowair using pip
$ pip install wowair
Usage:
from wowair import WowAirQuery, Currency
from datetime import timedelta, date
# Fetch available cities
cities = WowAirQuery.get_cities()
for c in sorted(cities, key=lambda city: cities[city]):
print cities[c], c
# Fetch tickets for the next week from Montreal to Dublin
query = WowAirQuery(origin='YUL', destination='DUB')
for ticket in query.get_tickets():
print ticket
# Fetch Available tickets from New York to Anywhere in the NEXT 30 DAYS
depart_date_from = date.today()
depart_date_to = depart_date_from + timedelta(days=30)
query = WowAirQuery(origin='EWR',
depart_date=(depart_date_from, depart_date_to),
currency=Currency.USD)
for ticket in query.get_tickets():
if ticket.status == 'Available':
print ticket
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
wowair-0.5.tar.gz
(3.5 kB
view hashes)