v0.2.2
Package Rename
The python package has been renamed from prisma-client
to prisma
!
You can now install the client like so:
pip install prisma
You can still install using the old package name, however no new releases will be published.
Datasource Overriding
The datasource can be dynamically overriden when the client is instantiated:
from prisma import Client
client = Client(
datasource={
'url': 'file:./dev_qa.db',
},
)
This is especially useful for testing purposes.