Re: Python Flight example with query command

2021-05-18 Thread Wes McKinney
ts FlightSQL proposal? > > > Regards, > Tanveer Ahmad > > From: David Li > Sent: Saturday, May 15, 2021 3:10:53 PM > To: dev@arrow.apache.org > Subject: Re: Python Flight example with query command > > Hey Tanveer, > > Something

Re: Python Flight example with query command

2021-05-17 Thread Tanveer Ahmad - EWI
roject implements FlightSQL proposal? Regards, Tanveer Ahmad From: David Li Sent: Saturday, May 15, 2021 3:10:53 PM To: dev@arrow.apache.org Subject: Re: Python Flight example with query command Hey Tanveer, Something like this should work: $ python examples/

Re: Python Flight example with query command

2021-05-15 Thread David Li
Hey Tanveer, Something like this should work: $ python examples/flight/client.py put localhost:1234 foo.csv File Name: foo.csv Table rows= 1 a b 0 1 2 $ python examples/flight/client.py get localhost:1234 -p foo.csv Ticket: a b 0 1 2 Note that Flight itself does not implement SQL

Python Flight example with query command

2021-05-15 Thread Tanveer Ahmad - EWI
Hi all, For Python Flight example, I can start server (python server.py -> Serving on grpc+tcp://localhost:5005) and client can put (python client.py put localhost:5005 mycsv.csv) and also get (python client.py get