Skip to content

v0.2.2

Compare
Choose a tag to compare
@RobertCraigie RobertCraigie released this 17 Oct 09:51
· 584 commits to main since this release
3ca9038

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.