- Resolved issue with entries in HAR files which do not belong to a page. The new behavior will create a "fake" HarPage with an ID of "unknown" if one or more of these entries exist, and add them to it. Ths will allow the overall HarParser to still take these entries into account for timings.
- python 3.7 compatibility. Specifically, removing the keyword async which is now a reserved keyword argument. As of right now, we are still maintaining backwards compatability, but it is deprecated and will be removed in a future version. You should now use asynchronous instead. Many thanks to NickPancakes for hooking it up.
- Adding methods for retreiving transferred size of assets (with compression)
- Bugfix for maximum recursion depth being hit when HarPage is initialized with a page ID that does not exist in the HAR file.
- Removing numpy as a requirement
- Using @cached_property instead of @property
- Small refactor to logic behind getting property values
- Increased test coverage
- Adding coveralls + Travis integration
- Adding pypi badge to README
- Tweaking docs for pypi
- Adding Travis CI integration
- Initial Beta release