Delete / Löschen
joy99
24.02.2011 - 22:57

Suggestion Reqd for Designing a Website in Python

Dear Group,
I have developed one big Machine Learning software a Machine
Translation system in Python.
Now, I am thinking to make a User Interface of it and upload it in a
web site.

My questions are:
(i) For Designing an interface I am choosing Tkinter. Is it fine?
(ii) How to connect this interface with my Tkinter based interface -
should I have to recode the whole system?
(iii) After designing I want to upload now how to do the server side
scripting?

If anyone can suggest it would be of great help.

Thanks in advance,
Best Regards,
Subhabrata.

Tim Roberts
25.02.2011 - 08:36
joy99 <subhakolkata1234@gmail.com> wrote:

Dear Group,
I have developed one big Machine Learning software a Machine
Translation system in Python.
Now, I am thinking to make a User Interface of it and upload it in a
web site.

Do you mean you want people to download this from a web site as an
executable, and then run it locally on their computers? Or do you mean you
want people to use this as a web site, using their web browsers? The
answers are very different.

My questions are:
(i) For Designing an interface I am choosing Tkinter. Is it fine?
(ii) How to connect this interface with my Tkinter based interface -
should I have to recode the whole system?
(iii) After designing I want to upload now how to do the server side
scripting?

Question (i) implies that you want the first option (download an executable
and run it). Question (iii) implies the second (that you want your app to
run on a web server so people use it through your browser). Please
clarify.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.

joy99
25.02.2011 - 15:36
On Feb 25, 12:360pm, Tim Roberts <t...@probo.com> wrote:
joy99 <subhakolkata1...@gmail.com> wrote:

>Dear Group,
>I have developed one big Machine Learning software a Machine
>Translation system in Python.
>Now, I am thinking to make a User Interface of it and upload it in a
>web site.

Do you mean you want people to download this from a web site as an
executable, and then run it locally on their computers? 0Or do you mean=
you
want people to use this as a web site, using their web browsers? 0The
answers are very different.

>My questions are:
>(i) For Designing an interface I am choosing Tkinter. Is it fine?
>(ii) How to connect this interface with my Tkinter based interface -
>should I have to recode the whole system?
>(iii) After designing I want to upload now how to do the server side
>scripting?

Question (i) implies that you want the first option (download an executab=
le
and run it). 0Question (iii) implies the second (that you want your app=
to
run on a web server so people use it through your browser). 0Please
clarify.
--
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

Thank you for your kind reply.
I want to design an interface like Google Translate. So that users can
paste text (of any length)-or may browse files which can be uploaded,
and one user interface for filling up form, so that attached files
after translation may be sent back to the given e-mail id as an
attached file(.pdf/.txt).
Best Regards,
Subhabrata.


Daniel Fetchinson
25.02.2011 - 16:03
>I have developed one big Machine Learning software a Machine
>Translation system in Python.
>Now, I am thinking to make a User Interface of it and upload it in a
>web site.

Do you mean you want people to download this from a web site as an
executable, and then run it locally on their computers? Or do you mean
you
want people to use this as a web site, using their web browsers? The
answers are very different.

>My questions are:
>(i) For Designing an interface I am choosing Tkinter. Is it fine?
>(ii) How to connect this interface with my Tkinter based interface -
>should I have to recode the whole system?
>(iii) After designing I want to upload now how to do the server side
>scripting?

Question (i) implies that you want the first option (download an
executable
and run it). Question (iii) implies the second (that you want your app to
run on a web server so people use it through your browser). Please
clarify.
--
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

Thank you for your kind reply.
I want to design an interface like Google Translate. So that users can
paste text (of any length)-or may browse files which can be uploaded,
and one user interface for filling up form, so that attached files
after translation may be sent back to the given e-mail id as an
attached file(.pdf/.txt).
Best Regards,
Subhabrata.

In this case you are looking for a web application framework. There
are many written in python, a good place to start would be:

http://wiki.python.org/moin/WebFrameworks

My personal opinion is that the 3 top frameworks to consider are: (1)
django (2) turbogears (3) web2py. You need to decide for yourself
which one use choose, you may even choose something other than these
3, there are tons more.

Cheers,
Daniel



--
Psss, psss, put it down! - http://www.cafepress.com/putitdown

joy99
25.02.2011 - 17:57
On Feb 25, 8:030pm, Daniel Fetchinson <fetchin...@googlemail.com>
wrote:
>> >I have developed one big Machine Learning software a Machine
>> >Translation system in Python.
>> >Now, I am thinking to make a User Interface of it and upload it in a
>> >web site.

>> Do you mean you want people to download this from a web site as an
>> executable, and then run it locally on their computers? 0Or do you m=
ean
>> you
>> want people to use this as a web site, using their web browsers? 0Th=
e
>> answers are very different.

>> >My questions are:
>> >(i) For Designing an interface I am choosing Tkinter. Is it fine?
>> >(ii) How to connect this interface with my Tkinter based interface -
>> >should I have to recode the whole system?
>> >(iii) After designing I want to upload now how to do the server side
>> >scripting?

>> Question (i) implies that you want the first option (download an
>> executable
>> and run it). 0Question (iii) implies the second (that you want your =
app to
>> run on a web server so people use it through your browser). 0Please
>> clarify.
>> --
>> Tim Roberts, t...@probo.com
>> Providenza & Boekelheide, Inc.

> Thank you for your kind reply.
> I want to design an interface like Google Translate. So that users can
> paste text (of any length)-or may browse files which can be uploaded,
> and one user interface for filling up form, so that attached files
> after translation may be sent back to the given e-mail id as an
> attached file(.pdf/.txt).
> Best Regards,
> Subhabrata.

In this case you are looking for a web application framework. There
are many written in python, a good place to start would be:

http://wiki.python.org/moin/WebFrameworks

My personal opinion is that the 3 top frameworks to consider are: (1)
django (2) turbogears (3) web2py. You need to decide for yourself
which one use choose, you may even choose something other than these
3, there are tons more.

Cheers,
Daniel

--
Psss, psss, put it down! -http://www.cafepress.com/putitdown

Thank you sir, for your kind help.


Ritesh Nadhani
26.02.2011 - 21:37
I would look into Flask or Pyramid.

Just my $0.02.

On Fri, Feb 25, 2011 at 7:03 AM, Daniel Fetchinson
<fetchinson@googlemail.com> wrote:
>I have developed one big Machine Learning software a Machine
>Translation system in Python.
>Now, I am thinking to make a User Interface of it and upload it in a
>web site.

Do you mean you want people to download this from a web site as an
executable, and then run it locally on their computers? 0Or do you me=
an
you
want people to use this as a web site, using their web browsers? 0The
answers are very different.

>My questions are:
>(i) For Designing an interface I am choosing Tkinter. Is it fine?
>(ii) How to connect this interface with my Tkinter based interface -
>should I have to recode the whole system?
>(iii) After designing I want to upload now how to do the server side
>scripting?

Question (i) implies that you want the first option (download an
executable
and run it). 0Question (iii) implies the second (that you want your a=
pp to
run on a web server so people use it through your browser). 0Please
clarify.
--
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

Thank you for your kind reply.
I want to design an interface like Google Translate. So that users can
paste text (of any length)-or may browse files which can be uploaded,
and one user interface for filling up form, so that attached files
after translation may be sent back to the given e-mail id as an
attached file(.pdf/.txt).
Best Regards,
Subhabrata.

In this case you are looking for a web application framework. There
are many written in python, a good place to start would be:

http://wiki.python.org/moin/WebFrameworks

My personal opinion is that the 3 top frameworks to consider are: (1)
django (2) turbogears (3) web2py. You need to decide for yourself
which one use choose, you may even choose something other than these
3, there are tons more.

Cheers,
Daniel



--
Psss, psss, put it down! - http://www.cafepress.com/putitdown
--
http://mail.python.org/mailman/listinfo/python-list




--0
Ritesh
http://www.beamto.us



Ähnliche Themen

Web design services | website designing | hire a website designer | creative web
23.03.2011 - 09:29 - Posts: 1

Web design services | website designing | hire a website designer | creative web
22.03.2011 - 13:25 - Posts: 1

Web design services | website designing | hire a website designer | creative web
26.04.2011 - 06:59 - Posts: 1

Web design services | website designing | hire a website designer | creative web
26.04.2011 - 07:02 - Posts: 1

Web design services | website designing | hire a website designer | creative web
26.04.2011 - 07:08 - Posts: 1

Web design services | website designing | hire a website designer | creative web
11.04.2011 - 13:44 - Posts: 1

Web design services | website designing | hire a website designer | creative web
11.04.2011 - 13:11 - Posts: 1

More

Share/Bookmark

<