Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > how to call perl script from html using python

Reply
Thread Tools

how to call perl script from html using python

 
 
mullapervez@gmail.com
Guest
Posts: n/a
 
      08-14-2012
Hi,

I wanna call perl script in HTML form n store that data in DB using Python.

How can i do this.......??

Please help me

Thank you
Pervez
 
Reply With Quote
 
 
 
 
Simon Cropper
Guest
Posts: n/a
 
      08-14-2012
On 14/08/12 15:12, wrote:
> Hi,
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
> How can i do this.......??
>
> Please help me
>
> Thank you
> Pervez
>


Google you question.

Many solutions already exist on the Internet.

--
Cheers Simon

Simon Cropper - Open Content Creator

Free and Open Source Software Workflow Guides
------------------------------------------------------------
Introduction http://www.fossworkflowguides.com
GIS Packages http://www.fossworkflowguides.com/gis
bash / Python http://www.fossworkflowguides.com/scripting
 
Reply With Quote
 
 
 
 
mullapervez@gmail.com
Guest
Posts: n/a
 
      08-14-2012
On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, mulla...@gmail.com wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez


Hey Simon,

Thank You for your mail and time,

Yest I spent entire day for this , But I didn't get any solution for this problem .I google it but am not able to get any solution for this
 
Reply With Quote
 
Simon Cropper
Guest
Posts: n/a
 
      08-14-2012
On 14/08/12 15:31, wrote:
> On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, mulla...@gmail.com wrote:
>> Hi,
>>
>>
>>
>> I wanna call perl script in HTML form n store that data in DB using Python.
>>
>>
>>
>> How can i do this.......??
>>
>>
>>
>> Please help me
>>
>>
>>
>> Thank you
>>
>> Pervez

>
> Hey Simon,
>
> Thank You for your mail and time,
>
> Yest I spent entire day for this , But I didn't get any solution for this problem .I google it but am not able to get any solution for this
>


Then you should outline what you have tried and what the problems you
encountered that way people can help.

--
Cheers Simon

Simon Cropper - Open Content Creator

Free and Open Source Software Workflow Guides
------------------------------------------------------------
Introduction http://www.fossworkflowguides.com
GIS Packages http://www.fossworkflowguides.com/gis
bash / Python http://www.fossworkflowguides.com/scripting
 
Reply With Quote
 
Steven D'Aprano
Guest
Posts: n/a
 
      08-14-2012
On Mon, 13 Aug 2012 22:12:48 -0700, mullapervez wrote:

> Hi,
>
> I wanna call perl script in HTML form n store that data in DB using
> Python.
>
> How can i do this.......??
>
> Please help me


Okay, let me give you some general advice first, then some programming
advice

If your question looks like you have put no thought into the question,
you will get answers that also have no thought put into them.

Try to write proper English sentences. We will make allowances for non-
native English speakers, and simple typos, but if u cnt b bothrd 2 rite
gd we cnt b bothrd 2 answr gd ethr.


To solve your programming problem, break it up into smaller pieces:

1) write some code to get a perl script from some HTML;

2) write some more code to take a perl script and run it, collecting the
results;

3) write some more code to take those results and put them into a
database;

4) finally write some code to put the first three pieces together.


Do you need help on any of these? If so, please tell us:

- What is your experience with Python? Complete newbie, beginner,
intermediate, advanced, expert, guru. Do you know any other programming
languages?

- What you have already tried? Show us your code.

- Show us some *simple* sample data.


The more you help us, the more we can help you.



--
Steven
 
Reply With Quote
 
Pervez Mulla
Guest
Posts: n/a
 
      08-14-2012
On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, Pervez Mulla wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez


Thank you for your advice steven,

I am beginner to this language, I have exp in JAVA and C....

I wanna call perl objects using Python . I checked in internet ,I can make use of inline function for this, But in HTML......??

Thank You
 
Reply With Quote
 
Steven D'Aprano
Guest
Posts: n/a
 
      08-14-2012
On Mon, 13 Aug 2012 23:21:34 -0700, Pervez Mulla wrote:

> I wanna call perl objects using Python . I checked in internet ,I can
> make use of inline function for this, But in HTML......??


You need to explain more about your problem, because I don't understand
what you want to do in detail.

For example:

1) "I have a URL to a perl script, like this:

http://example.com/somewhere/script.pl

and I want to download the script, run it, and collect the results."

Difficulty: (0 is trivial, 10 is impossible) About 2 or 3.


2) "I have a web page like this:

http://example.com/somewhere/homepage.html

Inside this web page I have a block of text that is actually Perl code. I
want to download the HTML page, extract the Perl code, and run it."

Difficulty: (0 is trivial, 10 is impossible) Between 6 and 10, depending
on the exact details of how the Perl code is stored.


Please explain in more detail what you want to do.

Where is the Perl code? In a script? Inside a HTML file? Mixed in with
other text, or in a HTML element of its own?

Once you know where the Perl code lives, you can write a function to
extract it. If you don't know where the code lives, you can't.

Once you have the Perl code, you can then run it using the subprocess
module, and collect its results.

Once you have the results, you can store it in a database.



--
Steven
 
Reply With Quote
 
Pervez Mulla
Guest
Posts: n/a
 
      08-16-2012
On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, Pervez Mulla wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez




On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, Pervez Mulla wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez




On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, Pervez Mulla wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez




On Tuesday, August 14, 2012 10:42:48 AM UTC+5:30, Pervez Mulla wrote:
> Hi,
>
>
>
> I wanna call perl script in HTML form n store that data in DB using Python.
>
>
>
> How can i do this.......??
>
>
>
> Please help me
>
>
>
> Thank you
>
> Pervez


Hey Steven ,

Thank you for your response,

I will in detail now about my project,

Actually the project entire backend in PERL language , Am using Django framework for my front end .

I have written code for signup page in python , which is working perfectly .

In HTml when user submit POST method, it calling Python code ....Instead of this I wanna call perl script for sign up ......

below in form for sign up page in python ....

form.py
from django import forms
from django.contrib.auth.models import User
from django.forms import ModelForm
from user_profile.models import Profile

class RegistrationForm(ModelForm):
username = forms.CharField(label=(u'User Name'))
email = forms.EmailField(label=(u'E-mail'))
password = forms.CharField(label=(u'Password'),widget=forms.P asswordInput(render_value=False))
password1 = forms.CharField(label=(u'Verify Password'),widget=forms.PasswordInput(render_value =False))

class Meta:
model = Profile
exclude = ('user',)

def clean_username(self):
username = self.cleaned_data['username']
try:
User.objects.get(username==username)
except User.DoesNotExist:
return username
raise forms.ValidationError("That username is already taken. Please select another.")

def clean_password(self):
if self.cleaned_data['password'] != self.cleaned_data['password1']:
raise forms.ValidationError("Password didnt match... Please try again")
return self.cleaned_data
-----------------------------------------------------------------------------

view.py


def ProfileRegistration(request):
if request.user.is_authenticated():
return HttpResponseRedirect('/profile/')
if request.method =="POST":
form = RegistrationForm(request.POST)
if form.is_valid():
user = User.objects.create_user(username = form.cleaned_data['username'],
email = form.cleaned_data['email'],
password = form.cleaned_data['password'])
user.save()
profile = Profile(user=user, firstname=form.cleaned_data['firstname'],
lastname=form.cleaned_data['lastname'],
phone=form.cleaned_data['phone'],
title=form.cleaned_data['title'],
companyname=form.cleaned_data['companyname'])
profile.save()
return HttpResponseRedirect('/profile/')
else:
return render_to_response ('register.html',{'form':form},context_instance=Re questContext(request))
else:
form = RegistrationForm()
context = {'form':form}
return render_to_response('register.html', context, context_instance=RequestContext(request))


In view instead invoking python script I wanna invoke Perl script .....for the signup page


Thank You



 
Reply With Quote
 
andrea crotti
Guest
Posts: n/a
 
      08-16-2012
2012/8/16 Pervez Mulla <>:
>
> Hey Steven ,
>
> Thank you for your response,
>
> I will in detail now about my project,
>
> Actually the project entire backend in PERL language , Am using Django framework for my front end .


> I have written code for signup page in python , which is working perfectly .
>
> In HTml when user submit POST method, it calling Python code ....Instead of this I wanna call perl script for sign up ......
>
> below in form for sign up page in python ....


Good that's finally an explanation, so the question you can ask google
was "how do I call an external process from Python",
which has absolutely nothing to with HTML, and is very easy to find
out (hint: subprocess).
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Problem in passing values to perl script using another perl script vikrant Perl Misc 4 08-10-2005 06:20 PM
problem calling perl script from SOAP server perl script pj Perl Misc 3 04-09-2004 10:23 PM
Perl Help - Windows Perl script accessing a Unix perl Script dpackwood Perl 3 09-30-2003 02:56 AM
How to make Perl Script "POST" call from another Perl Script??? Wet Basement Perl 1 07-15-2003 10:25 PM



Advertisments
 



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