This is the last "SQLite-only" Sqllex ORM version
With the new updates (0.2+) base logic of scripts generation will be changed. Since sqllex v0.2 output data will not be converting from (original) tuple of tuples to list of lists, it will return "as is" instead.
There is a few reasons of these changes: tuple are faster, lighter and more reasonable for use as type of static record than list. So that's why all databases drivers use tuples.
Anyway I'll leave a few tools for converting in `sqllex.other` (return2list, lister, tuple2list) to simplify the process of transition to a new sqllex versions.
---
Changes:
- Removed mistaken imports and requirements