I am not sure how to make this work. I also can't find client_id in my app. I just see the app secret there:
>>> import praw
>>> r = praw.Reddit(user_agent='custom data mining framework',
... site_name='lamiastella')
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
File "/usr/local/lib/python2.7/dist-packages/praw/reddit.py", line 101, in __init__
raise ClientException(required_message.format(attribute))
praw.exceptions.ClientException: Required configuration setting 'client_id' missing.
This setting can be provided in a praw.ini file, as a keyword argument to the `Reddit` class constructor, or as an environment variable.
here is my praw.ini
file which I am not sure if it's correct or has all the necessary fields:
[lamiastella]
domain: www.monajalal.com
user: lamiastella
pswd: mypassword
any help is really appreciated.
**Can I retrieve images using praw as well from reddit or what do you suggest?