Parse a json request using json module of python
I want to parse json request
(GET https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod) using python. please tell me how to do that.
python json
add a comment |
I want to parse json request
(GET https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod) using python. please tell me how to do that.
python json
1
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
Have you looked into python'srequests
library?
– Green Cloak Guy
Jan 19 at 6:45
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06
add a comment |
I want to parse json request
(GET https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod) using python. please tell me how to do that.
python json
I want to parse json request
(GET https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod) using python. please tell me how to do that.
python json
python json
edited Jan 19 at 7:27
AI_Learning
3,3462933
3,3462933
asked Jan 19 at 6:41
nandini banerjeenandini banerjee
1
1
1
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
Have you looked into python'srequests
library?
– Green Cloak Guy
Jan 19 at 6:45
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06
add a comment |
1
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
Have you looked into python'srequests
library?
– Green Cloak Guy
Jan 19 at 6:45
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06
1
1
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
Have you looked into python's
requests
library?– Green Cloak Guy
Jan 19 at 6:45
Have you looked into python's
requests
library?– Green Cloak Guy
Jan 19 at 6:45
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06
add a comment |
1 Answer
1
active
oldest
votes
You can use requests.get()
to make a GET request to your URL and get the JSON string:
from requests import get
URL = "https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod"
res = get(URL).text
print(res)
# {"errors":[{"code":215,"message":"Bad Authentication data."}]}
print(type(res))
# <class 'str'>
Then you can use json.loads()
to convert the JSON string into a python dictionary:
from json import loads
json_dict = loads(res)
print(json_dict)
# {'errors': [{'code': 215, 'message': 'Bad Authentication data.'}]}
print(type(json_dict))
# <class 'dict'>
Which you can iterate and parse the information you want.
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54264706%2fparse-a-json-request-using-json-module-of-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use requests.get()
to make a GET request to your URL and get the JSON string:
from requests import get
URL = "https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod"
res = get(URL).text
print(res)
# {"errors":[{"code":215,"message":"Bad Authentication data."}]}
print(type(res))
# <class 'str'>
Then you can use json.loads()
to convert the JSON string into a python dictionary:
from json import loads
json_dict = loads(res)
print(json_dict)
# {'errors': [{'code': 215, 'message': 'Bad Authentication data.'}]}
print(type(json_dict))
# <class 'dict'>
Which you can iterate and parse the information you want.
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
add a comment |
You can use requests.get()
to make a GET request to your URL and get the JSON string:
from requests import get
URL = "https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod"
res = get(URL).text
print(res)
# {"errors":[{"code":215,"message":"Bad Authentication data."}]}
print(type(res))
# <class 'str'>
Then you can use json.loads()
to convert the JSON string into a python dictionary:
from json import loads
json_dict = loads(res)
print(json_dict)
# {'errors': [{'code': 215, 'message': 'Bad Authentication data.'}]}
print(type(json_dict))
# <class 'dict'>
Which you can iterate and parse the information you want.
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
add a comment |
You can use requests.get()
to make a GET request to your URL and get the JSON string:
from requests import get
URL = "https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod"
res = get(URL).text
print(res)
# {"errors":[{"code":215,"message":"Bad Authentication data."}]}
print(type(res))
# <class 'str'>
Then you can use json.loads()
to convert the JSON string into a python dictionary:
from json import loads
json_dict = loads(res)
print(json_dict)
# {'errors': [{'code': 215, 'message': 'Bad Authentication data.'}]}
print(type(json_dict))
# <class 'dict'>
Which you can iterate and parse the information you want.
You can use requests.get()
to make a GET request to your URL and get the JSON string:
from requests import get
URL = "https://api.twitter.com/1.1/favorites/list.json?count=2&screen_name=episod"
res = get(URL).text
print(res)
# {"errors":[{"code":215,"message":"Bad Authentication data."}]}
print(type(res))
# <class 'str'>
Then you can use json.loads()
to convert the JSON string into a python dictionary:
from json import loads
json_dict = loads(res)
print(json_dict)
# {'errors': [{'code': 215, 'message': 'Bad Authentication data.'}]}
print(type(json_dict))
# <class 'dict'>
Which you can iterate and parse the information you want.
answered Jan 19 at 7:40
RoadRunnerRoadRunner
11.2k31340
11.2k31340
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
add a comment |
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
can you please help me with the authentication as I am getting the same error u mentioned. here is the authentication I have used auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_key, access_secret) api = tweepy.API(auth)
– nandini banerjee
Jan 21 at 6:39
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54264706%2fparse-a-json-request-using-json-module-of-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
what specific problem are you facing? This is too broad.
– njzk2
Jan 19 at 6:43
google.com/search?q=python+json
– Michael
Jan 19 at 6:45
Have you looked into python's
requests
library?– Green Cloak Guy
Jan 19 at 6:45
this should answer your question: stackoverflow.com/questions/645312/…
– Ashu Grover
Jan 19 at 6:48
what have you tried so far?
– Yaman Jain
Jan 19 at 7:06