Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,18 @@ APIs and Services". From there, look for "Databases" in the Category filter.
Make sure that both "Cloud Datastore API" and "Google Cloud Firestore API" are
enabled.

Accessing a specific project, database, or namespace
====================================================

A client can be bound to a chosen Google Cloud project, database, and/or namespace
by passing one or more of these options to the client constructor::

client = ndb.Client(
project="your-project-id",
database="your-database-id",
namespace="your-namespace"
)

Defining Entities, Keys, and Properties
=======================================

Expand Down