Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote a URL shortener in Python and now I want to port it into web2py, does any one know what should I do? Here is the script:

from urllib2 import Request, urlopen, URLError
from urlparse import urlparse
import string
import random

url = raw_input('plZ enter the url: ').lower()      #get input and convert to lowercase
while True:
    if url[0:7] == 'http://' or url[0:8] == 'https://' or url[0:6] =='ftp://':          #check the url protocol
        try:                                        #try to open url
            response = urlopen(url)
            parsed_url = urlparse(url)
            rand_url = ''.join(random.choice(string.ascii_uppercase + string.digits + string.ascii_lowercase) for x in range(6))    #converting url to a random string
            print " The shortened url is: http://url.com/" + rand_url
            print "\n Original URL is: "+url
            exit()
        except URLError, e:                         #except the error by asking the address again
            if hasattr(e, 'reason'):
                print "URL is not valid or server is NOT responsive..plZ try again.."
                url = raw_input('plZ enter the url: ').lower()
            #print 'Reason: ', e.reason
            elif hasattr(e, 'code'):
                print 'The server couldn\'t fulfill the request.'       #message in case of server or connection error
                print 'Error code: ', e.code
    else:
        print "\n protocol missing, using HTTP instead.. \n"        #adding http:// to the first of the address
        url = "http://"+url
share|improve this question
1  
What have you tried? Have you learned how to use web2py? Should be simple -- create an action that serves a form for entering the URL, and when the form is submitted, run your code to do the shortening, and then return either the shortened URL or error message. Make an initial attempt at that, and ask specific questions if you run into problems. – Anthony Aug 18 '12 at 20:59
1  
It appears that user user1262738 is trying to get the stack overflow community to write his application for him. All code found in this question can be found in the following SO answers. stackoverflow.com/questions/6733380/…, stackoverflow.com/questions/11971369/web2py-url-validator/…, and stackoverflow.com/questions/11983049/…. – BigHandsome Aug 19 '12 at 16:38
is it bad to build an open shortener?? you are blaming me just to use one line of code? WE LOVE OPENSOURCE.. – user1262738 Aug 20 '12 at 14:54

closed as too localized by Andrew Marshall, Mark, Ben, KingCrunch, bažmegakapa Aug 26 '12 at 21:10

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.