Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Javascript (http://www.velocityreviews.com/forums/f68-javascript.html)
-   -   Call python script by javascript in html (http://www.velocityreviews.com/forums/t923278-call-python-script-by-javascript-in-html.html)

Sibou51 02-28-2006 06:42 PM

Call python script by javascript in html
 
Hello everybody,


do you know if it's possible to call a python script in html page??

I want call my script pyhton and I have a html with javascript but I
don't know how, do you have an example??


thanks


David Dorward 02-28-2006 06:50 PM

Re: Call python script by javascript in html
 
Sibou51 wrote:

> do you know if it's possible to call a python script in html page??
>
> I want call my script pyhton and I have a html with javascript but I
> don't know how, do you have an example??


Client side python? First you'd need to install an extension that adds
support for PythonScript to the browser. I believe ActiveState produce one
for IE.

Server side? You'd have to issue a new HTTP request. This is usually done by
changing the document.location of either the main document or a (shudder)
iframe or frame. The XMLHttpRequest object is a much hyped alternative.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is

Jonas Raoni 02-28-2006 07:03 PM

Re: Call python script by javascript in html
 
Sibou51 wrote:
> do you know if it's possible to call a python script in html page??
>
> I want call my script pyhton and I have a html with javascript but I
> don't know how, do you have an example??


You can't, you can only make requests for pages and there you can make
what you need =b

- (new Image).src = "url";
- The XMLHttpRequest object
- iframe/frames
- etc.


--
Jonas Raoni Soares Silva
http://www.jsfromhell.com


All times are GMT. The time now is 07:18 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57