FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
Implement "client" pattern for datastore · Issue #944 · googleapis/google-cloud-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
googleapis
/
google-cloud-python
Public
Notifications
You must be signed in to change notification settings
Fork
1.8k
Star
5.4k
Code
Issues
441
Pull requests
89
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Implement "client" pattern for datastore
#944
Copy link
Copy link
Closed
Closed
Implement "client" pattern for datastore
#944
Copy link
Assignees
Labels
api: datastore
Issues related to the Datastore API.
Issues related to the Datastore API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
tseaver
Issue body actions
Per
#861
.
Steps:
Rename gcloud.datastore.dataset.Dataset -> gcloud.datastore.client.Client. (
Rename 'dataset.Dataset' -> 'client.Client'.
#946
)
Unwind _implicit_environ usage within client. (
Move implicit majyk inside 'Client.__init__'.
#956
)
Move gcloud.datastore.api functions to methods of Client. (
Move 'datastore.api' functions to 'datastore.client.Client' methods.
#963
)
Update Client to handle nesting of batches / transactions over primary connection. (
Update 'Client' to hold stack of connection/batch/transaction objects.
#976
)
Update domain objects making API requests to hold reference to client. (
Update batch/transaction/query to hold client.
#978
)
Update Batch and Transaction context managers to push themselves onto their client's stack. (
Update batch/transaction/query to hold client.
#978
)
Update domain object methods taking connection to accept client, falling back to self.client. (
Update batch/transaction/query to hold client.
#978
)
Remove remaining _implicit_environ usage. (
Remove '_implicit_environ'
#979
)
Reactions are currently unavailable
Metadata
Metadata
Assignees
tseaver
Labels
api: datastore
Issues related to the Datastore API.
Issues related to the Datastore API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
‘Nice-to-have’ improvement, new feature or different behavior or design.
Type
No type
Projects
No projects
Milestone
No milestone
Relationships
None yet
Development
No branches or pull requests
Issue actions
Back
|
FazBrowse Home
|
New Git URL
Per #861.
Steps: