https://gist.github.com/carlozamagni/187e478f516cac926682 :param value: :return:
(value)
| 47 | |
| 48 | |
| 49 | def double_to_long_bits(value): |
| 50 | """ |
| 51 | https://gist.github.com/carlozamagni/187e478f516cac926682 |
| 52 | :param value: |
| 53 | :return: |
| 54 | """ |
| 55 | return struct.unpack('Q', struct.pack('d', value))[0] |
| 56 | |
| 57 | |
| 58 | def get_ip(): |