You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env python3 |
|
|
|
|
|
from update import * |
|
|
|
|
|
def main(): |
|
line = b'1;2018/10/20;18:16;12.9;1.1;#;95.0;#;-1.2;#;#;0.0;0.0;1.2;1.2;16.0;1;F;1;0;0;19;4665;21;3288;0;E307\r\n' |
|
|
|
parse_line(line.decode('ascii')) |
|
|
|
if __name__ == '__main__': |
|
main()
|
|
|