Changes between Version 7 and Version 8 of Python
- Timestamp:
- 06/16/06 11:37:02 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python
v7 v8 95 95 96 96 * dict として使える HostIP オブジェクト. 97 98 {{{ 99 #!python 100 >>> test = HostIP('210.156.41.55') 101 >>> for k, v in test.items(): 102 ... print '%s: %s' % (k, v) 103 ... 104 city: Morioka 105 guessed: true 106 url: http://api.hostip.info/rough.php?position=true&ip=210.156.41.55 107 googlemaps: http://maps.google.com/?q=39.7N+141.15E(210.156.41.55) 108 latitude: 39.7 109 country: JAPAN 110 ipaddr: 210.156.41.55 111 country code: JP 112 longitude: 141.15 113 }}}