下記のプログラムを使って、pythonからweiboの投稿を取得したいです。

プログラムの内容

from snspy import APIClient
from snspy import TwitterMixin      # suppose you are using Twitter

APP_KEY = '294703483'            # app key
APP_SECRET = 'a2ef9de0a580edb7a26daf2804d27624'      # app secret
CALLBACK_URL = 'https://api.weibo.com/oauth2/authorize'  # callback url
YOUR_ACCESS_TOKEN='2.00skPOWG0zpXw_e8253b9b7c9GKIdE'

client = APIClient(TwitterMixin,
               app_key=APP_KEY, app_secret=APP_SECRET, redirect_uri=CALLBACK_URL,
               access_token=YOUR_ACCESS_TOKEN, expires=EXPIRES_TIME)

print client.statuses.user_timeline.get()

プログラム実行
エラー内容

[root@localhost デスクトップ]# python suerte.py
Traceback (most recent call last):
File "suerte.py", line 2, in <module>
from snspy import APIClient
ImportError: No module named snspy

pythonからsinaweibodyの情報についてはmichaelliaoから参照しました。
ACCES TOKENはMichaelLiaoと違いweibo guideから取得しました
{"access_token":"2.00skPOWG0zpXw_e8253b9b7c9GKIdE","remind_in":"157679999","expires_in":157679999,"uid":"5973036902”}

エラーが何故起きるかわかる方がいれば教えていただけるとありがたいです。
よろしくお願いいたします。