for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
class Query:
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
class SomeClass: def some_method(self): """Do x and return foo."""
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.
__class__
# TODO: Build a structure that extends the current cursor and allows for objectification
TODO
FIXME
# constructor
def __init__(self, query):
self.query = query
# destructor
def __del__(self):
pass
# types
def __bool__(self):
def __bytes__(self):
def __str__(self):
# conversions
def __format__(self, format_spec):
def __repr__(self):
# comparisons
def __lt__(self, other):
def __le__(self, other):
def __eq__(self, other):
def __ne__(self, other):
def __gt__(self, other):
def __ge__(self, other):
# iterations
def __len__(self):
def __contains__(self, item):
def __next__(self):
def __reversed__(self):
# chain wrappers
def count(self):
def limit(self):
def sort(self):
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.