Python implements methods for obtaining movie information from a movie site based on user input

Source: Internet
Author: User
The example in this article describes how Python implements the method of obtaining movie information from a movie site based on user input. Share to everyone for your reference. Specific as follows:

This Python code mainly demonstrates the user terminal input, regular expression, Web page crawl, etc.

#!/usr/bin/env python27#importing the Modulesfrom beautifulsoup import beautifulsoupimport sysimport urllib2import Reimport json#ask for movie titletitle = raw_input (' Please enter a movie title: ') #Ask for which yearyear = Raw_input ("whi CH year? ") #Search for spaces in the title stringraw_string = Re.compile (r") #Replace spaces with a plus signsearchstring = Raw_st Ring.sub (' + ', title) #Prints the search Stringprint searchstring#the actual queryurl = "http://www.imdbapi.com/?t=" + Sear Chstring + "&y=" +yearrequest = urllib2. Request (URL) response = Json.load (Urllib2.urlopen (Request)) print json.dumps (response,indent=2)

Hopefully this article will help you with Python programming.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.