Added delete option to database storage.
This commit is contained in:
parent
308604a33c
commit
963b5bc68b
1868 changed files with 192402 additions and 13278 deletions
36
venv/Lib/site-packages/apiclient/__init__.py
Normal file
36
venv/Lib/site-packages/apiclient/__init__.py
Normal file
|
@ -0,0 +1,36 @@
|
|||
"""Retain apiclient as an alias for googleapiclient."""
|
||||
|
||||
from six import iteritems
|
||||
|
||||
import googleapiclient
|
||||
|
||||
from googleapiclient import channel
|
||||
from googleapiclient import discovery
|
||||
from googleapiclient import errors
|
||||
from googleapiclient import http
|
||||
from googleapiclient import mimeparse
|
||||
from googleapiclient import model
|
||||
|
||||
try:
|
||||
from googleapiclient import sample_tools
|
||||
except ImportError:
|
||||
# Silently ignore, because the vast majority of consumers won't use it and
|
||||
# it has deep dependence on oauth2client, an optional dependency.
|
||||
sample_tools = None
|
||||
from googleapiclient import schema
|
||||
|
||||
_SUBMODULES = {
|
||||
"channel": channel,
|
||||
"discovery": discovery,
|
||||
"errors": errors,
|
||||
"http": http,
|
||||
"mimeparse": mimeparse,
|
||||
"model": model,
|
||||
"sample_tools": sample_tools,
|
||||
"schema": schema,
|
||||
}
|
||||
|
||||
import sys
|
||||
|
||||
for module_name, module in iteritems(_SUBMODULES):
|
||||
sys.modules["apiclient.%s" % module_name] = module
|
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue