Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
Fix docs datastore examples#2039
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -443,6 +443,37 @@ def query(self, **kwargs): | ||
| """Proxy to :class:`gcloud.datastore.query.Query`. | ||
| Passes our ``project``. | ||
| Using query to search a datastore:: | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| >>> from gcloud import datastore | ||
| >>> client = datastore.Client() | ||
| >>> query = client.query(kind='MyKind') | ||
| >>> query.add_filter('property', '=', 'val') | ||
| Using the query iterator's | ||
| :meth:`next_page() <gcloud.datastore.query.Iterator.next_page>` method: | ||
| >>> query_iter = query.fetch() | ||
| >>> entities, more_results, cursor = query_iter.next_page() | ||
| >>> entities | ||
| [<list of Entity unmarshalled from protobuf>] | ||
| >>> more_results | ||
| <boolean of more results> | ||
| >>> cursor | ||
| <string containing cursor where fetch stopped> | ||
| Under the hood this is doing: | ||
| >>> connection.run_query('project', query.to_protobuf()) | ||
| [<list of Entity Protobufs>], cursor, more_results, skipped_results | ||
| :type **kwargs: dict | ||
| :param **kwargs: Parameters for initializing and instance of | ||
| :class:`gcloud.datastore.query.Query`. | ||
| :rtype: :class:`gcloud.datastore.query.Query` | ||
| :returns: An instance of :class:`gcloud.datastore.query.Query` | ||
| """ | ||
| if 'client' in kwargs: | ||
| raise TypeError('Cannot pass client') | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -13,6 +13,8 @@ | ||
| # limitations under the License. | ||
| import argparse | ||
| import cgi | ||
| import doctest | ||
| import inspect | ||
| import json | ||
| import os | ||
| @@ -27,6 +29,9 @@ | ||
| from verify_included_modules import get_public_modules | ||
| _DOCSTRING_TEST_PARSER = doctest.DocTestParser() | ||
| class Module(object): | ||
| def __init__(self, module_id, name, description=None, | ||
| @@ -148,36 +153,38 @@ def from_pdoc(cls, element): | ||
| components = element.refname.split('.') | ||
| mod = __import__(components[0]) | ||
| for comp in components[1:]: | ||
| mod = getattr(mod, comp) | ||
| build_source(mod, method) | ||
| # Get method line number. | ||
| method.add_source_line(get_source_line_number(mod)) | ||
| # Get method Examples. | ||
| examples = get_examples_from_docstring(element.docstring) | ||
| if examples: | ||
| method.add_example(examples) | ||
| if element.docstring: | ||
| if not isinstance(element, pdoc.Class) and element.cls: | ||
| cls = element.cls.cls | ||
| klass = element.cls.cls | ||
| elif element.cls: | ||
| cls = element.cls | ||
| klass = element.cls | ||
| else: | ||
| cls = None | ||
| klass = None | ||
| # Hack for old-style classes | ||
| if str(cls)[0] != '<': | ||
| cls = '<class \'' + str(cls) + '\'>' | ||
| if not str(klass).startswith('<'): | ||
| klass = '<class \'%s\'>' % (klass,) | ||
| try: | ||
| method_info = parse_docstring(element.docstring, cls) | ||
| method_info = parse_docstring(element.docstring, klass) | ||
| except (MethodParsingException, IndexError): | ||
| return method | ||
| for name, data in method_info['arguments'].items(): | ||
| param = Param.from_docstring_section(name, data) | ||
| method.add_param(param) | ||
| if method_info.get('example'): | ||
| method.add_example(method_info['example']) | ||
| if method_info.get('return'): | ||
| if len(method_info['return']['type_name']) > 0: | ||
| type_name = method_info.get('return').get('type_name') | ||
| @@ -296,9 +303,35 @@ def clean_source_path(module): | ||
| return '%s.py' % (source_id.replace('.', '/'),) | ||
| def get_examples_from_docstring(doc_str): | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| """Parse doctest style code examples from a docstring.""" | ||
| examples = _DOCSTRING_TEST_PARSER.get_examples(doc_str) | ||
| example_str = '' | ||
| for example in examples: | ||
| example_str += '%s' % (example.source,) | ||
| example_str += '%s' % (example.want,) | ||
| return cgi.escape(example_str) | ||
| def get_source_line_number(module): | ||
| if isinstance(module, (types.ModuleType, types.ClassType, | ||
| types.MethodType, types.FunctionType, | ||
| types.TracebackType, types.FrameType, | ||
| types.CodeType, types.TypeType)): | ||
| _, line = inspect.getsourcelines(module) | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| source_path = clean_source_path(module) | ||
| if line: | ||
| source_path = source_path + '#L' + str(line) | ||
| return source_path | ||
| def process_code_blocks(doc): | ||
| blocks = [] | ||
| index = 0 | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page.
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| for line in doc.splitlines(True): | ||
| if len(blocks) - 1 < index: | ||
| blocks.append('') | ||
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.