Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. {
  2. "face": [
  3. {
  4. "attribute": {
  5. "age": {
  6. "range": 5,
  7. "value": 24
  8. },
  9. "gender": {
  10. "confidence": 99.9999,
  11. "value": "Female"
  12. },
  13. "glass": {
  14. "confidence": 99.4157,
  15. "value": "None"
  16. },
  17. "pose": {
  18. "pitch_angle": {
  19. "value": 0.000001
  20. },
  21. "roll_angle": {
  22. "value": 0.650337
  23. },
  24. "yaw_angle": {
  25. "value": -0.42409
  26. }
  27. },
  28. "race": {
  29. "confidence": 98.058,
  30. "value": "Asian"
  31. },
  32. "smiling": {
  33. "value": 3.78394
  34. }
  35. },
  36. "face_id": "42245f24335ad21ea7c54f2db96a09b3",
  37. "position": {
  38. "center": {
  39. "x": 50.121951,
  40. "y": 35.97561
  41. },
  42. "eye_left": {
  43. "x": 43.465122,
  44. "y": 30.670488
  45. },
  46. "eye_right": {
  47. "x": 56.80878,
  48. "y": 30.821951
  49. },
  50. "height": 27.560976,
  51. "mouth_left": {
  52. "x": 45.649512,
  53. "y": 45.041707
  54. },
  55. "mouth_right": {
  56. "x": 55.134878,
  57. "y": 44.858049
  58. },
  59. "nose": {
  60. "x": 50.183415,
  61. "y": 38.410732
  62. },
  63. "width": 27.560976
  64. },
  65. "tag": ""
  66. }
  67. ],
  68. "img_height": 410,
  69. "img_id": "1e3007cb3d6cfbaed3a1b4135524ed25",
  70. "img_width": 410,
  71. "session_id": "76ec7f99a471418fa8862a2138cc589d",
  72. "url": "http://www.faceplusplus.com/wp-content/themes/faceplusplus/assets/img/demo/1.jpg?v=2"
  73. }
  74.  
  75. import urllib2
  76. import io, json
  77. from bs4 import BeautifulSoup
  78. data = soup #soup has all the data json
  79. with open('data.json', 'w') as outfile:
  80. json.dump(data, outfile, sort_keys = True, indent = 4, ensure_ascii=False)
  81. #content = json.loads(soup)
  82. jsonFile = open('data.json', 'r')
  83. values = json.load(jsonFile)
  84. jsonFile.close()
  85. gender = soup['face'][0]['gender']['value']
  86. print gender
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement