passing external data to web forms

2010-05-31 Thread M L
(Note: If you just skim this and can tell me how to pass data from an external program to a web form, that's all I need, and the rest is just what I'd like to have.) This is probably extremely simple when you know what you're doing. I figured I'd see if I could find a kind soul who could give me

Re: passing external data to web forms

2010-05-31 Thread Tim Chase
On 05/31/2010 12:16 PM, M L wrote: Specifically, I'm needing to login to a particular website, and which username I use varies based on it being specified in the email. Are you in control of this email generation (that is, can you generate an email with an HTML form within, or is this email

Re: Managing database tables through web-forms (automatically)

2006-09-03 Thread Daniel Nogradi
Check out Django, it has a great database API and on the fly auto-generated admin. Just gone over the tutorial, really amazing, exactly what I need. That's exactly the response I had when I met with Django :) Anyone with Django experience: how well does it do with respect to upgrades?

Re: Managing database tables through web-forms (automatically)

2006-09-02 Thread Antal Rutz
Sybren Stuvel wrote: Check out Django, it has a great database API and on the fly auto-generated admin. Just gone over the tutorial, really amazing, exactly what I need. Big thanks for the hint! -- --arutz -- http://mail.python.org/mailman/listinfo/python-list

Managing database tables through web-forms (automatically)

2006-08-30 Thread Antal Rutz
Hi, I want to manage database(sql) tables through the web: actions like insert/edit/list/delete. An application often needs just a database table to be easily managable through the web by the users. Now I realized that everytime I write a new app I need to rewrite the whole thing according to

Re: Managing database tables through web-forms (automatically)

2006-08-30 Thread Steve Holden
Antal Rutz wrote: Hi, I want to manage database(sql) tables through the web: actions like insert/edit/list/delete. An application often needs just a database table to be easily managable through the web by the users. Now I realized that everytime I write a new app I need to rewrite the

bypassing web forms hardcoding login and password

2005-10-20 Thread cgian31
I need to hide the complexity from users to access an information webpage, which is normally accessible after filling in a web form with the correct data. The address of the information webpage is like https://external.address.com/info.asp?numeric code where numeric code is a number generated by

Re: Web-Forms

2005-07-25 Thread Mathias Waack
Michele Simionato wrote: Use twill:http://www.idyll.org/~t/www-tools/twill.html I'll do so. Twill is great, anyway thanks for all other responses too. Mathias -- http://mail.python.org/mailman/listinfo/python-list

Re: Web-Forms

2005-07-22 Thread Fuzzyman
Mike Meyer wrote: Mathias Waack [EMAIL PROTECTED] writes: Hi, I need to access some information from a web site which are only accessible through a form. Thus for each bucket of data you have to fill out the form, submit it and wait for an answer. Very easy - if you don't have to

Re: Web-Forms

2005-07-22 Thread Michele Simionato
Use twill:http://www.idyll.org/~t/www-tools/twill.html Michele Simionato -- http://mail.python.org/mailman/listinfo/python-list

Web-Forms

2005-07-21 Thread Mathias Waack
Hi, I need to access some information from a web site which are only accessible through a form. Thus for each bucket of data you have to fill out the form, submit it and wait for an answer. Very easy - if you don't have to check some hundred times. Of course this site requires cookies, it is not

Re: Web-Forms

2005-07-21 Thread Simon Brunning
On 7/21/05, Mathias Waack [EMAIL PROTECTED] wrote: I need to access some information from a web site which are only accessible through a form. Thus for each bucket of data you have to fill out the form, submit it and wait for an answer. Very easy - if you don't have to check some hundred

Re: Web-Forms

2005-07-21 Thread Mike Meyer
Mathias Waack [EMAIL PROTECTED] writes: Hi, I need to access some information from a web site which are only accessible through a form. Thus for each bucket of data you have to fill out the form, submit it and wait for an answer. Very easy - if you don't have to check some hundred times.