Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

makes searching and booking applications airfares

7 views
Skip to first unread message

Fransiscus Gultom

unread,
Apr 26, 2013, 11:25:14 AM4/26/13
to
does anyone know how to take the flight schedule of the airline website?

Salvatore

unread,
Apr 26, 2013, 11:28:47 AM4/26/13
to
On 2013-04-26, Fransiscus Gultom <fransiscu...@gmail.com> wrote:
> does anyone know how to take the flight schedule of the airline website?

No.

--
Blah blah bleh...
GCS/CM d(-)@>-- s+:- !a C++$ UBL++++$ L+$ W+++$ w M++ Y++ b++

Daniel Pitts

unread,
Apr 26, 2013, 11:56:31 AM4/26/13
to
On 4/26/13 8:25 AM, Fransiscus Gultom wrote:
> does anyone know how to take the flight schedule of the airline website?


It's likely a different system for each airline. Not to mention there
are probably licensing and business issues. If it were easy, more
companies would be doing it.

Jerry Stuckle

unread,
Apr 26, 2013, 12:49:57 PM4/26/13
to
On 4/26/2013 11:25 AM, Fransiscus Gultom wrote:
> does anyone know how to take the flight schedule of the airline website?
>

You *might* be able to do it with cURL; it depends on several things,
like if the use javascript or not.

But as Daniel said, it would be different for each airline, and probably
a copyright violation if you use it on your own website.

If you want to do this, you should contact each airline to find out if
they will let you do it, how much it costs and how to get access to
their data.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstu...@attglobal.net
==================

Denis McMahon

unread,
Apr 26, 2013, 2:14:05 PM4/26/13
to
On Fri, 26 Apr 2013 08:25:14 -0700, Fransiscus Gultom wrote:

> does anyone know how to take the flight schedule of the airline website?

You use the airline's api for flight schedules, which may present data as
xml or json or delimited strings or some other proprietary format, and
they may charge for access too.

Also different airlines may have different apis.

--
Denis McMahon, denismf...@gmail.com

Arno Welzel

unread,
Apr 28, 2013, 4:38:49 PM4/28/13
to
Fransiscus Gultom, 2013-04-26 17:25:

> does anyone know how to take the flight schedule of the airline website?

There is no "the airline website".

Every airline has its own website with different layout etc..

Ask the airlines if they provide a service to query the schedules using
a standard protocol.


--
Arno Welzel
http://arnowelzel.de
http://de-rec-fahrrad.de

Dan Smith

unread,
May 2, 2013, 9:54:39 PM5/2/13
to
scraping might work - though that isn't always legal to my knowledge ( I don't know enough about the legality of such things ).

this library might be useful for you - http://simplehtmldom.sourceforge.net/

__

http://seatacwebdesign.com

Gordon Burditt

unread,
May 15, 2013, 10:53:27 PM5/15/13
to
>> does anyone know how to take the flight schedule of the airline website?
>
> There is no "the airline website".
>
> Every airline has its own website with different layout etc..

Air*ports* might also be a source of this information.

> Ask the airlines if they provide a service to query the schedules using
> a standard protocol.

There exists a Kindle app (and it probably runs on other smart
phones) called "Flightboard" by Mobiata. It gets flight schedule
data for an airport (multiple airlines are included, pretty seamlessly.
The app claims it covers 4,000 airports and 1,400 airlines worldwide.)
It gets flight data for flights about to take off or land (no date,
just a time). It looks a lot like the signs in airports labelled
"Arrivals" and "Departures", although you can sort the data by
various fields. Don't use this to schedule a flight next month
(that info might be available to different mobile apps). Do use
this if you want to know if the flight you intend to meet is on
time. The app has to get the data *somewhere*.

There is reference to airline data delays and an FAA-required delay
in live aircraft info, which may be up to 15 minutes. That also
suggests some kind of official status for the data.

Data comes from Flightstats (according to the app), so check out
www.flightstats.com. Their terms of use do not allow screen-scraping.
Forking over enough money might change that.

The app also includes a link to Expedia, which is probably useful
if you are shopping for a future flight based on cost, schedule,
airline, etc.

There are some other apps for more heavy-duty tracking of multiple
flights which probably cost more than Amazon's
$0.00-when-it's-the-free-app-of-the-day, $3.99 when it's not. No,
I have no association with any of these companies other than
occasionally using the app.

Denis McMahon

unread,
May 16, 2013, 7:19:19 AM5/16/13
to
On Wed, 15 May 2013 21:53:27 -0500, Gordon Burditt wrote:

>>> does anyone know how to take the flight schedule of the airline
>>> website?
>>
>> There is no "the airline website".
>>
>> Every airline has its own website with different layout etc..
>
> Air*ports* might also be a source of this information.

> There exists a Kindle app ....

From the subject, I assumed that the OP is / was trying to obtain fares
and booking information, not real time arrivals and departures (as far as
I know, you can't make a booking on a flight that's closed for departure
unless you have a very special agreement with the airline).

--
Denis McMahon, denismf...@gmail.com

The Natural Philosopher

unread,
May 16, 2013, 7:31:52 AM5/16/13
to
On 16/05/13 03:53, Gordon Burditt wrote:
> Their terms of use do not allow screen-scraping.
But does their technology render it impossible ? :-)

--
Ineptocracy

(in-ep-toc’-ra-cy) – a system of government where the least capable to lead are elected by the least capable of producing, and where the members of society least likely to sustain themselves or succeed, are rewarded with goods and services paid for by the confiscated wealth of a diminishing number of producers.

Jerry Stuckle

unread,
May 16, 2013, 8:47:35 AM5/16/13
to
On 5/16/2013 7:31 AM, The Natural Philosopher wrote:
> On 16/05/13 03:53, Gordon Burditt wrote:
>> Their terms of use do not allow screen-scraping.
> But does their technology render it impossible ? :-)
>

Never impossible, but it could easily lead you to be on the wrong end of
a lawsuit. Not that you care - you've got nothing, anyway.

Peter H. Coffin

unread,
May 16, 2013, 9:17:04 AM5/16/13
to
On Thu, 16 May 2013 12:31:52 +0100, The Natural Philosopher wrote:
> On 16/05/13 03:53, Gordon Burditt wrote:
>> Their terms of use do not allow screen-scraping.
> But does their technology render it impossible ? :-)

If a browser can render it, it's possible. It may, though, be a
prohibitive pain in the ass. They've got plenty of web designers on-hand
to rearrange the site details continually, with or without actually
making visible changes, and an interest in NOT making the sites easily
scraped.

--
48. I will treat any beast which I control through magic or technology
with respect and kindness. Thus if the control is ever broken, it
will not immediately come after me for revenge.
--Peter Anspach's list of things to do as an Evil Overlord
0 new messages