Bugfixes
- All output from ia-mine should be JSONL. Some responses from the Metadata API contain unescaped newlines. This causes a lot of issues when using jq are when parsing JSON line-by-line. to address this, JSON responses returned from server are now parsed and dumped back to JSON before printing to stdout.
Features and Improvements
- Fixed
Exception ignored in:
errors. - Added support for custom config files.
Bugfixes
- Added HISTORY.rst to MANIFEST.in to fix pip install iamine.
Bugfixes
asyncio.JoinableQueue
was deprecated in Python 3.4.4.iamine.core.Miner
now usesasyncio.Queue
for Python 3.4.4 and newer andasyncio.JoinableQueue
for older versions (asyncio.Queue
cannot be used for all versions becauseasyncio.Queue.join()
was only added in version 3.4.4.).SearchMiner.get_search_info()
is no longer a coroutine (now usesurllib
). Fixed bug iniamine.api.search
where it was still being called as coroutine.