I use Python 3.4 and have problem with UnQlite database. It works with Python 2.x but in newer version after
from unqlite import UnQLite
db = UnQLite()
the error appers:
File "/home/mwalko/PycharmProjects/PracaInzynierska/bin/project/calculations/Calculate.py", line 32, in __init__
db = UnQLite()
File "unqlite.pyx", line 285, in unqlite.UnQLite.__init__ (unqlite.c:1888)
File "unqlite.pyx", line 296, in unqlite.UnQLite.open (unqlite.c:2003)
TypeError: expected bytes, str found
Is there any way to solve this problem?