Skip to content

Commit

Permalink
added support for new google datastore. No more ndb
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Feb 21, 2022
1 parent d7b24a9 commit 09ace32
Show file tree
Hide file tree
Showing 16 changed files with 807 additions and 517 deletions.
17 changes: 0 additions & 17 deletions pydal/_gae.py

This file was deleted.

8 changes: 4 additions & 4 deletions pydal/adapters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import re
from .._gae import gae
from ..helpers._internals import Dispatcher

from ..ndb import have_ndb

class Adapters(Dispatcher):
def register_for(self, *uris):
Expand Down Expand Up @@ -85,5 +84,6 @@ def wrap(*args, **kwargs):
from .sap import SAPDB
from .teradata import Teradata
from .couchdb import CouchDB

from .google import GoogleSQL
from .google import GoogleSQL, GoogleDatastore
if have_ndb:
from .ndb import GoogleNDB

0 comments on commit 09ace32

Please sign in to comment.