Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #41494 > unrolled thread

How to send data from excel to website using python please help?

Started bys.arun316@gmail.com
First post2013-03-19 06:56 -0700
Last post2013-03-19 10:52 -0400
Articles 3 — 3 participants

Back to article view | Back to comp.lang.python


Contents

  How to send data from excel to website using python please help? s.arun316@gmail.com - 2013-03-19 06:56 -0700
    Re: How to send data from excel to website using python please help? Neil Cerutti <neilc@norwich.edu> - 2013-03-19 14:22 +0000
      Re: How to send data from excel to website using python please help? Joel Goldstick <joel.goldstick@gmail.com> - 2013-03-19 10:52 -0400

#41494 — How to send data from excel to website using python please help?

Froms.arun316@gmail.com
Date2013-03-19 06:56 -0700
SubjectHow to send data from excel to website using python please help?
Message-ID<4cfedfe7-8ade-4ef6-a5a9-b9be3f37e813@googlegroups.com>
Hi, im new to python. Wanted to know how to extract data from excel sheet and send it to webpage form.
Thanks in advance.

[toc] | [next] | [standalone]


#41506

FromNeil Cerutti <neilc@norwich.edu>
Date2013-03-19 14:22 +0000
Message-ID<aqrakmF197kU3@mid.individual.net>
In reply to#41494
On 2013-03-19, s.arun316@gmail.com <s.arun316@gmail.com> wrote:
> Hi, im new to python. Wanted to know how to extract data from
> excel sheet and send it to webpage form. Thanks in advance.

I like to export Excel documents as csv files and read them using
the csv module's DictReader class.

You can read from them directly using something like xlrd if you
prefer, but I find it pales in comparison. My advice is to avoid
reading the Excel file directly unless you have no other choice.

Happily (for me) I don't know the answer to the second part of
your question.

-- 
Neil Cerutti

[toc] | [prev] | [next] | [standalone]


#41512

FromJoel Goldstick <joel.goldstick@gmail.com>
Date2013-03-19 10:52 -0400
Message-ID<mailman.3512.1363704757.2939.python-list@python.org>
In reply to#41506

[Multipart message — attachments visible in raw view] — view raw

On Tue, Mar 19, 2013 at 10:22 AM, Neil Cerutti <neilc@norwich.edu> wrote:

> On 2013-03-19, s.arun316@gmail.com <s.arun316@gmail.com> wrote:
> > Hi, im new to python. Wanted to know how to extract data from
> > excel sheet and send it to webpage form. Thanks in advance.
>
> Can you be more clear about what you want to do with this data?  "Send it
to webpage form" sounds like you want to use the data to fill in fields in
a form on some website.  Is that what you mean? Is the website yours or
some third party's?


> I like to export Excel documents as csv files and read them using
> the csv module's DictReader class.
>
> You can read from them directly using something like xlrd if you
> prefer, but I find it pales in comparison. My advice is to avoid
> reading the Excel file directly unless you have no other choice.
>
> Happily (for me) I don't know the answer to the second part of
> your question.
>
> --
> Neil Cerutti
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
Joel Goldstick
http://joelgoldstick.com

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web