Skip to content

Instantly share code, notes, and snippets.

@otiai10
Last active December 20, 2015 03:18
Show Gist options
  • Save otiai10/6062174 to your computer and use it in GitHub Desktop.
Save otiai10/6062174 to your computer and use it in GitHub Desktop.
POST friendships/create.jsonのレスポンス
def dump(d):
  for k,v in d.items():
    print("--------", k, "--------------")
    try:
      print(v)
    except:
      print('[sorry]')
      pass

res = t.friendships.create(id=140021552)
print("create  res\t")
dump(res)
wait(10)

res = t.friendships.destroy(id=140021552)
print("destroy res\t")
dump(res)
wait(10)

res = t.friendships.create(id=140021552)
print("create  res\t")
dump(res)
wait(10)

create res

-------- profile_use_background_image --------------
False
-------- listed_count --------------
29
-------- profile_sidebar_fill_color --------------
7D7D7D
-------- geo_enabled --------------
True
-------- is_translator --------------
False
-------- default_profile --------------
False
-------- name --------------
[sorry]
-------- id --------------
140021552                                                                                                                                                                                                                                                           
-------- following --------------
True
-------- notifications --------------
False
-------- follow_request_sent --------------
False
-------- verified --------------
False
-------- entities --------------
{'url': {'urls': [{'indices': [0, 22], 'url': 'http://t.co/D4a7ELWzwV', 'display_url': 'oti10.com', 'expanded_url': 'http://oti10.com'}]}, 'description': {'urls': []}}
-------- profile_background_image_url --------------
http://a0.twimg.com/profile_background_images/441118100/432310_265475653528100_100001970017856_589138_1201261039_n.jpg
-------- profile_link_color --------------
022469
-------- lang --------------
ja
-------- profile_image_url --------------
http://a0.twimg.com/profile_images/3784980368/aa7e6b054c99ae3bd4ce1b8b76f276b7_normal.jpeg
-------- profile_sidebar_border_color --------------
FFFFFF
-------- status --------------
[sorry]
-------- friends_count --------------
545
-------- profile_background_image_url_https --------------
https://si0.twimg.com/profile_background_images/441118100/432310_265475653528100_100001970017856_589138_1201261039_n.jpg
-------- profile_image_url_https --------------
https://si0.twimg.com/profile_images/3784980368/aa7e6b054c99ae3bd4ce1b8b76f276b7_normal.jpeg
-------- statuses_count --------------
39392
-------- id_str --------------
140021552
-------- profile_background_color --------------
D5D9E0
-------- url --------------
http://t.co/D4a7ELWzwV
-------- default_profile_image --------------
False
-------- location --------------
quoteblock
-------- followers_count --------------
566
-------- protected --------------
False
-------- contributors_enabled --------------
False
-------- created_at --------------
Tue May 04 10:10:16 +0000 2010
-------- profile_background_tile --------------
False
-------- favourites_count --------------
1137
-------- utc_offset --------------
32400
-------- description --------------
[sorry]
-------- profile_banner_url --------------
https://pbs.twimg.com/profile_banners/140021552/1373090650
-------- time_zone --------------
Tokyo
-------- screen_name --------------
otiai10
-------- profile_text_color --------------
051C4A

destroy res

-------- profile_use_background_image --------------
False
-------- listed_count --------------
29
-------- profile_sidebar_fill_color --------------
7D7D7D
-------- geo_enabled --------------
True
-------- is_translator --------------
False
-------- default_profile --------------
False
-------- name --------------
[sorry]
-------- id --------------
140021552
-------- following --------------
True
-------- notifications --------------
False
-------- follow_request_sent --------------
False
-------- verified --------------
False
-------- entities --------------
{'url': {'urls': [{'indices': [0, 22], 'url': 'http://t.co/D4a7ELWzwV', 'display_url': 'oti10.com', 'expanded_url': 'http://oti10.com'}]}, 'description': {'urls': []}}
-------- profile_background_image_url --------------
http://a0.twimg.com/profile_background_images/441118100/432310_265475653528100_100001970017856_589138_1201261039_n.jpg
-------- profile_link_color --------------
022469
-------- lang --------------
ja
-------- profile_image_url --------------
http://a0.twimg.com/profile_images/3784980368/aa7e6b054c99ae3bd4ce1b8b76f276b7_normal.jpeg
-------- profile_sidebar_border_color --------------
FFFFFF
-------- status --------------
[sorry]
-------- friends_count --------------
545
-------- profile_background_image_url_https --------------
https://si0.twimg.com/profile_background_images/441118100/432310_265475653528100_100001970017856_589138_1201261039_n.jpg
-------- profile_image_url_https --------------
https://si0.twimg.com/profile_images/3784980368/aa7e6b054c99ae3bd4ce1b8b76f276b7_normal.jpeg
-------- statuses_count --------------
39392
-------- id_str --------------
140021552
-------- profile_background_color --------------
D5D9E0
-------- url --------------
http://t.co/D4a7ELWzwV
-------- default_profile_image --------------
False
-------- location --------------
quoteblock
-------- followers_count --------------
566
-------- protected --------------
False
-------- contributors_enabled --------------
False
-------- created_at --------------
Tue May 04 10:10:16 +0000 2010
-------- profile_background_tile --------------
False
-------- favourites_count --------------
1137
-------- utc_offset --------------
32400
-------- description --------------
[sorry]
-------- profile_banner_url --------------
https://pbs.twimg.com/profile_banners/140021552/1373090650
-------- time_zone --------------
Tokyo
-------- screen_name --------------
otiai10
-------- profile_text_color --------------
051C4A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment