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 details)
File details
Details for the file wowair-0.5.tar.gz
.
File metadata
- Download URL: wowair-0.5.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0984cacd1b7753ebba434c751531c11d832aae697d956ba7e76b7c93b8fe181e
|
|
MD5 |
4a8410bf4a9bd3c184cd022c55357c8c
|
|
BLAKE2b-256 |
2861abaea5498bf34a4cef57f328d5d8fa4bbb45afd85d686050dc88588057c9
|