Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New google datastore #682

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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