前提・実現したいこと
PythonでInstagramのフォロワー数を取得するコードを書いているのですが
pygramをimportする段階で躓いています。
pipでモジュールをインストールし、
pip show pygramでインストールが完了していることは確認済みです。
発生している問題・エラーメッセージ
sakailab-no-MacBook-Pro-2:Report_Python sakailab$ python pygram.py Traceback (most recent call last): File "pygram.py", line 1, in <module> from pygram import PyGram File "/Users/sakailab/Desktop/Report_Python/pygram.py", line 1, in <module> from pygram import PyGram ImportError: cannot import name 'PyGram' from 'pygram' (/Users/sakailab/Desktop/Report_Python/pygram.py)
該当のソースコード
python
1from pygram import PyGram 2pygram = PyGram() 3 4def profile(username): 5 profile = pygram.get_profile(username) 6 full_name = profile['full_name'] 7 profile_pic = profile['profile_pic_url_hd'] 8 profile_text = profile['biography'] 9 website = profile['external_url'] 10 follower = profile['followers_count'] 11 pprint(profile) 12 13def posts(username, limit): 14 posts = pygram.get_posts(username, limit=limit) 15 for post in posts: 16 thumbnail = post['display_url'] 17 post_link = post['shortcode'] 18 like = post['likes_count'] 19 comment = post['comments_count'] 20 caption = post['caption'] 21 pprint(post) 22 23if __name__ == '__main__': 24 profile('amerivintage') 25 posts('amerivintage', 1)
試したこと
以下のようなimportエラーが出たときの確認項目を試してみましたが
原因が分からずです。
https://qiita.com/ktgwaaa/items/6d1f54d5ff3c4559f96c
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/06 08:59 編集