About VLSI..

Very-large-scale integration (VLSI) is the process of creating integrated circuits by combining thousands of transistors into a single chip. VLSI began in the 1970s when complex semiconductor and communication technologies were being developed

Saturday, February 13, 2016

Install gdata google python module in Ubuntu

Install gdata google python module in Ubuntu

python-gdata deb

After a long time am publishing the new post…

Am started a new mini project which upload a photo to picassa.google.com using python code. Am searching python API on the internet. I found a code. But when i run the code it shows error like 'did not find "gdata" module'. So am searching how to install python-gdata module in ubuntu. After my searching these term i found the solution simply…

First of all what is python-gdata?
python-gdata – Google Data Python client library

  • Distribution: Ubuntu 12.04.2 LTS
  • Repository: Ubuntu Universe i386
  • Package name: python-gdata
  • Package version: 2.0.14-2
  • Package architecture: all
  • Package type: deb
  • Binary package: python-gdata_2.0.14-2_all.deb
  • Source package: python-gdata
  • Installed size: 2,93 MB
  • Download size: 447,12 KB
    The GData (Google data) APIs provide a simple protocol for reading and writing data on the web.
    Each of the following Google services provides a Google data API:
    * Base
    * Blogger
    * Calendar
    * Code Search
    * Contacts
    * Document List
    * Google Apps Provisioning
    * Notebook
    * Picasa Web Albums
    * Spreadsheets
    * YouTube
    The Google data Python client library provides a library and source
    code that make it easy to access data through Google data APIs.
    Install how to???

    1. First we need to update the linux index, so that run the following code first:

    # sudo apt-get update

    When i run the above code it will update the repositories and index.
    2. Install python-gdata deb package by simply running these code:

    # sudo apt-get install python-gdata

    This command will download the python-gdata module succesfully.