In <[email protected]> [email protected] 
writes:

> import requests
> import json
> names={'katty','Shean','Rajat'};
> for name in names:
>     request_string="http://api.genderize.io/?"+name
>     r=requests.get(request_string)
>     result=json.loads(r.content)

You're using http: instead of https:, and you're using ?katty instead
of ?name=katty, and therefore the host does not recognize your request
as an API call and redirects you to the normal webpage.

-- 
John Gordon                   A is for Amy, who fell down the stairs
[email protected]              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to