Results 1 to 2 of 2

Thread: pyhon fetch info from web

  1. #1
    Join Date
    Jun 2012
    Beans
    5

    Question pyhon fetch info from web

    How could I make python fetch info from the net(text, videos, images) and display them inside an app?

  2. #2
    Join Date
    Feb 2008
    Beans
    251
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: pyhon fetch info from web

    Hi,

    Python's urllib library will give you access to the right tools to fetch content over the internet.

    More information on their docs: http://docs.python.org/library/urllib.html

    You'll probably be most interested in the urlopen method

    Then once you have the data that you've requested, what you do with it is for you to decide. Perhaps have a look at the "quickly" tool to help you get started with the GUI.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •