obsrvbl-oss / flowlogs-reader

Command line tool and Python library for working with AWS VPC Flow Logs
Apache License 2.0
136 stars 25 forks source link

Version 2.0.0 (support v3 logs) #38

Closed bbayles closed 4 years ago

bbayles commented 5 years ago

This PR:

This will be a major release, due to the change in compatibility.

mrg29 commented 4 years ago

if you wanted to get rid of some of the other Python 2 cruft:

$ git grep 'class.*object'
    flowlogs_reader/aggregation.py:class _FlowStats(object):
$ git grep __future__
    flowlogs_reader/__main__.py:from __future__ import print_function
    flowlogs_reader/aggregation.py:from __future__ import print_function
    tests/test_main.py:from __future__ import print_function
bbayles commented 4 years ago

cf4437c1185920bbeda5a735e7fe801fb2cf942f zaps some more Python 2-isms.