repo
stringlengths
7
55
path
stringlengths
4
127
func_name
stringlengths
1
88
original_string
stringlengths
75
19.8k
language
stringclasses
1 value
code
stringlengths
75
19.8k
code_tokens
list
docstring
stringlengths
3
17.3k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
87
242
partition
stringclasses
1 value
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
gene_list
def gene_list(list_id=None): """Display or add a gene list.""" all_case_ids = [case.case_id for case in app.db.cases()] if list_id: genelist_obj = app.db.gene_list(list_id) case_ids = [case.case_id for case in app.db.cases() if case not in genelist_obj.cases] if g...
python
def gene_list(list_id=None): """Display or add a gene list.""" all_case_ids = [case.case_id for case in app.db.cases()] if list_id: genelist_obj = app.db.gene_list(list_id) case_ids = [case.case_id for case in app.db.cases() if case not in genelist_obj.cases] if g...
[ "def", "gene_list", "(", "list_id", "=", "None", ")", ":", "all_case_ids", "=", "[", "case", ".", "case_id", "for", "case", "in", "app", ".", "db", ".", "cases", "(", ")", "]", "if", "list_id", ":", "genelist_obj", "=", "app", ".", "db", ".", "gene...
Display or add a gene list.
[ "Display", "or", "add", "a", "gene", "list", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L79-L123
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
delete_genelist
def delete_genelist(list_id, case_id=None): """Delete a whole gene list with links to cases or a link.""" if case_id: # unlink a case from a gene list case_obj = app.db.case(case_id) app.db.remove_genelist(list_id, case_obj=case_obj) return redirect(request.referrer) else: ...
python
def delete_genelist(list_id, case_id=None): """Delete a whole gene list with links to cases or a link.""" if case_id: # unlink a case from a gene list case_obj = app.db.case(case_id) app.db.remove_genelist(list_id, case_obj=case_obj) return redirect(request.referrer) else: ...
[ "def", "delete_genelist", "(", "list_id", ",", "case_id", "=", "None", ")", ":", "if", "case_id", ":", "# unlink a case from a gene list", "case_obj", "=", "app", ".", "db", ".", "case", "(", "case_id", ")", "app", ".", "db", ".", "remove_genelist", "(", "...
Delete a whole gene list with links to cases or a link.
[ "Delete", "a", "whole", "gene", "list", "with", "links", "to", "cases", "or", "a", "link", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L128-L138
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
resources
def resources(): """Upload a new resource for an individual.""" ind_id = request.form['ind_id'] upload_dir = os.path.abspath(app.config['UPLOAD_DIR']) req_file = request.files['file'] filename = secure_filename(req_file.filename) file_path = os.path.join(upload_dir, filename) name = request...
python
def resources(): """Upload a new resource for an individual.""" ind_id = request.form['ind_id'] upload_dir = os.path.abspath(app.config['UPLOAD_DIR']) req_file = request.files['file'] filename = secure_filename(req_file.filename) file_path = os.path.join(upload_dir, filename) name = request...
[ "def", "resources", "(", ")", ":", "ind_id", "=", "request", ".", "form", "[", "'ind_id'", "]", "upload_dir", "=", "os", ".", "path", ".", "abspath", "(", "app", ".", "config", "[", "'UPLOAD_DIR'", "]", ")", "req_file", "=", "request", ".", "files", ...
Upload a new resource for an individual.
[ "Upload", "a", "new", "resource", "for", "an", "individual", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L142-L155
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
resource
def resource(resource_id): """Show a resource.""" resource_obj = app.db.resource(resource_id) if 'raw' in request.args: return send_from_directory(os.path.dirname(resource_obj.path), os.path.basename(resource_obj.path)) return render_template('resource.html',...
python
def resource(resource_id): """Show a resource.""" resource_obj = app.db.resource(resource_id) if 'raw' in request.args: return send_from_directory(os.path.dirname(resource_obj.path), os.path.basename(resource_obj.path)) return render_template('resource.html',...
[ "def", "resource", "(", "resource_id", ")", ":", "resource_obj", "=", "app", ".", "db", ".", "resource", "(", "resource_id", ")", "if", "'raw'", "in", "request", ".", "args", ":", "return", "send_from_directory", "(", "os", ".", "path", ".", "dirname", "...
Show a resource.
[ "Show", "a", "resource", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L159-L167
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
comments
def comments(case_id): """Upload a new comment.""" text = request.form['text'] variant_id = request.form.get('variant_id') username = request.form.get('username') case_obj = app.db.case(case_id) app.db.add_comment(case_obj, text, variant_id=variant_id, username=username) return redirect(requ...
python
def comments(case_id): """Upload a new comment.""" text = request.form['text'] variant_id = request.form.get('variant_id') username = request.form.get('username') case_obj = app.db.case(case_id) app.db.add_comment(case_obj, text, variant_id=variant_id, username=username) return redirect(requ...
[ "def", "comments", "(", "case_id", ")", ":", "text", "=", "request", ".", "form", "[", "'text'", "]", "variant_id", "=", "request", ".", "form", ".", "get", "(", "'variant_id'", ")", "username", "=", "request", ".", "form", ".", "get", "(", "'username'...
Upload a new comment.
[ "Upload", "a", "new", "comment", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L184-L191
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
individual
def individual(ind_id): """Show details for a specific individual.""" individual_obj = app.db.individual(ind_id) return render_template('individual.html', individual=individual_obj)
python
def individual(ind_id): """Show details for a specific individual.""" individual_obj = app.db.individual(ind_id) return render_template('individual.html', individual=individual_obj)
[ "def", "individual", "(", "ind_id", ")", ":", "individual_obj", "=", "app", ".", "db", ".", "individual", "(", "ind_id", ")", "return", "render_template", "(", "'individual.html'", ",", "individual", "=", "individual_obj", ")" ]
Show details for a specific individual.
[ "Show", "details", "for", "a", "specific", "individual", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L209-L212
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
synopsis
def synopsis(case_id): """Update the case synopsis.""" text = request.form['text'] case_obj = app.db.case(case_id) app.db.update_synopsis(case_obj, text) return redirect(request.referrer)
python
def synopsis(case_id): """Update the case synopsis.""" text = request.form['text'] case_obj = app.db.case(case_id) app.db.update_synopsis(case_obj, text) return redirect(request.referrer)
[ "def", "synopsis", "(", "case_id", ")", ":", "text", "=", "request", ".", "form", "[", "'text'", "]", "case_obj", "=", "app", ".", "db", ".", "case", "(", "case_id", ")", "app", ".", "db", ".", "update_synopsis", "(", "case_obj", ",", "text", ")", ...
Update the case synopsis.
[ "Update", "the", "case", "synopsis", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L216-L221
train
robinandeer/puzzle
puzzle/server/blueprints/public/views.py
add_case
def add_case(): """Make a new case out of a list of individuals.""" ind_ids = request.form.getlist('ind_id') case_id = request.form['case_id'] source = request.form['source'] variant_type = request.form['type'] if len(ind_ids) == 0: return abort(400, "must add at least one member of cas...
python
def add_case(): """Make a new case out of a list of individuals.""" ind_ids = request.form.getlist('ind_id') case_id = request.form['case_id'] source = request.form['source'] variant_type = request.form['type'] if len(ind_ids) == 0: return abort(400, "must add at least one member of cas...
[ "def", "add_case", "(", ")", ":", "ind_ids", "=", "request", ".", "form", ".", "getlist", "(", "'ind_id'", ")", "case_id", "=", "request", ".", "form", "[", "'case_id'", "]", "source", "=", "request", ".", "form", "[", "'source'", "]", "variant_type", ...
Make a new case out of a list of individuals.
[ "Make", "a", "new", "case", "out", "of", "a", "list", "of", "individuals", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/server/blueprints/public/views.py#L225-L247
train
eleme/meepo
meepo/sub/dummy.py
print_sub
def print_sub(tables): """Dummy print sub. :param tables: print events of tables. """ logger = logging.getLogger("meepo.sub.print_sub") logger.info("print_sub tables: %s" % ", ".join(tables)) if not isinstance(tables, (list, set)): raise ValueError("tables should be list or set") ...
python
def print_sub(tables): """Dummy print sub. :param tables: print events of tables. """ logger = logging.getLogger("meepo.sub.print_sub") logger.info("print_sub tables: %s" % ", ".join(tables)) if not isinstance(tables, (list, set)): raise ValueError("tables should be list or set") ...
[ "def", "print_sub", "(", "tables", ")", ":", "logger", "=", "logging", ".", "getLogger", "(", "\"meepo.sub.print_sub\"", ")", "logger", ".", "info", "(", "\"print_sub tables: %s\"", "%", "\", \"", ".", "join", "(", "tables", ")", ")", "if", "not", "isinstanc...
Dummy print sub. :param tables: print events of tables.
[ "Dummy", "print", "sub", "." ]
8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a
https://github.com/eleme/meepo/blob/8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a/meepo/sub/dummy.py#L11-L26
train
okeuday/erlang_py
erlang.py
binary_to_term
def binary_to_term(data): """ Decode Erlang terms within binary data into Python types """ if not isinstance(data, bytes): raise ParseException('not bytes input') size = len(data) if size <= 1: raise ParseException('null input') if b_ord(data[0]) != _TAG_VERSION: rais...
python
def binary_to_term(data): """ Decode Erlang terms within binary data into Python types """ if not isinstance(data, bytes): raise ParseException('not bytes input') size = len(data) if size <= 1: raise ParseException('null input') if b_ord(data[0]) != _TAG_VERSION: rais...
[ "def", "binary_to_term", "(", "data", ")", ":", "if", "not", "isinstance", "(", "data", ",", "bytes", ")", ":", "raise", "ParseException", "(", "'not bytes input'", ")", "size", "=", "len", "(", "data", ")", "if", "size", "<=", "1", ":", "raise", "Pars...
Decode Erlang terms within binary data into Python types
[ "Decode", "Erlang", "terms", "within", "binary", "data", "into", "Python", "types" ]
81b7c2ace66b6bdee23602a6802efff541223fa3
https://github.com/okeuday/erlang_py/blob/81b7c2ace66b6bdee23602a6802efff541223fa3/erlang.py#L440-L459
train
okeuday/erlang_py
erlang.py
term_to_binary
def term_to_binary(term, compressed=False): """ Encode Python types into Erlang terms in binary data """ data_uncompressed = _term_to_binary(term) if compressed is False: return b_chr(_TAG_VERSION) + data_uncompressed else: if compressed is True: compressed = 6 ...
python
def term_to_binary(term, compressed=False): """ Encode Python types into Erlang terms in binary data """ data_uncompressed = _term_to_binary(term) if compressed is False: return b_chr(_TAG_VERSION) + data_uncompressed else: if compressed is True: compressed = 6 ...
[ "def", "term_to_binary", "(", "term", ",", "compressed", "=", "False", ")", ":", "data_uncompressed", "=", "_term_to_binary", "(", "term", ")", "if", "compressed", "is", "False", ":", "return", "b_chr", "(", "_TAG_VERSION", ")", "+", "data_uncompressed", "else...
Encode Python types into Erlang terms in binary data
[ "Encode", "Python", "types", "into", "Erlang", "terms", "in", "binary", "data" ]
81b7c2ace66b6bdee23602a6802efff541223fa3
https://github.com/okeuday/erlang_py/blob/81b7c2ace66b6bdee23602a6802efff541223fa3/erlang.py#L461-L480
train
TiagoBras/audio-clip-extractor
audioclipextractor/parser.py
SpecsParser._parseLine
def _parseLine(cls, line): """Parsers a single line of text and returns an AudioClipSpec Line format: <number> <number> [<text>] Returns: list(AudioClipSpec) or None """ r = cls._PROG.match(line) if not r: raise ValueError("Error: parsing '%s'. ...
python
def _parseLine(cls, line): """Parsers a single line of text and returns an AudioClipSpec Line format: <number> <number> [<text>] Returns: list(AudioClipSpec) or None """ r = cls._PROG.match(line) if not r: raise ValueError("Error: parsing '%s'. ...
[ "def", "_parseLine", "(", "cls", ",", "line", ")", ":", "r", "=", "cls", ".", "_PROG", ".", "match", "(", "line", ")", "if", "not", "r", ":", "raise", "ValueError", "(", "\"Error: parsing '%s'. Correct: \\\"<number> <number> [<text>]\\\"\"", "%", "line", ")", ...
Parsers a single line of text and returns an AudioClipSpec Line format: <number> <number> [<text>] Returns: list(AudioClipSpec) or None
[ "Parsers", "a", "single", "line", "of", "text", "and", "returns", "an", "AudioClipSpec" ]
b0dd90266656dcbf7e663b3e174dce4d09e74c32
https://github.com/TiagoBras/audio-clip-extractor/blob/b0dd90266656dcbf7e663b3e174dce4d09e74c32/audioclipextractor/parser.py#L118-L136
train
Gawen/pytun
pytun.py
Tunnel.mode_name
def mode_name(self): """ Returns the tunnel mode's name, for printing purpose. """ for name, id in self.MODES.iteritems(): if id == self.mode: return name
python
def mode_name(self): """ Returns the tunnel mode's name, for printing purpose. """ for name, id in self.MODES.iteritems(): if id == self.mode: return name
[ "def", "mode_name", "(", "self", ")", ":", "for", "name", ",", "id", "in", "self", ".", "MODES", ".", "iteritems", "(", ")", ":", "if", "id", "==", "self", ".", "mode", ":", "return", "name" ]
Returns the tunnel mode's name, for printing purpose.
[ "Returns", "the", "tunnel", "mode", "s", "name", "for", "printing", "purpose", "." ]
a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d
https://github.com/Gawen/pytun/blob/a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d/pytun.py#L106-L111
train
Gawen/pytun
pytun.py
Tunnel.open
def open(self): """ Create the tunnel. If the tunnel is already opened, the function will raised an AlreadyOpened exception. """ if self.fd is not None: raise self.AlreadyOpened() logger.debug("Opening %s..." % (TUN_KO_PATH, )) self.fd = os.o...
python
def open(self): """ Create the tunnel. If the tunnel is already opened, the function will raised an AlreadyOpened exception. """ if self.fd is not None: raise self.AlreadyOpened() logger.debug("Opening %s..." % (TUN_KO_PATH, )) self.fd = os.o...
[ "def", "open", "(", "self", ")", ":", "if", "self", ".", "fd", "is", "not", "None", ":", "raise", "self", ".", "AlreadyOpened", "(", ")", "logger", ".", "debug", "(", "\"Opening %s...\"", "%", "(", "TUN_KO_PATH", ",", ")", ")", "self", ".", "fd", "...
Create the tunnel. If the tunnel is already opened, the function will raised an AlreadyOpened exception.
[ "Create", "the", "tunnel", ".", "If", "the", "tunnel", "is", "already", "opened", "the", "function", "will", "raised", "an", "AlreadyOpened", "exception", "." ]
a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d
https://github.com/Gawen/pytun/blob/a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d/pytun.py#L117-L142
train
Gawen/pytun
pytun.py
Tunnel.close
def close(self): """ Close the tunnel. If the tunnel is already closed or never opened, do nothing. """ if self.fd is None: return logger.debug("Closing tunnel '%s'..." % (self.name or "", )) # Close tun.ko file os.close(...
python
def close(self): """ Close the tunnel. If the tunnel is already closed or never opened, do nothing. """ if self.fd is None: return logger.debug("Closing tunnel '%s'..." % (self.name or "", )) # Close tun.ko file os.close(...
[ "def", "close", "(", "self", ")", ":", "if", "self", ".", "fd", "is", "None", ":", "return", "logger", ".", "debug", "(", "\"Closing tunnel '%s'...\"", "%", "(", "self", ".", "name", "or", "\"\"", ",", ")", ")", "# Close tun.ko file", "os", ".", "close...
Close the tunnel. If the tunnel is already closed or never opened, do nothing.
[ "Close", "the", "tunnel", ".", "If", "the", "tunnel", "is", "already", "closed", "or", "never", "opened", "do", "nothing", "." ]
a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d
https://github.com/Gawen/pytun/blob/a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d/pytun.py#L144-L159
train
Gawen/pytun
pytun.py
Tunnel.recv
def recv(self, size = None): """ Receive a buffer. The default size is 1500, the classical MTU. """ size = size if size is not None else 1500 return os.read(self.fd, size)
python
def recv(self, size = None): """ Receive a buffer. The default size is 1500, the classical MTU. """ size = size if size is not None else 1500 return os.read(self.fd, size)
[ "def", "recv", "(", "self", ",", "size", "=", "None", ")", ":", "size", "=", "size", "if", "size", "is", "not", "None", "else", "1500", "return", "os", ".", "read", "(", "self", ".", "fd", ",", "size", ")" ]
Receive a buffer. The default size is 1500, the classical MTU.
[ "Receive", "a", "buffer", ".", "The", "default", "size", "is", "1500", "the", "classical", "MTU", "." ]
a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d
https://github.com/Gawen/pytun/blob/a1e1f86a5e2b5ed256e3b87dcdd4f6aedc6cde6d/pytun.py#L165-L172
train
Shinichi-Nakagawa/pitchpx
pitchpx/mlbam.py
MlbAm.download
def download(self): """ MLBAM dataset download """ p = Pool() p.map(self._download, self.days)
python
def download(self): """ MLBAM dataset download """ p = Pool() p.map(self._download, self.days)
[ "def", "download", "(", "self", ")", ":", "p", "=", "Pool", "(", ")", "p", ".", "map", "(", "self", ".", "_download", ",", "self", ".", "days", ")" ]
MLBAM dataset download
[ "MLBAM", "dataset", "download" ]
5747402a0b3416f5e910b479e100df858f0b6440
https://github.com/Shinichi-Nakagawa/pitchpx/blob/5747402a0b3416f5e910b479e100df858f0b6440/pitchpx/mlbam.py#L49-L54
train
ldomic/lintools
lintools/analysis/salt_bridges.py
SaltBridges.count_by_type
def count_by_type(self): """Count how many times each individual salt bridge occured throughout the simulation. Returns numpy array.""" saltbridges = defaultdict(int) for contact in self.timeseries: #count by residue name not by proteinring pkey = (contact.liganda...
python
def count_by_type(self): """Count how many times each individual salt bridge occured throughout the simulation. Returns numpy array.""" saltbridges = defaultdict(int) for contact in self.timeseries: #count by residue name not by proteinring pkey = (contact.liganda...
[ "def", "count_by_type", "(", "self", ")", ":", "saltbridges", "=", "defaultdict", "(", "int", ")", "for", "contact", "in", "self", ".", "timeseries", ":", "#count by residue name not by proteinring", "pkey", "=", "(", "contact", ".", "ligandatomid", ",", "contac...
Count how many times each individual salt bridge occured throughout the simulation. Returns numpy array.
[ "Count", "how", "many", "times", "each", "individual", "salt", "bridge", "occured", "throughout", "the", "simulation", ".", "Returns", "numpy", "array", "." ]
d825a4a7b35f3f857d3b81b46c9aee72b0ec697a
https://github.com/ldomic/lintools/blob/d825a4a7b35f3f857d3b81b46c9aee72b0ec697a/lintools/analysis/salt_bridges.py#L143-L156
train
ldomic/lintools
lintools/analysis/salt_bridges.py
SaltBridges.count_by_time
def count_by_time(self): """Count how many salt bridges occured in each frame. Returns numpy array.""" out = np.empty((len(self.timesteps),), dtype=[('time', float), ('count', int)]) for cursor,timestep in enumerate(self.timesteps): out[cursor] = (timestep,len([x for x in sel...
python
def count_by_time(self): """Count how many salt bridges occured in each frame. Returns numpy array.""" out = np.empty((len(self.timesteps),), dtype=[('time', float), ('count', int)]) for cursor,timestep in enumerate(self.timesteps): out[cursor] = (timestep,len([x for x in sel...
[ "def", "count_by_time", "(", "self", ")", ":", "out", "=", "np", ".", "empty", "(", "(", "len", "(", "self", ".", "timesteps", ")", ",", ")", ",", "dtype", "=", "[", "(", "'time'", ",", "float", ")", ",", "(", "'count'", ",", "int", ")", "]", ...
Count how many salt bridges occured in each frame. Returns numpy array.
[ "Count", "how", "many", "salt", "bridges", "occured", "in", "each", "frame", ".", "Returns", "numpy", "array", "." ]
d825a4a7b35f3f857d3b81b46c9aee72b0ec697a
https://github.com/ldomic/lintools/blob/d825a4a7b35f3f857d3b81b46c9aee72b0ec697a/lintools/analysis/salt_bridges.py#L158-L164
train
inveniosoftware-contrib/json-merger
json_merger/config.py
DictMergerOps.keep_longest
def keep_longest(head, update, down_path): """Keep longest field among `head` and `update`. """ if update is None: return 'f' if head is None: return 's' return 'f' if len(head) >= len(update) else 's'
python
def keep_longest(head, update, down_path): """Keep longest field among `head` and `update`. """ if update is None: return 'f' if head is None: return 's' return 'f' if len(head) >= len(update) else 's'
[ "def", "keep_longest", "(", "head", ",", "update", ",", "down_path", ")", ":", "if", "update", "is", "None", ":", "return", "'f'", "if", "head", "is", "None", ":", "return", "'s'", "return", "'f'", "if", "len", "(", "head", ")", ">=", "len", "(", "...
Keep longest field among `head` and `update`.
[ "Keep", "longest", "field", "among", "head", "and", "update", "." ]
adc6d372da018427e1db7b92424d3471e01a4118
https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/config.py#L40-L48
train
robinandeer/puzzle
puzzle/plugins/sql/mixins/actions/comment.py
CommentActions.comments
def comments(self, case_id=None, variant_id=None, username=None): """Return comments for a case or variant. Args: case_id (str): id for a related case variant_id (Optional[str]): id for a related variant """ logger.debug("Looking for comments") comment_ob...
python
def comments(self, case_id=None, variant_id=None, username=None): """Return comments for a case or variant. Args: case_id (str): id for a related case variant_id (Optional[str]): id for a related variant """ logger.debug("Looking for comments") comment_ob...
[ "def", "comments", "(", "self", ",", "case_id", "=", "None", ",", "variant_id", "=", "None", ",", "username", "=", "None", ")", ":", "logger", ".", "debug", "(", "\"Looking for comments\"", ")", "comment_objs", "=", "self", ".", "query", "(", "Comment", ...
Return comments for a case or variant. Args: case_id (str): id for a related case variant_id (Optional[str]): id for a related variant
[ "Return", "comments", "for", "a", "case", "or", "variant", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/plugins/sql/mixins/actions/comment.py#L10-L28
train
robinandeer/puzzle
puzzle/plugins/sql/mixins/actions/comment.py
CommentActions.add_comment
def add_comment(self, case_obj, text, variant_id=None, username=None): """Add a comment to a variant or a case""" comment = Comment( text=text, username=username or 'Anonymous', case=case_obj, # md5 sum of chrom, pos, ref, alt variant_id=varia...
python
def add_comment(self, case_obj, text, variant_id=None, username=None): """Add a comment to a variant or a case""" comment = Comment( text=text, username=username or 'Anonymous', case=case_obj, # md5 sum of chrom, pos, ref, alt variant_id=varia...
[ "def", "add_comment", "(", "self", ",", "case_obj", ",", "text", ",", "variant_id", "=", "None", ",", "username", "=", "None", ")", ":", "comment", "=", "Comment", "(", "text", "=", "text", ",", "username", "=", "username", "or", "'Anonymous'", ",", "c...
Add a comment to a variant or a case
[ "Add", "a", "comment", "to", "a", "variant", "or", "a", "case" ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/plugins/sql/mixins/actions/comment.py#L38-L50
train
robinandeer/puzzle
puzzle/plugins/vcf/mixins/variant_extras/consequences.py
ConsequenceExtras._add_consequences
def _add_consequences(self, variant_obj, raw_variant_line): """Add the consequences found for a variant Args: variant_obj (puzzle.models.Variant) raw_variant_line (str): A raw vcf variant line """ consequences = [] for consequence in SO_TERMS:...
python
def _add_consequences(self, variant_obj, raw_variant_line): """Add the consequences found for a variant Args: variant_obj (puzzle.models.Variant) raw_variant_line (str): A raw vcf variant line """ consequences = [] for consequence in SO_TERMS:...
[ "def", "_add_consequences", "(", "self", ",", "variant_obj", ",", "raw_variant_line", ")", ":", "consequences", "=", "[", "]", "for", "consequence", "in", "SO_TERMS", ":", "if", "consequence", "in", "raw_variant_line", ":", "consequences", ".", "append", "(", ...
Add the consequences found for a variant Args: variant_obj (puzzle.models.Variant) raw_variant_line (str): A raw vcf variant line
[ "Add", "the", "consequences", "found", "for", "a", "variant" ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/plugins/vcf/mixins/variant_extras/consequences.py#L10-L22
train
ellethee/argparseinator
argparseinator/utils.py
collect_appendvars
def collect_appendvars(ap_, cls): """ colleziona elementi per le liste. """ for key, value in cls.__dict__.items(): if key.startswith('appendvars_'): varname = key[11:] if varname not in ap_.appendvars: ap_.appendvars[varname] = [] if value not...
python
def collect_appendvars(ap_, cls): """ colleziona elementi per le liste. """ for key, value in cls.__dict__.items(): if key.startswith('appendvars_'): varname = key[11:] if varname not in ap_.appendvars: ap_.appendvars[varname] = [] if value not...
[ "def", "collect_appendvars", "(", "ap_", ",", "cls", ")", ":", "for", "key", ",", "value", "in", "cls", ".", "__dict__", ".", "items", "(", ")", ":", "if", "key", ".", "startswith", "(", "'appendvars_'", ")", ":", "varname", "=", "key", "[", "11", ...
colleziona elementi per le liste.
[ "colleziona", "elementi", "per", "le", "liste", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L88-L100
train
ellethee/argparseinator
argparseinator/utils.py
has_shared
def has_shared(arg, shared): """ Verifica se ci sono shared. """ try: if isinstance(shared, list): shared_arguments = shared else: shared_arguments = shared.__shared_arguments__ for idx, (args, kwargs) in enumerate(shared_arguments): arg_name =...
python
def has_shared(arg, shared): """ Verifica se ci sono shared. """ try: if isinstance(shared, list): shared_arguments = shared else: shared_arguments = shared.__shared_arguments__ for idx, (args, kwargs) in enumerate(shared_arguments): arg_name =...
[ "def", "has_shared", "(", "arg", ",", "shared", ")", ":", "try", ":", "if", "isinstance", "(", "shared", ",", "list", ")", ":", "shared_arguments", "=", "shared", "else", ":", "shared_arguments", "=", "shared", ".", "__shared_arguments__", "for", "idx", ",...
Verifica se ci sono shared.
[ "Verifica", "se", "ci", "sono", "shared", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L136-L153
train
ellethee/argparseinator
argparseinator/utils.py
has_argument
def has_argument(arg, arguments): """ Verifica se ci sono argument con la classe. """ try: if not isinstance(arguments, list): arguments = arguments.__arguments__ for idx, (args, kwargs) in enumerate(arguments): arg_name = kwargs.get( 'dest', args[...
python
def has_argument(arg, arguments): """ Verifica se ci sono argument con la classe. """ try: if not isinstance(arguments, list): arguments = arguments.__arguments__ for idx, (args, kwargs) in enumerate(arguments): arg_name = kwargs.get( 'dest', args[...
[ "def", "has_argument", "(", "arg", ",", "arguments", ")", ":", "try", ":", "if", "not", "isinstance", "(", "arguments", ",", "list", ")", ":", "arguments", "=", "arguments", ".", "__arguments__", "for", "idx", ",", "(", "args", ",", "kwargs", ")", "in"...
Verifica se ci sono argument con la classe.
[ "Verifica", "se", "ci", "sono", "argument", "con", "la", "classe", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L156-L171
train
ellethee/argparseinator
argparseinator/utils.py
get_functarguments
def get_functarguments(func): """ Recupera gli argomenti dalla funzione stessa. """ argspec = inspect.getargspec(func) if argspec.defaults is not None: args = argspec.args[:-len(argspec.defaults)] kwargs = dict( zip(argspec.args[-len(argspec.defaults):], argspec.defaults)...
python
def get_functarguments(func): """ Recupera gli argomenti dalla funzione stessa. """ argspec = inspect.getargspec(func) if argspec.defaults is not None: args = argspec.args[:-len(argspec.defaults)] kwargs = dict( zip(argspec.args[-len(argspec.defaults):], argspec.defaults)...
[ "def", "get_functarguments", "(", "func", ")", ":", "argspec", "=", "inspect", ".", "getargspec", "(", "func", ")", "if", "argspec", ".", "defaults", "is", "not", "None", ":", "args", "=", "argspec", ".", "args", "[", ":", "-", "len", "(", "argspec", ...
Recupera gli argomenti dalla funzione stessa.
[ "Recupera", "gli", "argomenti", "dalla", "funzione", "stessa", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L174-L215
train
ellethee/argparseinator
argparseinator/utils.py
get_parser
def get_parser(func, parent): """ Imposta il parser. """ parser = parent.add_parser(func.__cmd_name__, help=func.__doc__) for args, kwargs in func.__arguments__: parser.add_argument(*args, **kwargs) return parser
python
def get_parser(func, parent): """ Imposta il parser. """ parser = parent.add_parser(func.__cmd_name__, help=func.__doc__) for args, kwargs in func.__arguments__: parser.add_argument(*args, **kwargs) return parser
[ "def", "get_parser", "(", "func", ",", "parent", ")", ":", "parser", "=", "parent", ".", "add_parser", "(", "func", ".", "__cmd_name__", ",", "help", "=", "func", ".", "__doc__", ")", "for", "args", ",", "kwargs", "in", "func", ".", "__arguments__", ":...
Imposta il parser.
[ "Imposta", "il", "parser", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L218-L225
train
ellethee/argparseinator
argparseinator/utils.py
get_shared
def get_shared(func): """ return shared. """ shared = [] if not hasattr(func, '__cls__'): return shared if not hasattr(func.__cls__, '__shared_arguments__'): return shared if hasattr(func, '__no_share__'): if func.__no_share__ is True: return shared ...
python
def get_shared(func): """ return shared. """ shared = [] if not hasattr(func, '__cls__'): return shared if not hasattr(func.__cls__, '__shared_arguments__'): return shared if hasattr(func, '__no_share__'): if func.__no_share__ is True: return shared ...
[ "def", "get_shared", "(", "func", ")", ":", "shared", "=", "[", "]", "if", "not", "hasattr", "(", "func", ",", "'__cls__'", ")", ":", "return", "shared", "if", "not", "hasattr", "(", "func", ".", "__cls__", ",", "'__shared_arguments__'", ")", ":", "ret...
return shared.
[ "return", "shared", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L228-L247
train
ellethee/argparseinator
argparseinator/utils.py
set_subcommands
def set_subcommands(func, parser): """ Set subcommands. """ if hasattr(func, '__subcommands__') and func.__subcommands__: sub_parser = parser.add_subparsers( title=SUBCOMMANDS_LIST_TITLE, dest='subcommand', description=SUBCOMMANDS_LIST_DESCRIPTION.format( ...
python
def set_subcommands(func, parser): """ Set subcommands. """ if hasattr(func, '__subcommands__') and func.__subcommands__: sub_parser = parser.add_subparsers( title=SUBCOMMANDS_LIST_TITLE, dest='subcommand', description=SUBCOMMANDS_LIST_DESCRIPTION.format( ...
[ "def", "set_subcommands", "(", "func", ",", "parser", ")", ":", "if", "hasattr", "(", "func", ",", "'__subcommands__'", ")", "and", "func", ".", "__subcommands__", ":", "sub_parser", "=", "parser", ".", "add_subparsers", "(", "title", "=", "SUBCOMMANDS_LIST_TI...
Set subcommands.
[ "Set", "subcommands", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L250-L266
train
ellethee/argparseinator
argparseinator/utils.py
check_help
def check_help(): """ check know args in argv. """ # know arguments know = set(('-h', '--help', '-v', '--version')) # arguments args = set(sys.argv[1:]) # returns True if there is at least one known argument in arguments return len(know.intersection(args)) > 0
python
def check_help(): """ check know args in argv. """ # know arguments know = set(('-h', '--help', '-v', '--version')) # arguments args = set(sys.argv[1:]) # returns True if there is at least one known argument in arguments return len(know.intersection(args)) > 0
[ "def", "check_help", "(", ")", ":", "# know arguments", "know", "=", "set", "(", "(", "'-h'", ",", "'--help'", ",", "'-v'", ",", "'--version'", ")", ")", "# arguments", "args", "=", "set", "(", "sys", ".", "argv", "[", "1", ":", "]", ")", "# returns ...
check know args in argv.
[ "check", "know", "args", "in", "argv", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/argparseinator/utils.py#L269-L278
train
ldomic/lintools
lintools/lintools.py
Lintools.analysis_of_prot_lig_interactions
def analysis_of_prot_lig_interactions(self): """ The classes and function that deal with protein-ligand interaction analysis. """ self.hbonds = HBonds(self.topol_data,self.trajectory,self.start,self.end,self.skip,self.analysis_cutoff,distance=3) self.pistacking = PiStacking(self....
python
def analysis_of_prot_lig_interactions(self): """ The classes and function that deal with protein-ligand interaction analysis. """ self.hbonds = HBonds(self.topol_data,self.trajectory,self.start,self.end,self.skip,self.analysis_cutoff,distance=3) self.pistacking = PiStacking(self....
[ "def", "analysis_of_prot_lig_interactions", "(", "self", ")", ":", "self", ".", "hbonds", "=", "HBonds", "(", "self", ".", "topol_data", ",", "self", ".", "trajectory", ",", "self", ".", "start", ",", "self", ".", "end", ",", "self", ".", "skip", ",", ...
The classes and function that deal with protein-ligand interaction analysis.
[ "The", "classes", "and", "function", "that", "deal", "with", "protein", "-", "ligand", "interaction", "analysis", "." ]
d825a4a7b35f3f857d3b81b46c9aee72b0ec697a
https://github.com/ldomic/lintools/blob/d825a4a7b35f3f857d3b81b46c9aee72b0ec697a/lintools/lintools.py#L87-L97
train
ldomic/lintools
lintools/lintools.py
Lintools.save_files
def save_files(self): """Saves all output from LINTools run in a single directory named after the output name.""" while True: try: os.mkdir(self.output_name) except Exception as e: self.output_name = raw_input("This directory already exists - pleas...
python
def save_files(self): """Saves all output from LINTools run in a single directory named after the output name.""" while True: try: os.mkdir(self.output_name) except Exception as e: self.output_name = raw_input("This directory already exists - pleas...
[ "def", "save_files", "(", "self", ")", ":", "while", "True", ":", "try", ":", "os", ".", "mkdir", "(", "self", ".", "output_name", ")", "except", "Exception", "as", "e", ":", "self", ".", "output_name", "=", "raw_input", "(", "\"This directory already exis...
Saves all output from LINTools run in a single directory named after the output name.
[ "Saves", "all", "output", "from", "LINTools", "run", "in", "a", "single", "directory", "named", "after", "the", "output", "name", "." ]
d825a4a7b35f3f857d3b81b46c9aee72b0ec697a
https://github.com/ldomic/lintools/blob/d825a4a7b35f3f857d3b81b46c9aee72b0ec697a/lintools/lintools.py#L120-L130
train
ldomic/lintools
lintools/lintools.py
Lintools.remove_files
def remove_files(self): """Removes intermediate files.""" file_list = ["molecule.svg","lig.pdb","HIS.pdb","PHE.pdb","TRP.pdb","TYR.pdb","lig.mol","test.xtc"] for residue in self.topol_data.dict_of_plotted_res.keys(): file_list.append(residue[1]+residue[2]+".svg") for f in fil...
python
def remove_files(self): """Removes intermediate files.""" file_list = ["molecule.svg","lig.pdb","HIS.pdb","PHE.pdb","TRP.pdb","TYR.pdb","lig.mol","test.xtc"] for residue in self.topol_data.dict_of_plotted_res.keys(): file_list.append(residue[1]+residue[2]+".svg") for f in fil...
[ "def", "remove_files", "(", "self", ")", ":", "file_list", "=", "[", "\"molecule.svg\"", ",", "\"lig.pdb\"", ",", "\"HIS.pdb\"", ",", "\"PHE.pdb\"", ",", "\"TRP.pdb\"", ",", "\"TYR.pdb\"", ",", "\"lig.mol\"", ",", "\"test.xtc\"", "]", "for", "residue", "in", "...
Removes intermediate files.
[ "Removes", "intermediate", "files", "." ]
d825a4a7b35f3f857d3b81b46c9aee72b0ec697a
https://github.com/ldomic/lintools/blob/d825a4a7b35f3f857d3b81b46c9aee72b0ec697a/lintools/lintools.py#L162-L169
train
MonsieurV/PiPocketGeiger
PiPocketGeiger/__init__.py
RadiationWatch.setup
def setup(self): """Initialize the driver by setting up GPIO interrupts and periodic statistics processing. """ # Initialize the statistics variables. self.radiation_count = 0 self.noise_count = 0 self.count = 0 # Initialize count_history[]. self.count_his...
python
def setup(self): """Initialize the driver by setting up GPIO interrupts and periodic statistics processing. """ # Initialize the statistics variables. self.radiation_count = 0 self.noise_count = 0 self.count = 0 # Initialize count_history[]. self.count_his...
[ "def", "setup", "(", "self", ")", ":", "# Initialize the statistics variables.", "self", ".", "radiation_count", "=", "0", "self", ".", "noise_count", "=", "0", "self", ".", "count", "=", "0", "# Initialize count_history[].", "self", ".", "count_history", "=", "...
Initialize the driver by setting up GPIO interrupts and periodic statistics processing.
[ "Initialize", "the", "driver", "by", "setting", "up", "GPIO", "interrupts", "and", "periodic", "statistics", "processing", "." ]
b0e7c303df46deeea3715fb8da3ebbefaf660f91
https://github.com/MonsieurV/PiPocketGeiger/blob/b0e7c303df46deeea3715fb8da3ebbefaf660f91/PiPocketGeiger/__init__.py#L91-L115
train
robinandeer/puzzle
puzzle/cli/load.py
load
def load(ctx, variant_source, family_file, family_type, root): """ Load a variant source into the database. If no database was found run puzzle init first. 1. VCF: If a vcf file is used it can be loaded with a ped file 2. GEMINI: Ped information will be retreived from the gemini db """ roo...
python
def load(ctx, variant_source, family_file, family_type, root): """ Load a variant source into the database. If no database was found run puzzle init first. 1. VCF: If a vcf file is used it can be loaded with a ped file 2. GEMINI: Ped information will be retreived from the gemini db """ roo...
[ "def", "load", "(", "ctx", ",", "variant_source", ",", "family_file", ",", "family_type", ",", "root", ")", ":", "root", "=", "root", "or", "ctx", ".", "obj", ".", "get", "(", "'root'", ")", "or", "os", ".", "path", ".", "expanduser", "(", "\"~/.puzz...
Load a variant source into the database. If no database was found run puzzle init first. 1. VCF: If a vcf file is used it can be loaded with a ped file 2. GEMINI: Ped information will be retreived from the gemini db
[ "Load", "a", "variant", "source", "into", "the", "database", "." ]
9476f05b416d3a5135d25492cb31411fdf831c58
https://github.com/robinandeer/puzzle/blob/9476f05b416d3a5135d25492cb31411fdf831c58/puzzle/cli/load.py#L30-L97
train
basecrm/basecrm-python
basecrm/services.py
AssociatedContactsService.list
def list(self, deal_id, **params): """ Retrieve deal's associated contacts Returns all deal associated contacts :calls: ``get /deals/{deal_id}/associated_contacts`` :param int deal_id: Unique identifier of a Deal. :param dict params: (optional) Search options. :...
python
def list(self, deal_id, **params): """ Retrieve deal's associated contacts Returns all deal associated contacts :calls: ``get /deals/{deal_id}/associated_contacts`` :param int deal_id: Unique identifier of a Deal. :param dict params: (optional) Search options. :...
[ "def", "list", "(", "self", ",", "deal_id", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "associated_contacts", "=", "self", ".", "http_client", ".", "get", "(", "\"/deals/{deal_id}/associated_contacts\"", ".", "format", "(", "deal_id", "=", "dea...
Retrieve deal's associated contacts Returns all deal associated contacts :calls: ``get /deals/{deal_id}/associated_contacts`` :param int deal_id: Unique identifier of a Deal. :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-sty...
[ "Retrieve", "deal", "s", "associated", "contacts" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L65-L79
train
basecrm/basecrm-python
basecrm/services.py
AssociatedContactsService.create
def create(self, deal_id, *args, **kwargs): """ Create an associated contact Creates a deal's associated contact and its role If the specified deal or contact does not exist, the request will return an error :calls: ``post /deals/{deal_id}/associated_contacts`` :param i...
python
def create(self, deal_id, *args, **kwargs): """ Create an associated contact Creates a deal's associated contact and its role If the specified deal or contact does not exist, the request will return an error :calls: ``post /deals/{deal_id}/associated_contacts`` :param i...
[ "def", "create", "(", "self", ",", "deal_id", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "if", "not", "args", "and", "not", "kwargs", ":", "raise", "Exception", "(", "'attributes for AssociatedContact are missing'", ")", "attributes", "=", "args", ...
Create an associated contact Creates a deal's associated contact and its role If the specified deal or contact does not exist, the request will return an error :calls: ``post /deals/{deal_id}/associated_contacts`` :param int deal_id: Unique identifier of a Deal. :param tuple *a...
[ "Create", "an", "associated", "contact" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L81-L103
train
basecrm/basecrm-python
basecrm/services.py
AssociatedContactsService.destroy
def destroy(self, deal_id, contact_id) : """ Remove an associated contact Remove a deal's associated contact If a deal with the supplied unique identifier does not exist, it returns an error This operation cannot be undone :calls: ``delete /deals/{deal_id}/associated_co...
python
def destroy(self, deal_id, contact_id) : """ Remove an associated contact Remove a deal's associated contact If a deal with the supplied unique identifier does not exist, it returns an error This operation cannot be undone :calls: ``delete /deals/{deal_id}/associated_co...
[ "def", "destroy", "(", "self", ",", "deal_id", ",", "contact_id", ")", ":", "status_code", ",", "_", ",", "_", "=", "self", ".", "http_client", ".", "delete", "(", "\"/deals/{deal_id}/associated_contacts/{contact_id}\"", ".", "format", "(", "deal_id", "=", "de...
Remove an associated contact Remove a deal's associated contact If a deal with the supplied unique identifier does not exist, it returns an error This operation cannot be undone :calls: ``delete /deals/{deal_id}/associated_contacts/{contact_id}`` :param int deal_id: Unique iden...
[ "Remove", "an", "associated", "contact" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L105-L121
train
basecrm/basecrm-python
basecrm/services.py
ContactsService.list
def list(self, **params): """ Retrieve all contacts Returns all contacts available to the user according to the parameters provided :calls: ``get /contacts`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access...
python
def list(self, **params): """ Retrieve all contacts Returns all contacts available to the user according to the parameters provided :calls: ``get /contacts`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "contacts", "=", "self", ".", "http_client", ".", "get", "(", "\"/contacts\"", ",", "params", "=", "params", ")", "return", "contacts" ]
Retrieve all contacts Returns all contacts available to the user according to the parameters provided :calls: ``get /contacts`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Contacts. ...
[ "Retrieve", "all", "contacts" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L148-L161
train
basecrm/basecrm-python
basecrm/services.py
ContactsService.retrieve
def retrieve(self, id) : """ Retrieve a single contact Returns a single contact available to the user, according to the unique contact ID provided If the specified contact does not exist, the request will return an error :calls: ``get /contacts/{id}`` :param int id: Uni...
python
def retrieve(self, id) : """ Retrieve a single contact Returns a single contact available to the user, according to the unique contact ID provided If the specified contact does not exist, the request will return an error :calls: ``get /contacts/{id}`` :param int id: Uni...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "contact", "=", "self", ".", "http_client", ".", "get", "(", "\"/contacts/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "contact" ]
Retrieve a single contact Returns a single contact available to the user, according to the unique contact ID provided If the specified contact does not exist, the request will return an error :calls: ``get /contacts/{id}`` :param int id: Unique identifier of a Contact. :return:...
[ "Retrieve", "a", "single", "contact" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L186-L200
train
basecrm/basecrm-python
basecrm/services.py
DealsService.list
def list(self, **params): """ Retrieve all deals Returns all deals available to the user according to the parameters provided :calls: ``get /deals`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which r...
python
def list(self, **params): """ Retrieve all deals Returns all deals available to the user according to the parameters provided :calls: ``get /deals`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which r...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "deals", "=", "self", ".", "http_client", ".", "get", "(", "\"/deals\"", ",", "params", "=", "params", ")", "for", "deal", "in", "deals", ":", "deal", "[", "'value...
Retrieve all deals Returns all deals available to the user according to the parameters provided :calls: ``get /deals`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Deals. :rtype: ...
[ "Retrieve", "all", "deals" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L270-L286
train
basecrm/basecrm-python
basecrm/services.py
DealsService.create
def create(self, *args, **kwargs): """ Create a deal Create a new deal :calls: ``post /deals`` :param tuple *args: (optional) Single object representing Deal resource. :param dict **kwargs: (optional) Deal attributes. :return: Dictionary that support attriubte-s...
python
def create(self, *args, **kwargs): """ Create a deal Create a new deal :calls: ``post /deals`` :param tuple *args: (optional) Single object representing Deal resource. :param dict **kwargs: (optional) Deal attributes. :return: Dictionary that support attriubte-s...
[ "def", "create", "(", "self", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "if", "not", "args", "and", "not", "kwargs", ":", "raise", "Exception", "(", "'attributes for Deal are missing'", ")", "attributes", "=", "args", "[", "0", "]", "if", "a...
Create a deal Create a new deal :calls: ``post /deals`` :param tuple *args: (optional) Single object representing Deal resource. :param dict **kwargs: (optional) Deal attributes. :return: Dictionary that support attriubte-style access and represents newely created Deal resource...
[ "Create", "a", "deal" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L288-L311
train
basecrm/basecrm-python
basecrm/services.py
DealsService.retrieve
def retrieve(self, id) : """ Retrieve a single deal Returns a single deal available to the user, according to the unique deal ID provided If the specified deal does not exist, the request will return an error :calls: ``get /deals/{id}`` :param int id: Unique identifier ...
python
def retrieve(self, id) : """ Retrieve a single deal Returns a single deal available to the user, according to the unique deal ID provided If the specified deal does not exist, the request will return an error :calls: ``get /deals/{id}`` :param int id: Unique identifier ...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "deal", "=", "self", ".", "http_client", ".", "get", "(", "\"/deals/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "deal", "[", "\"value\"", "]", "=", "Coercion", "...
Retrieve a single deal Returns a single deal available to the user, according to the unique deal ID provided If the specified deal does not exist, the request will return an error :calls: ``get /deals/{id}`` :param int id: Unique identifier of a Deal. :return: Dictionary that s...
[ "Retrieve", "a", "single", "deal" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L313-L328
train
basecrm/basecrm-python
basecrm/services.py
DealsService.update
def update(self, id, *args, **kwargs): """ Update a deal Updates deal information If the specified deal does not exist, the request will return an error <figure class="notice"> In order to modify tags used on a record, you need to supply the entire set `tags` are...
python
def update(self, id, *args, **kwargs): """ Update a deal Updates deal information If the specified deal does not exist, the request will return an error <figure class="notice"> In order to modify tags used on a record, you need to supply the entire set `tags` are...
[ "def", "update", "(", "self", ",", "id", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "if", "not", "args", "and", "not", "kwargs", ":", "raise", "Exception", "(", "'attributes for Deal are missing'", ")", "attributes", "=", "args", "[", "0", "]...
Update a deal Updates deal information If the specified deal does not exist, the request will return an error <figure class="notice"> In order to modify tags used on a record, you need to supply the entire set `tags` are replaced every time they are used in a request </f...
[ "Update", "a", "deal" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L330-L359
train
basecrm/basecrm-python
basecrm/services.py
DealSourcesService.update
def update(self, id, *args, **kwargs): """ Update a source Updates source information If the specified source does not exist, the request will return an error <figure class="notice"> If you want to update a source, you **must** make sure source's name is unique <...
python
def update(self, id, *args, **kwargs): """ Update a source Updates source information If the specified source does not exist, the request will return an error <figure class="notice"> If you want to update a source, you **must** make sure source's name is unique <...
[ "def", "update", "(", "self", ",", "id", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "if", "not", "args", "and", "not", "kwargs", ":", "raise", "Exception", "(", "'attributes for DealSource are missing'", ")", "attributes", "=", "args", "[", "0"...
Update a source Updates source information If the specified source does not exist, the request will return an error <figure class="notice"> If you want to update a source, you **must** make sure source's name is unique </figure> :calls: ``put /deal_sources/{id}`` ...
[ "Update", "a", "source" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L459-L484
train
basecrm/basecrm-python
basecrm/services.py
DealUnqualifiedReasonsService.list
def list(self, **params): """ Retrieve all deal unqualified reasons Returns all deal unqualified reasons available to the user according to the parameters provided :calls: ``get /deal_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of ...
python
def list(self, **params): """ Retrieve all deal unqualified reasons Returns all deal unqualified reasons available to the user according to the parameters provided :calls: ``get /deal_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of ...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "deal_unqualified_reasons", "=", "self", ".", "http_client", ".", "get", "(", "\"/deal_unqualified_reasons\"", ",", "params", "=", "params", ")", "return", "deal_unqualified_r...
Retrieve all deal unqualified reasons Returns all deal unqualified reasons available to the user according to the parameters provided :calls: ``get /deal_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style acce...
[ "Retrieve", "all", "deal", "unqualified", "reasons" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L528-L541
train
basecrm/basecrm-python
basecrm/services.py
DealUnqualifiedReasonsService.retrieve
def retrieve(self, id) : """ Retrieve a single deal unqualified reason Returns a single deal unqualified reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /deal_unqualified_reas...
python
def retrieve(self, id) : """ Retrieve a single deal unqualified reason Returns a single deal unqualified reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /deal_unqualified_reas...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "deal_unqualified_reason", "=", "self", ".", "http_client", ".", "get", "(", "\"/deal_unqualified_reasons/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "deal_unqua...
Retrieve a single deal unqualified reason Returns a single deal unqualified reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /deal_unqualified_reasons/{id}`` :param int id: Unique iden...
[ "Retrieve", "a", "single", "deal", "unqualified", "reason" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L568-L582
train
basecrm/basecrm-python
basecrm/services.py
LeadsService.list
def list(self, **params): """ Retrieve all leads Returns all leads available to the user, according to the parameters provided :calls: ``get /leads`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which ...
python
def list(self, **params): """ Retrieve all leads Returns all leads available to the user, according to the parameters provided :calls: ``get /leads`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which ...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "leads", "=", "self", ".", "http_client", ".", "get", "(", "\"/leads\"", ",", "params", "=", "params", ")", "return", "leads" ]
Retrieve all leads Returns all leads available to the user, according to the parameters provided :calls: ``get /leads`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Leads. :rtype:...
[ "Retrieve", "all", "leads" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L653-L666
train
basecrm/basecrm-python
basecrm/services.py
LeadsService.retrieve
def retrieve(self, id) : """ Retrieve a single lead Returns a single lead available to the user, according to the unique lead ID provided If the specified lead does not exist, this query returns an error :calls: ``get /leads/{id}`` :param int id: Unique identifier of a ...
python
def retrieve(self, id) : """ Retrieve a single lead Returns a single lead available to the user, according to the unique lead ID provided If the specified lead does not exist, this query returns an error :calls: ``get /leads/{id}`` :param int id: Unique identifier of a ...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "lead", "=", "self", ".", "http_client", ".", "get", "(", "\"/leads/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "lead" ]
Retrieve a single lead Returns a single lead available to the user, according to the unique lead ID provided If the specified lead does not exist, this query returns an error :calls: ``get /leads/{id}`` :param int id: Unique identifier of a Lead. :return: Dictionary that suppor...
[ "Retrieve", "a", "single", "lead" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L691-L705
train
basecrm/basecrm-python
basecrm/services.py
LeadUnqualifiedReasonsService.list
def list(self, **params): """ Retrieve all lead unqualified reasons Returns all lead unqualified reasons available to the user according to the parameters provided :calls: ``get /lead_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of ...
python
def list(self, **params): """ Retrieve all lead unqualified reasons Returns all lead unqualified reasons available to the user according to the parameters provided :calls: ``get /lead_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of ...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "lead_unqualified_reasons", "=", "self", ".", "http_client", ".", "get", "(", "\"/lead_unqualified_reasons\"", ",", "params", "=", "params", ")", "return", "lead_unqualified_r...
Retrieve all lead unqualified reasons Returns all lead unqualified reasons available to the user according to the parameters provided :calls: ``get /lead_unqualified_reasons`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style acce...
[ "Retrieve", "all", "lead", "unqualified", "reasons" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L898-L911
train
basecrm/basecrm-python
basecrm/services.py
LineItemsService.list
def list(self, order_id, **params): """ Retrieve order's line items Returns all line items associated to order :calls: ``get /orders/{order_id}/line_items`` :param int order_id: Unique identifier of a Order. :param dict params: (optional) Search options. :return...
python
def list(self, order_id, **params): """ Retrieve order's line items Returns all line items associated to order :calls: ``get /orders/{order_id}/line_items`` :param int order_id: Unique identifier of a Order. :param dict params: (optional) Search options. :return...
[ "def", "list", "(", "self", ",", "order_id", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "line_items", "=", "self", ".", "http_client", ".", "get", "(", "\"/orders/{order_id}/line_items\"", ".", "format", "(", "order_id", "=", "order_id", ")",...
Retrieve order's line items Returns all line items associated to order :calls: ``get /orders/{order_id}/line_items`` :param int order_id: Unique identifier of a Order. :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style acce...
[ "Retrieve", "order", "s", "line", "items" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L938-L952
train
basecrm/basecrm-python
basecrm/services.py
LineItemsService.retrieve
def retrieve(self, order_id, id) : """ Retrieve a single line item Returns a single line item of an order, according to the unique line item ID provided :calls: ``get /orders/{order_id}/line_items/{id}`` :param int order_id: Unique identifier of a Order. :param int id: ...
python
def retrieve(self, order_id, id) : """ Retrieve a single line item Returns a single line item of an order, according to the unique line item ID provided :calls: ``get /orders/{order_id}/line_items/{id}`` :param int order_id: Unique identifier of a Order. :param int id: ...
[ "def", "retrieve", "(", "self", ",", "order_id", ",", "id", ")", ":", "_", ",", "_", ",", "line_item", "=", "self", ".", "http_client", ".", "get", "(", "\"/orders/{order_id}/line_items/{id}\"", ".", "format", "(", "order_id", "=", "order_id", ",", "id", ...
Retrieve a single line item Returns a single line item of an order, according to the unique line item ID provided :calls: ``get /orders/{order_id}/line_items/{id}`` :param int order_id: Unique identifier of a Order. :param int id: Unique identifier of a LineItem. :return: Dicti...
[ "Retrieve", "a", "single", "line", "item" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L979-L993
train
basecrm/basecrm-python
basecrm/services.py
LossReasonsService.list
def list(self, **params): """ Retrieve all reasons Returns all deal loss reasons available to the user according to the parameters provided :calls: ``get /loss_reasons`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-...
python
def list(self, **params): """ Retrieve all reasons Returns all deal loss reasons available to the user according to the parameters provided :calls: ``get /loss_reasons`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "loss_reasons", "=", "self", ".", "http_client", ".", "get", "(", "\"/loss_reasons\"", ",", "params", "=", "params", ")", "return", "loss_reasons" ]
Retrieve all reasons Returns all deal loss reasons available to the user according to the parameters provided :calls: ``get /loss_reasons`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Lo...
[ "Retrieve", "all", "reasons" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1037-L1050
train
basecrm/basecrm-python
basecrm/services.py
LossReasonsService.retrieve
def retrieve(self, id) : """ Retrieve a single reason Returns a single loss reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /loss_reasons/{id}`` :param int id: Unique ...
python
def retrieve(self, id) : """ Retrieve a single reason Returns a single loss reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /loss_reasons/{id}`` :param int id: Unique ...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "loss_reason", "=", "self", ".", "http_client", ".", "get", "(", "\"/loss_reasons/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "loss_reason" ]
Retrieve a single reason Returns a single loss reason available to the user by the provided id If a loss reason with the supplied unique identifier does not exist, it returns an error :calls: ``get /loss_reasons/{id}`` :param int id: Unique identifier of a LossReason. :return: ...
[ "Retrieve", "a", "single", "reason" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1077-L1091
train
basecrm/basecrm-python
basecrm/services.py
NotesService.list
def list(self, **params): """ Retrieve all notes Returns all notes available to the user, according to the parameters provided :calls: ``get /notes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which ...
python
def list(self, **params): """ Retrieve all notes Returns all notes available to the user, according to the parameters provided :calls: ``get /notes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which ...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "notes", "=", "self", ".", "http_client", ".", "get", "(", "\"/notes\"", ",", "params", "=", "params", ")", "return", "notes" ]
Retrieve all notes Returns all notes available to the user, according to the parameters provided :calls: ``get /notes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Notes. :rtype:...
[ "Retrieve", "all", "notes" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1162-L1175
train
basecrm/basecrm-python
basecrm/services.py
NotesService.retrieve
def retrieve(self, id) : """ Retrieve a single note Returns a single note available to the user, according to the unique note ID provided If the note ID does not exist, this request will return an error :calls: ``get /notes/{id}`` :param int id: Unique identifier of a N...
python
def retrieve(self, id) : """ Retrieve a single note Returns a single note available to the user, according to the unique note ID provided If the note ID does not exist, this request will return an error :calls: ``get /notes/{id}`` :param int id: Unique identifier of a N...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "note", "=", "self", ".", "http_client", ".", "get", "(", "\"/notes/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "note" ]
Retrieve a single note Returns a single note available to the user, according to the unique note ID provided If the note ID does not exist, this request will return an error :calls: ``get /notes/{id}`` :param int id: Unique identifier of a Note. :return: Dictionary that support...
[ "Retrieve", "a", "single", "note" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1202-L1216
train
basecrm/basecrm-python
basecrm/services.py
OrdersService.list
def list(self, **params): """ Retrieve all orders Returns all orders available to the user according to the parameters provided :calls: ``get /orders`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, whic...
python
def list(self, **params): """ Retrieve all orders Returns all orders available to the user according to the parameters provided :calls: ``get /orders`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, whic...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "orders", "=", "self", ".", "http_client", ".", "get", "(", "\"/orders\"", ",", "params", "=", "params", ")", "return", "orders" ]
Retrieve all orders Returns all orders available to the user according to the parameters provided :calls: ``get /orders`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Orders. :rty...
[ "Retrieve", "all", "orders" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1284-L1297
train
basecrm/basecrm-python
basecrm/services.py
OrdersService.retrieve
def retrieve(self, id) : """ Retrieve a single order Returns a single order available to the user, according to the unique order ID provided If the specified order does not exist, the request will return an error :calls: ``get /orders/{id}`` :param int id: Unique identi...
python
def retrieve(self, id) : """ Retrieve a single order Returns a single order available to the user, according to the unique order ID provided If the specified order does not exist, the request will return an error :calls: ``get /orders/{id}`` :param int id: Unique identi...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "order", "=", "self", ".", "http_client", ".", "get", "(", "\"/orders/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "order" ]
Retrieve a single order Returns a single order available to the user, according to the unique order ID provided If the specified order does not exist, the request will return an error :calls: ``get /orders/{id}`` :param int id: Unique identifier of a Order. :return: Dictionary ...
[ "Retrieve", "a", "single", "order" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1323-L1337
train
basecrm/basecrm-python
basecrm/services.py
PipelinesService.list
def list(self, **params): """ Retrieve all pipelines Returns all pipelines available to the user, according to the parameters provided :calls: ``get /pipelines`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style ac...
python
def list(self, **params): """ Retrieve all pipelines Returns all pipelines available to the user, according to the parameters provided :calls: ``get /pipelines`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style ac...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "pipelines", "=", "self", ".", "http_client", ".", "get", "(", "\"/pipelines\"", ",", "params", "=", "params", ")", "return", "pipelines" ]
Retrieve all pipelines Returns all pipelines available to the user, according to the parameters provided :calls: ``get /pipelines`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Pipelines....
[ "Retrieve", "all", "pipelines" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1401-L1414
train
basecrm/basecrm-python
basecrm/services.py
ProductsService.list
def list(self, **params): """ Retrieve all products Returns all products available to the user according to the parameters provided :calls: ``get /products`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access...
python
def list(self, **params): """ Retrieve all products Returns all products available to the user according to the parameters provided :calls: ``get /products`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "products", "=", "self", ".", "http_client", ".", "get", "(", "\"/products\"", ",", "params", "=", "params", ")", "return", "products" ]
Retrieve all products Returns all products available to the user according to the parameters provided :calls: ``get /products`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Products. ...
[ "Retrieve", "all", "products" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1441-L1454
train
basecrm/basecrm-python
basecrm/services.py
ProductsService.retrieve
def retrieve(self, id) : """ Retrieve a single product Returns a single product, according to the unique product ID provided If the specified product does not exist, the request will return an error :calls: ``get /products/{id}`` :param int id: Unique identifier of a Pr...
python
def retrieve(self, id) : """ Retrieve a single product Returns a single product, according to the unique product ID provided If the specified product does not exist, the request will return an error :calls: ``get /products/{id}`` :param int id: Unique identifier of a Pr...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "product", "=", "self", ".", "http_client", ".", "get", "(", "\"/products/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "product" ]
Retrieve a single product Returns a single product, according to the unique product ID provided If the specified product does not exist, the request will return an error :calls: ``get /products/{id}`` :param int id: Unique identifier of a Product. :return: Dictionary that suppo...
[ "Retrieve", "a", "single", "product" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1478-L1492
train
basecrm/basecrm-python
basecrm/services.py
StagesService.list
def list(self, **params): """ Retrieve all stages Returns all stages available to the user, according to the parameters provided :calls: ``get /stages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, whi...
python
def list(self, **params): """ Retrieve all stages Returns all stages available to the user, according to the parameters provided :calls: ``get /stages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, whi...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "stages", "=", "self", ".", "http_client", ".", "get", "(", "\"/stages\"", ",", "params", "=", "params", ")", "return", "stages" ]
Retrieve all stages Returns all stages available to the user, according to the parameters provided :calls: ``get /stages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Stages. :rt...
[ "Retrieve", "all", "stages" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1686-L1699
train
basecrm/basecrm-python
basecrm/services.py
TagsService.list
def list(self, **params): """ Retrieve all tags Returns all tags available to the user, according to the parameters provided :calls: ``get /tags`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which rep...
python
def list(self, **params): """ Retrieve all tags Returns all tags available to the user, according to the parameters provided :calls: ``get /tags`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which rep...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "tags", "=", "self", ".", "http_client", ".", "get", "(", "\"/tags\"", ",", "params", "=", "params", ")", "return", "tags" ]
Retrieve all tags Returns all tags available to the user, according to the parameters provided :calls: ``get /tags`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Tags. :rtype: lis...
[ "Retrieve", "all", "tags" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1726-L1739
train
basecrm/basecrm-python
basecrm/services.py
TagsService.retrieve
def retrieve(self, id) : """ Retrieve a single tag Returns a single tag available to the user according to the unique ID provided If the specified tag does not exist, this query will return an error :calls: ``get /tags/{id}`` :param int id: Unique identifier of a Tag. ...
python
def retrieve(self, id) : """ Retrieve a single tag Returns a single tag available to the user according to the unique ID provided If the specified tag does not exist, this query will return an error :calls: ``get /tags/{id}`` :param int id: Unique identifier of a Tag. ...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "tag", "=", "self", ".", "http_client", ".", "get", "(", "\"/tags/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "tag" ]
Retrieve a single tag Returns a single tag available to the user according to the unique ID provided If the specified tag does not exist, this query will return an error :calls: ``get /tags/{id}`` :param int id: Unique identifier of a Tag. :return: Dictionary that support attri...
[ "Retrieve", "a", "single", "tag" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1764-L1778
train
basecrm/basecrm-python
basecrm/services.py
TasksService.list
def list(self, **params): """ Retrieve all tasks Returns all tasks available to the user, according to the parameters provided If you ask for tasks without any parameter provided Base API will return you both **floating** and **related** tasks Although you can narrow the search ...
python
def list(self, **params): """ Retrieve all tasks Returns all tasks available to the user, according to the parameters provided If you ask for tasks without any parameter provided Base API will return you both **floating** and **related** tasks Although you can narrow the search ...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "tasks", "=", "self", ".", "http_client", ".", "get", "(", "\"/tasks\"", ",", "params", "=", "params", ")", "return", "tasks" ]
Retrieve all tasks Returns all tasks available to the user, according to the parameters provided If you ask for tasks without any parameter provided Base API will return you both **floating** and **related** tasks Although you can narrow the search set to either of them via query parameters ...
[ "Retrieve", "all", "tasks" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1848-L1863
train
basecrm/basecrm-python
basecrm/services.py
TasksService.retrieve
def retrieve(self, id) : """ Retrieve a single task Returns a single task available to the user according to the unique task ID provided If the specified task does not exist, this query will return an error :calls: ``get /tasks/{id}`` :param int id: Unique identifier of...
python
def retrieve(self, id) : """ Retrieve a single task Returns a single task available to the user according to the unique task ID provided If the specified task does not exist, this query will return an error :calls: ``get /tasks/{id}`` :param int id: Unique identifier of...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "task", "=", "self", ".", "http_client", ".", "get", "(", "\"/tasks/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "task" ]
Retrieve a single task Returns a single task available to the user according to the unique task ID provided If the specified task does not exist, this query will return an error :calls: ``get /tasks/{id}`` :param int id: Unique identifier of a Task. :return: Dictionary that sup...
[ "Retrieve", "a", "single", "task" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1891-L1905
train
basecrm/basecrm-python
basecrm/services.py
TextMessagesService.list
def list(self, **params): """ Retrieve text messages Returns Text Messages, according to the parameters provided :calls: ``get /text_messages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which repres...
python
def list(self, **params): """ Retrieve text messages Returns Text Messages, according to the parameters provided :calls: ``get /text_messages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which repres...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "text_messages", "=", "self", ".", "http_client", ".", "get", "(", "\"/text_messages\"", ",", "params", "=", "params", ")", "return", "text_messages" ]
Retrieve text messages Returns Text Messages, according to the parameters provided :calls: ``get /text_messages`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of TextMessages. :rtype...
[ "Retrieve", "text", "messages" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1969-L1982
train
basecrm/basecrm-python
basecrm/services.py
TextMessagesService.retrieve
def retrieve(self, id) : """ Retrieve a single text message Returns a single text message according to the unique ID provided If the specified user does not exist, this query returns an error :calls: ``get /text_messages/{id}`` :param int id: Unique identifier of a Tex...
python
def retrieve(self, id) : """ Retrieve a single text message Returns a single text message according to the unique ID provided If the specified user does not exist, this query returns an error :calls: ``get /text_messages/{id}`` :param int id: Unique identifier of a Tex...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "text_message", "=", "self", ".", "http_client", ".", "get", "(", "\"/text_messages/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "text_message" ]
Retrieve a single text message Returns a single text message according to the unique ID provided If the specified user does not exist, this query returns an error :calls: ``get /text_messages/{id}`` :param int id: Unique identifier of a TextMessage. :return: Dictionary that su...
[ "Retrieve", "a", "single", "text", "message" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L1984-L1998
train
basecrm/basecrm-python
basecrm/services.py
UsersService.list
def list(self, **params): """ Retrieve all users Returns all users, according to the parameters provided :calls: ``get /users`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection o...
python
def list(self, **params): """ Retrieve all users Returns all users, according to the parameters provided :calls: ``get /users`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection o...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "users", "=", "self", ".", "http_client", ".", "get", "(", "\"/users\"", ",", "params", "=", "params", ")", "return", "users" ]
Retrieve all users Returns all users, according to the parameters provided :calls: ``get /users`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of Users. :rtype: list
[ "Retrieve", "all", "users" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L2021-L2034
train
basecrm/basecrm-python
basecrm/services.py
UsersService.retrieve
def retrieve(self, id) : """ Retrieve a single user Returns a single user according to the unique user ID provided If the specified user does not exist, this query returns an error :calls: ``get /users/{id}`` :param int id: Unique identifier of a User. :return: ...
python
def retrieve(self, id) : """ Retrieve a single user Returns a single user according to the unique user ID provided If the specified user does not exist, this query returns an error :calls: ``get /users/{id}`` :param int id: Unique identifier of a User. :return: ...
[ "def", "retrieve", "(", "self", ",", "id", ")", ":", "_", ",", "_", ",", "user", "=", "self", ".", "http_client", ".", "get", "(", "\"/users/{id}\"", ".", "format", "(", "id", "=", "id", ")", ")", "return", "user" ]
Retrieve a single user Returns a single user according to the unique user ID provided If the specified user does not exist, this query returns an error :calls: ``get /users/{id}`` :param int id: Unique identifier of a User. :return: Dictionary that support attriubte-style acces...
[ "Retrieve", "a", "single", "user" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L2036-L2050
train
basecrm/basecrm-python
basecrm/services.py
VisitOutcomesService.list
def list(self, **params): """ Retrieve visit outcomes Returns Visit Outcomes, according to the parameters provided :calls: ``get /visit_outcomes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which rep...
python
def list(self, **params): """ Retrieve visit outcomes Returns Visit Outcomes, according to the parameters provided :calls: ``get /visit_outcomes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which rep...
[ "def", "list", "(", "self", ",", "*", "*", "params", ")", ":", "_", ",", "_", ",", "visit_outcomes", "=", "self", ".", "http_client", ".", "get", "(", "\"/visit_outcomes\"", ",", "params", "=", "params", ")", "return", "visit_outcomes" ]
Retrieve visit outcomes Returns Visit Outcomes, according to the parameters provided :calls: ``get /visit_outcomes`` :param dict params: (optional) Search options. :return: List of dictionaries that support attriubte-style access, which represent collection of VisitOutcomes. :r...
[ "Retrieve", "visit", "outcomes" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/services.py#L2122-L2135
train
jalmeroth/pymusiccast
pymusiccast/helpers.py
request
def request(url, *args, **kwargs): """Do the HTTP Request and return data""" method = kwargs.get('method', 'GET') timeout = kwargs.pop('timeout', 10) # hass default timeout req = requests.request(method, url, *args, timeout=timeout, **kwargs) data = req.json() _LOGGER.debug(json.dumps(data)) ...
python
def request(url, *args, **kwargs): """Do the HTTP Request and return data""" method = kwargs.get('method', 'GET') timeout = kwargs.pop('timeout', 10) # hass default timeout req = requests.request(method, url, *args, timeout=timeout, **kwargs) data = req.json() _LOGGER.debug(json.dumps(data)) ...
[ "def", "request", "(", "url", ",", "*", "args", ",", "*", "*", "kwargs", ")", ":", "method", "=", "kwargs", ".", "get", "(", "'method'", ",", "'GET'", ")", "timeout", "=", "kwargs", ".", "pop", "(", "'timeout'", ",", "10", ")", "# hass default timeou...
Do the HTTP Request and return data
[ "Do", "the", "HTTP", "Request", "and", "return", "data" ]
616379ae22d6b518c61042d58be6d18a46242168
https://github.com/jalmeroth/pymusiccast/blob/616379ae22d6b518c61042d58be6d18a46242168/pymusiccast/helpers.py#L10-L17
train
jalmeroth/pymusiccast
pymusiccast/helpers.py
message_worker
def message_worker(device): """Loop through messages and pass them on to right device""" _LOGGER.debug("Starting Worker Thread.") msg_q = device.messages while True: if not msg_q.empty(): message = msg_q.get() data = {} try: data = json.load...
python
def message_worker(device): """Loop through messages and pass them on to right device""" _LOGGER.debug("Starting Worker Thread.") msg_q = device.messages while True: if not msg_q.empty(): message = msg_q.get() data = {} try: data = json.load...
[ "def", "message_worker", "(", "device", ")", ":", "_LOGGER", ".", "debug", "(", "\"Starting Worker Thread.\"", ")", "msg_q", "=", "device", ".", "messages", "while", "True", ":", "if", "not", "msg_q", ".", "empty", "(", ")", ":", "message", "=", "msg_q", ...
Loop through messages and pass them on to right device
[ "Loop", "through", "messages", "and", "pass", "them", "on", "to", "right", "device" ]
616379ae22d6b518c61042d58be6d18a46242168
https://github.com/jalmeroth/pymusiccast/blob/616379ae22d6b518c61042d58be6d18a46242168/pymusiccast/helpers.py#L20-L44
train
jalmeroth/pymusiccast
pymusiccast/helpers.py
socket_worker
def socket_worker(sock, msg_q): """Socket Loop that fills message queue""" _LOGGER.debug("Starting Socket Thread.") while True: try: data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes except OSError as err: _LOGGER.error(err) else: _LO...
python
def socket_worker(sock, msg_q): """Socket Loop that fills message queue""" _LOGGER.debug("Starting Socket Thread.") while True: try: data, addr = sock.recvfrom(1024) # buffer size is 1024 bytes except OSError as err: _LOGGER.error(err) else: _LO...
[ "def", "socket_worker", "(", "sock", ",", "msg_q", ")", ":", "_LOGGER", ".", "debug", "(", "\"Starting Socket Thread.\"", ")", "while", "True", ":", "try", ":", "data", ",", "addr", "=", "sock", ".", "recvfrom", "(", "1024", ")", "# buffer size is 1024 bytes...
Socket Loop that fills message queue
[ "Socket", "Loop", "that", "fills", "message", "queue" ]
616379ae22d6b518c61042d58be6d18a46242168
https://github.com/jalmeroth/pymusiccast/blob/616379ae22d6b518c61042d58be6d18a46242168/pymusiccast/helpers.py#L47-L58
train
inveniosoftware-contrib/json-merger
json_merger/graph_builder.py
toposort
def toposort(graph, pick_first='head'): """Toplogically sorts a list match graph. Tries to perform a topological sort using as tiebreaker the pick_first argument. If the graph contains cycles, raise ValueError. """ in_deg = {} for node, next_nodes in six.iteritems(graph): for next_node ...
python
def toposort(graph, pick_first='head'): """Toplogically sorts a list match graph. Tries to perform a topological sort using as tiebreaker the pick_first argument. If the graph contains cycles, raise ValueError. """ in_deg = {} for node, next_nodes in six.iteritems(graph): for next_node ...
[ "def", "toposort", "(", "graph", ",", "pick_first", "=", "'head'", ")", ":", "in_deg", "=", "{", "}", "for", "node", ",", "next_nodes", "in", "six", ".", "iteritems", "(", "graph", ")", ":", "for", "next_node", "in", "[", "next_nodes", ".", "head_node"...
Toplogically sorts a list match graph. Tries to perform a topological sort using as tiebreaker the pick_first argument. If the graph contains cycles, raise ValueError.
[ "Toplogically", "sorts", "a", "list", "match", "graph", "." ]
adc6d372da018427e1db7b92424d3471e01a4118
https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/graph_builder.py#L231-L266
train
inveniosoftware-contrib/json-merger
json_merger/graph_builder.py
sort_cyclic_graph_best_effort
def sort_cyclic_graph_best_effort(graph, pick_first='head'): """Fallback for cases in which the graph has cycles.""" ordered = [] visited = set() # Go first on the pick_first chain then go back again on the others # that were not visited. Given the way the graph is built both chains # will alway...
python
def sort_cyclic_graph_best_effort(graph, pick_first='head'): """Fallback for cases in which the graph has cycles.""" ordered = [] visited = set() # Go first on the pick_first chain then go back again on the others # that were not visited. Given the way the graph is built both chains # will alway...
[ "def", "sort_cyclic_graph_best_effort", "(", "graph", ",", "pick_first", "=", "'head'", ")", ":", "ordered", "=", "[", "]", "visited", "=", "set", "(", ")", "# Go first on the pick_first chain then go back again on the others", "# that were not visited. Given the way the grap...
Fallback for cases in which the graph has cycles.
[ "Fallback", "for", "cases", "in", "which", "the", "graph", "has", "cycles", "." ]
adc6d372da018427e1db7b92424d3471e01a4118
https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/graph_builder.py#L269-L293
train
ellethee/argparseinator
examples/httprequest.py
get
def get(url): """Retrieve an url.""" writeln("Getting data from url", url) response = requests.get(url) if response.status_code == 200: writeln(response.text) else: writeln(str(response.status_code), response.reason)
python
def get(url): """Retrieve an url.""" writeln("Getting data from url", url) response = requests.get(url) if response.status_code == 200: writeln(response.text) else: writeln(str(response.status_code), response.reason)
[ "def", "get", "(", "url", ")", ":", "writeln", "(", "\"Getting data from url\"", ",", "url", ")", "response", "=", "requests", ".", "get", "(", "url", ")", "if", "response", ".", "status_code", "==", "200", ":", "writeln", "(", "response", ".", "text", ...
Retrieve an url.
[ "Retrieve", "an", "url", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/examples/httprequest.py#L11-L18
train
ellethee/argparseinator
examples/httprequest.py
post
def post(url, var): """Post data to an url.""" data = {b[0]: b[1] for b in [a.split("=") for a in var]} writeln("Sending data to url", url) response = requests.post(url, data=data) if response.status_code == 200: writeln(response.text) else: writeln(str(response.status_code), res...
python
def post(url, var): """Post data to an url.""" data = {b[0]: b[1] for b in [a.split("=") for a in var]} writeln("Sending data to url", url) response = requests.post(url, data=data) if response.status_code == 200: writeln(response.text) else: writeln(str(response.status_code), res...
[ "def", "post", "(", "url", ",", "var", ")", ":", "data", "=", "{", "b", "[", "0", "]", ":", "b", "[", "1", "]", "for", "b", "in", "[", "a", ".", "split", "(", "\"=\"", ")", "for", "a", "in", "var", "]", "}", "writeln", "(", "\"Sending data ...
Post data to an url.
[ "Post", "data", "to", "an", "url", "." ]
05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e
https://github.com/ellethee/argparseinator/blob/05e9c00dfaa938b9c4ee2aadc6206f5e0918e24e/examples/httprequest.py#L23-L31
train
eleme/meepo
meepo/utils.py
cast_bytes
def cast_bytes(s, encoding='utf8', errors='strict'): """cast str or bytes to bytes""" if isinstance(s, bytes): return s elif isinstance(s, str): return s.encode(encoding, errors) else: raise TypeError("Expected unicode or bytes, got %r" % s)
python
def cast_bytes(s, encoding='utf8', errors='strict'): """cast str or bytes to bytes""" if isinstance(s, bytes): return s elif isinstance(s, str): return s.encode(encoding, errors) else: raise TypeError("Expected unicode or bytes, got %r" % s)
[ "def", "cast_bytes", "(", "s", ",", "encoding", "=", "'utf8'", ",", "errors", "=", "'strict'", ")", ":", "if", "isinstance", "(", "s", ",", "bytes", ")", ":", "return", "s", "elif", "isinstance", "(", "s", ",", "str", ")", ":", "return", "s", ".", ...
cast str or bytes to bytes
[ "cast", "str", "or", "bytes", "to", "bytes" ]
8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a
https://github.com/eleme/meepo/blob/8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a/meepo/utils.py#L46-L53
train
eleme/meepo
meepo/utils.py
cast_str
def cast_str(s, encoding='utf8', errors='strict'): """cast bytes or str to str""" if isinstance(s, bytes): return s.decode(encoding, errors) elif isinstance(s, str): return s else: raise TypeError("Expected unicode or bytes, got %r" % s)
python
def cast_str(s, encoding='utf8', errors='strict'): """cast bytes or str to str""" if isinstance(s, bytes): return s.decode(encoding, errors) elif isinstance(s, str): return s else: raise TypeError("Expected unicode or bytes, got %r" % s)
[ "def", "cast_str", "(", "s", ",", "encoding", "=", "'utf8'", ",", "errors", "=", "'strict'", ")", ":", "if", "isinstance", "(", "s", ",", "bytes", ")", ":", "return", "s", ".", "decode", "(", "encoding", ",", "errors", ")", "elif", "isinstance", "(",...
cast bytes or str to str
[ "cast", "bytes", "or", "str", "to", "str" ]
8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a
https://github.com/eleme/meepo/blob/8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a/meepo/utils.py#L57-L64
train
eleme/meepo
meepo/utils.py
cast_datetime
def cast_datetime(ts, fmt=None): """cast timestamp to datetime or date str""" dt = datetime.datetime.fromtimestamp(ts) if fmt: return dt.strftime(fmt) return dt
python
def cast_datetime(ts, fmt=None): """cast timestamp to datetime or date str""" dt = datetime.datetime.fromtimestamp(ts) if fmt: return dt.strftime(fmt) return dt
[ "def", "cast_datetime", "(", "ts", ",", "fmt", "=", "None", ")", ":", "dt", "=", "datetime", ".", "datetime", ".", "fromtimestamp", "(", "ts", ")", "if", "fmt", ":", "return", "dt", ".", "strftime", "(", "fmt", ")", "return", "dt" ]
cast timestamp to datetime or date str
[ "cast", "timestamp", "to", "datetime", "or", "date", "str" ]
8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a
https://github.com/eleme/meepo/blob/8212f0fe9b1d44be0c5de72d221a31c1d24bfe7a/meepo/utils.py#L68-L73
train
thautwarm/Redy
Redy/Magic/Classic.py
singleton_init_by
def singleton_init_by(init_fn=None): """ >>> from Redy.Magic.Classic import singleton >>> @singleton >>> class S: >>> pass >>> assert isinstance(S, S) """ if not init_fn: def wrap_init(origin_init): return origin_init else: def wrap_init(origin_init):...
python
def singleton_init_by(init_fn=None): """ >>> from Redy.Magic.Classic import singleton >>> @singleton >>> class S: >>> pass >>> assert isinstance(S, S) """ if not init_fn: def wrap_init(origin_init): return origin_init else: def wrap_init(origin_init):...
[ "def", "singleton_init_by", "(", "init_fn", "=", "None", ")", ":", "if", "not", "init_fn", ":", "def", "wrap_init", "(", "origin_init", ")", ":", "return", "origin_init", "else", ":", "def", "wrap_init", "(", "origin_init", ")", ":", "def", "__init__", "("...
>>> from Redy.Magic.Classic import singleton >>> @singleton >>> class S: >>> pass >>> assert isinstance(S, S)
[ ">>>", "from", "Redy", ".", "Magic", ".", "Classic", "import", "singleton", ">>>" ]
8beee5c5f752edfd2754bb1e6b5f4acb016a7770
https://github.com/thautwarm/Redy/blob/8beee5c5f752edfd2754bb1e6b5f4acb016a7770/Redy/Magic/Classic.py#L18-L51
train
thautwarm/Redy
Redy/Magic/Classic.py
const_return
def const_return(func): """ >>> from Redy.Magic.Classic import const_return >>> @const_return >>> def f(x): >>> return x >>> r1 = f(1) >>> assert r1 is 1 and r1 is f(2) """ result = _undef def ret_call(*args, **kwargs): nonlocal result if result is _undef: ...
python
def const_return(func): """ >>> from Redy.Magic.Classic import const_return >>> @const_return >>> def f(x): >>> return x >>> r1 = f(1) >>> assert r1 is 1 and r1 is f(2) """ result = _undef def ret_call(*args, **kwargs): nonlocal result if result is _undef: ...
[ "def", "const_return", "(", "func", ")", ":", "result", "=", "_undef", "def", "ret_call", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "nonlocal", "result", "if", "result", "is", "_undef", ":", "result", "=", "func", "(", "*", "args", ",", ...
>>> from Redy.Magic.Classic import const_return >>> @const_return >>> def f(x): >>> return x >>> r1 = f(1) >>> assert r1 is 1 and r1 is f(2)
[ ">>>", "from", "Redy", ".", "Magic", ".", "Classic", "import", "const_return", ">>>" ]
8beee5c5f752edfd2754bb1e6b5f4acb016a7770
https://github.com/thautwarm/Redy/blob/8beee5c5f752edfd2754bb1e6b5f4acb016a7770/Redy/Magic/Classic.py#L57-L74
train
thautwarm/Redy
Redy/Magic/Classic.py
execute
def execute(func: types.FunctionType): """ >>> from Redy.Magic.Classic import execute >>> x = 1 >>> @execute >>> def f(x = x) -> int: >>> return x + 1 >>> assert f is 2 """ spec = getfullargspec(func) default = spec.defaults arg_cursor = 0 def get_item(name): ...
python
def execute(func: types.FunctionType): """ >>> from Redy.Magic.Classic import execute >>> x = 1 >>> @execute >>> def f(x = x) -> int: >>> return x + 1 >>> assert f is 2 """ spec = getfullargspec(func) default = spec.defaults arg_cursor = 0 def get_item(name): ...
[ "def", "execute", "(", "func", ":", "types", ".", "FunctionType", ")", ":", "spec", "=", "getfullargspec", "(", "func", ")", "default", "=", "spec", ".", "defaults", "arg_cursor", "=", "0", "def", "get_item", "(", "name", ")", ":", "nonlocal", "arg_curso...
>>> from Redy.Magic.Classic import execute >>> x = 1 >>> @execute >>> def f(x = x) -> int: >>> return x + 1 >>> assert f is 2
[ ">>>", "from", "Redy", ".", "Magic", ".", "Classic", "import", "execute", ">>>", "x", "=", "1", ">>>" ]
8beee5c5f752edfd2754bb1e6b5f4acb016a7770
https://github.com/thautwarm/Redy/blob/8beee5c5f752edfd2754bb1e6b5f4acb016a7770/Redy/Magic/Classic.py#L77-L102
train
thautwarm/Redy
Redy/Magic/Classic.py
cast
def cast(cast_fn): """ >>> from Redy.Magic.Classic import cast >>> @cast(list) >>> def f(x): >>> for each in x: >>> if each % 2: >>> continue >>> yield each """ def inner(func): def call(*args, **kwargs): return cast_fn(func(*a...
python
def cast(cast_fn): """ >>> from Redy.Magic.Classic import cast >>> @cast(list) >>> def f(x): >>> for each in x: >>> if each % 2: >>> continue >>> yield each """ def inner(func): def call(*args, **kwargs): return cast_fn(func(*a...
[ "def", "cast", "(", "cast_fn", ")", ":", "def", "inner", "(", "func", ")", ":", "def", "call", "(", "*", "args", ",", "*", "*", "kwargs", ")", ":", "return", "cast_fn", "(", "func", "(", "*", "args", ",", "*", "*", "kwargs", ")", ")", "functool...
>>> from Redy.Magic.Classic import cast >>> @cast(list) >>> def f(x): >>> for each in x: >>> if each % 2: >>> continue >>> yield each
[ ">>>", "from", "Redy", ".", "Magic", ".", "Classic", "import", "cast", ">>>" ]
8beee5c5f752edfd2754bb1e6b5f4acb016a7770
https://github.com/thautwarm/Redy/blob/8beee5c5f752edfd2754bb1e6b5f4acb016a7770/Redy/Magic/Classic.py#L105-L123
train
thautwarm/Redy
Redy/Async/Delegate.py
Delegate.insert
def insert(self, action: Action, where: 'Union[int, Delegate.Where]'): """ add a new action with specific priority >>> delegate: Delegate >>> delegate.insert(lambda task, product, ctx: print(product), where=Delegate.Where.after(lambda action: action.__name__ == 'myfunc')) the co...
python
def insert(self, action: Action, where: 'Union[int, Delegate.Where]'): """ add a new action with specific priority >>> delegate: Delegate >>> delegate.insert(lambda task, product, ctx: print(product), where=Delegate.Where.after(lambda action: action.__name__ == 'myfunc')) the co...
[ "def", "insert", "(", "self", ",", "action", ":", "Action", ",", "where", ":", "'Union[int, Delegate.Where]'", ")", ":", "if", "isinstance", "(", "where", ",", "int", ")", ":", "self", ".", "actions", ".", "insert", "(", "where", ",", "action", ")", "r...
add a new action with specific priority >>> delegate: Delegate >>> delegate.insert(lambda task, product, ctx: print(product), where=Delegate.Where.after(lambda action: action.__name__ == 'myfunc')) the codes above inserts an action after the specific action whose name is 'myfunc'.
[ "add", "a", "new", "action", "with", "specific", "priority" ]
8beee5c5f752edfd2754bb1e6b5f4acb016a7770
https://github.com/thautwarm/Redy/blob/8beee5c5f752edfd2754bb1e6b5f4acb016a7770/Redy/Async/Delegate.py#L55-L68
train
inveniosoftware-contrib/json-merger
json_merger/dict_merger.py
patch_to_conflict_set
def patch_to_conflict_set(patch): """Translates a dictdiffer conflict into a json_merger one.""" patch_type, patched_key, value = patch if isinstance(patched_key, list): key_path = tuple(patched_key) else: key_path = tuple(k for k in patched_key.split('.') if k) conflicts = set() ...
python
def patch_to_conflict_set(patch): """Translates a dictdiffer conflict into a json_merger one.""" patch_type, patched_key, value = patch if isinstance(patched_key, list): key_path = tuple(patched_key) else: key_path = tuple(k for k in patched_key.split('.') if k) conflicts = set() ...
[ "def", "patch_to_conflict_set", "(", "patch", ")", ":", "patch_type", ",", "patched_key", ",", "value", "=", "patch", "if", "isinstance", "(", "patched_key", ",", "list", ")", ":", "key_path", "=", "tuple", "(", "patched_key", ")", "else", ":", "key_path", ...
Translates a dictdiffer conflict into a json_merger one.
[ "Translates", "a", "dictdiffer", "conflict", "into", "a", "json_merger", "one", "." ]
adc6d372da018427e1db7b92424d3471e01a4118
https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/dict_merger.py#L54-L76
train
inveniosoftware-contrib/json-merger
json_merger/dict_merger.py
SkipListsMerger.merge
def merge(self): """Perform merge of head and update starting from root.""" if isinstance(self.head, dict) and isinstance(self.update, dict): if not isinstance(self.root, dict): self.root = {} self._merge_dicts() else: self._merge_base_values()...
python
def merge(self): """Perform merge of head and update starting from root.""" if isinstance(self.head, dict) and isinstance(self.update, dict): if not isinstance(self.root, dict): self.root = {} self._merge_dicts() else: self._merge_base_values()...
[ "def", "merge", "(", "self", ")", ":", "if", "isinstance", "(", "self", ".", "head", ",", "dict", ")", "and", "isinstance", "(", "self", ".", "update", ",", "dict", ")", ":", "if", "not", "isinstance", "(", "self", ".", "root", ",", "dict", ")", ...
Perform merge of head and update starting from root.
[ "Perform", "merge", "of", "head", "and", "update", "starting", "from", "root", "." ]
adc6d372da018427e1db7b92424d3471e01a4118
https://github.com/inveniosoftware-contrib/json-merger/blob/adc6d372da018427e1db7b92424d3471e01a4118/json_merger/dict_merger.py#L236-L246
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
chebyshev
def chebyshev(point1, point2): """Computes distance between 2D points using chebyshev metric :param point1: 1st point :type point1: list :param point2: 2nd point :type point2: list :returns: Distance between point1 and point2 :rtype: float """ return max(abs(point1[0] - point2[0]),...
python
def chebyshev(point1, point2): """Computes distance between 2D points using chebyshev metric :param point1: 1st point :type point1: list :param point2: 2nd point :type point2: list :returns: Distance between point1 and point2 :rtype: float """ return max(abs(point1[0] - point2[0]),...
[ "def", "chebyshev", "(", "point1", ",", "point2", ")", ":", "return", "max", "(", "abs", "(", "point1", "[", "0", "]", "-", "point2", "[", "0", "]", ")", ",", "abs", "(", "point1", "[", "1", "]", "-", "point2", "[", "1", "]", ")", ")" ]
Computes distance between 2D points using chebyshev metric :param point1: 1st point :type point1: list :param point2: 2nd point :type point2: list :returns: Distance between point1 and point2 :rtype: float
[ "Computes", "distance", "between", "2D", "points", "using", "chebyshev", "metric" ]
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L26-L37
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
circlescan
def circlescan(x0, y0, r1, r2): """Scan pixels in a circle pattern around a center point :param x0: Center x-coordinate :type x0: float :param y0: Center y-coordinate :type y0: float :param r1: Initial radius :type r1: float :param r2: Final radius :type r2: float :returns: Coor...
python
def circlescan(x0, y0, r1, r2): """Scan pixels in a circle pattern around a center point :param x0: Center x-coordinate :type x0: float :param y0: Center y-coordinate :type y0: float :param r1: Initial radius :type r1: float :param r2: Final radius :type r2: float :returns: Coor...
[ "def", "circlescan", "(", "x0", ",", "y0", ",", "r1", ",", "r2", ")", ":", "# Validate inputs", "if", "r1", "<", "0", ":", "raise", "ValueError", "(", "\"Initial radius must be non-negative\"", ")", "if", "r2", "<", "0", ":", "raise", "ValueError", "(", ...
Scan pixels in a circle pattern around a center point :param x0: Center x-coordinate :type x0: float :param y0: Center y-coordinate :type y0: float :param r1: Initial radius :type r1: float :param r2: Final radius :type r2: float :returns: Coordinate generator :rtype: function
[ "Scan", "pixels", "in", "a", "circle", "pattern", "around", "a", "center", "point" ]
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L392-L466
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
gridscan
def gridscan(xi, yi, xf, yf, stepx=1, stepy=1): """Scan pixels in a grid pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate...
python
def gridscan(xi, yi, xf, yf, stepx=1, stepy=1): """Scan pixels in a grid pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate...
[ "def", "gridscan", "(", "xi", ",", "yi", ",", "xf", ",", "yf", ",", "stepx", "=", "1", ",", "stepy", "=", "1", ")", ":", "if", "stepx", "<=", "0", ":", "raise", "ValueError", "(", "\"X-step must be positive\"", ")", "if", "stepy", "<=", "0", ":", ...
Scan pixels in a grid pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate :type yf: int :param stepx: Step size in x-coo...
[ "Scan", "pixels", "in", "a", "grid", "pattern", "along", "the", "x", "-", "coordinate", "then", "y", "-", "coordinate" ]
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L468-L496
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
ringscan
def ringscan(x0, y0, r1, r2, metric=chebyshev): """Scan pixels in a ring pattern around a center point clockwise :param x0: Center x-coordinate :type x0: int :param y0: Center y-coordinate :type y0: int :param r1: Initial radius :type r1: int :param r2: Final radius :type r2: int ...
python
def ringscan(x0, y0, r1, r2, metric=chebyshev): """Scan pixels in a ring pattern around a center point clockwise :param x0: Center x-coordinate :type x0: int :param y0: Center y-coordinate :type y0: int :param r1: Initial radius :type r1: int :param r2: Final radius :type r2: int ...
[ "def", "ringscan", "(", "x0", ",", "y0", ",", "r1", ",", "r2", ",", "metric", "=", "chebyshev", ")", ":", "# Validate inputs", "if", "r1", "<", "0", ":", "raise", "ValueError", "(", "\"Initial radius must be non-negative\"", ")", "if", "r2", "<", "0", ":...
Scan pixels in a ring pattern around a center point clockwise :param x0: Center x-coordinate :type x0: int :param y0: Center y-coordinate :type y0: int :param r1: Initial radius :type r1: int :param r2: Final radius :type r2: int :param metric: Distance metric :type metric: func...
[ "Scan", "pixels", "in", "a", "ring", "pattern", "around", "a", "center", "point", "clockwise" ]
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L528-L604
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
snakescan
def snakescan(xi, yi, xf, yf): """Scan pixels in a snake pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate :type yf: i...
python
def snakescan(xi, yi, xf, yf): """Scan pixels in a snake pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate :type yf: i...
[ "def", "snakescan", "(", "xi", ",", "yi", ",", "xf", ",", "yf", ")", ":", "# Determine direction to move", "dx", "=", "1", "if", "xf", ">=", "xi", "else", "-", "1", "dy", "=", "1", "if", "yf", ">=", "yi", "else", "-", "1", "# Scan pixels first along ...
Scan pixels in a snake pattern along the x-coordinate then y-coordinate :param xi: Initial x-coordinate :type xi: int :param yi: Initial y-coordinate :type yi: int :param xf: Final x-coordinate :type xf: int :param yf: Final y-coordinate :type yf: int :returns: Coordinate generator ...
[ "Scan", "pixels", "in", "a", "snake", "pattern", "along", "the", "x", "-", "coordinate", "then", "y", "-", "coordinate" ]
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L606-L635
train
dpmcmlxxvi/pixelscan
pixelscan/pixelscan.py
walkscan
def walkscan(x0, y0, xn=0.25, xp=0.25, yn=0.25, yp=0.25): """Scan pixels in a random walk pattern with given step probabilities. The random walk will continue indefinitely unless a skip transformation is used with the 'stop' parameter set or a clip transformation is used with the 'abort' parameter set t...
python
def walkscan(x0, y0, xn=0.25, xp=0.25, yn=0.25, yp=0.25): """Scan pixels in a random walk pattern with given step probabilities. The random walk will continue indefinitely unless a skip transformation is used with the 'stop' parameter set or a clip transformation is used with the 'abort' parameter set t...
[ "def", "walkscan", "(", "x0", ",", "y0", ",", "xn", "=", "0.25", ",", "xp", "=", "0.25", ",", "yn", "=", "0.25", ",", "yp", "=", "0.25", ")", ":", "# Validate inputs", "if", "xn", "<", "0", ":", "raise", "ValueError", "(", "\"Negative x probabilty mu...
Scan pixels in a random walk pattern with given step probabilities. The random walk will continue indefinitely unless a skip transformation is used with the 'stop' parameter set or a clip transformation is used with the 'abort' parameter set to True. The probabilities are normalized to sum to 1. :param...
[ "Scan", "pixels", "in", "a", "random", "walk", "pattern", "with", "given", "step", "probabilities", ".", "The", "random", "walk", "will", "continue", "indefinitely", "unless", "a", "skip", "transformation", "is", "used", "with", "the", "stop", "parameter", "se...
d641207b13a8fc5bf7ac9964b982971652bb0a7e
https://github.com/dpmcmlxxvi/pixelscan/blob/d641207b13a8fc5bf7ac9964b982971652bb0a7e/pixelscan/pixelscan.py#L637-L691
train
basecrm/basecrm-python
basecrm/configuration.py
Configuration.validate
def validate(self): """Validates whether a configuration is valid. :rtype: bool :raises ConfigurationError: if no ``access_token`` provided. :raises ConfigurationError: if provided ``access_token`` is invalid - contains disallowed characters. :raises ConfigurationError: if provi...
python
def validate(self): """Validates whether a configuration is valid. :rtype: bool :raises ConfigurationError: if no ``access_token`` provided. :raises ConfigurationError: if provided ``access_token`` is invalid - contains disallowed characters. :raises ConfigurationError: if provi...
[ "def", "validate", "(", "self", ")", ":", "if", "self", ".", "access_token", "is", "None", ":", "raise", "ConfigurationError", "(", "'No access token provided. '", "'Set your access token during client initialization using: '", "'\"basecrm.Client(access_token= <YOUR_PERSONAL_ACCE...
Validates whether a configuration is valid. :rtype: bool :raises ConfigurationError: if no ``access_token`` provided. :raises ConfigurationError: if provided ``access_token`` is invalid - contains disallowed characters. :raises ConfigurationError: if provided ``access_token`` is invalid...
[ "Validates", "whether", "a", "configuration", "is", "valid", "." ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/configuration.py#L35-L66
train
basecrm/basecrm-python
basecrm/sync.py
SyncService.start
def start(self, device_uuid): """ Start synchronization flow Starts a new synchronization session. This is the first endpoint to call, in order to start a new synchronization session. :calls: ``post /sync/start`` :param string device_uuid: Device's UUID for which to per...
python
def start(self, device_uuid): """ Start synchronization flow Starts a new synchronization session. This is the first endpoint to call, in order to start a new synchronization session. :calls: ``post /sync/start`` :param string device_uuid: Device's UUID for which to per...
[ "def", "start", "(", "self", ",", "device_uuid", ")", ":", "status_code", ",", "_", ",", "session", "=", "self", ".", "http_client", ".", "post", "(", "'/sync/start'", ",", "body", "=", "None", ",", "headers", "=", "self", ".", "build_headers", "(", "d...
Start synchronization flow Starts a new synchronization session. This is the first endpoint to call, in order to start a new synchronization session. :calls: ``post /sync/start`` :param string device_uuid: Device's UUID for which to perform synchronization. :return: Dictionary ...
[ "Start", "synchronization", "flow" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/sync.py#L18-L35
train
basecrm/basecrm-python
basecrm/sync.py
SyncService.fetch
def fetch(self, device_uuid, session_id): """ Get data from queue Fetch fresh data from the named queue. Using session identifier you call continously the `#fetch` method to drain the named queue. :calls: ``get /sync/{session_id}/queues/main`` :param string device_uuid:...
python
def fetch(self, device_uuid, session_id): """ Get data from queue Fetch fresh data from the named queue. Using session identifier you call continously the `#fetch` method to drain the named queue. :calls: ``get /sync/{session_id}/queues/main`` :param string device_uuid:...
[ "def", "fetch", "(", "self", ",", "device_uuid", ",", "session_id", ")", ":", "status_code", ",", "_", ",", "root", "=", "self", ".", "http_client", ".", "get", "(", "\"/sync/{session_id}/queues/main\"", ".", "format", "(", "session_id", "=", "session_id", "...
Get data from queue Fetch fresh data from the named queue. Using session identifier you call continously the `#fetch` method to drain the named queue. :calls: ``get /sync/{session_id}/queues/main`` :param string device_uuid: Device's UUID for which to perform synchronization. :...
[ "Get", "data", "from", "queue" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/sync.py#L37-L59
train
basecrm/basecrm-python
basecrm/sync.py
SyncService.ack
def ack(self, device_uuid, ack_keys): """ Acknowledge received data Send acknowledgement keys to let know the Sync service which data you have. As you fetch new data, you need to send acknowledgement keys. :calls: ``post /sync/ack`` :param string device_uuid: Device's U...
python
def ack(self, device_uuid, ack_keys): """ Acknowledge received data Send acknowledgement keys to let know the Sync service which data you have. As you fetch new data, you need to send acknowledgement keys. :calls: ``post /sync/ack`` :param string device_uuid: Device's U...
[ "def", "ack", "(", "self", ",", "device_uuid", ",", "ack_keys", ")", ":", "attributes", "=", "{", "'ack_keys'", ":", "ack_keys", "}", "status_code", ",", "_", ",", "_", "=", "self", ".", "http_client", ".", "post", "(", "'/sync/ack'", ",", "body", "=",...
Acknowledge received data Send acknowledgement keys to let know the Sync service which data you have. As you fetch new data, you need to send acknowledgement keys. :calls: ``post /sync/ack`` :param string device_uuid: Device's UUID for which to perform synchronization. :param l...
[ "Acknowledge", "received", "data" ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/sync.py#L61-L80
train
basecrm/basecrm-python
basecrm/sync.py
Sync.fetch
def fetch(self, callback): """ Perform a full synchronization flow. .. code-block:: python :linenos: >>> client = basecrm.Client(access_token='<YOUR_PERSONAL_ACCESS_TOKEN>') >>> sync = basecrm.Sync(client=client, device_uuid='<YOUR_DEVICES_UUID>') ...
python
def fetch(self, callback): """ Perform a full synchronization flow. .. code-block:: python :linenos: >>> client = basecrm.Client(access_token='<YOUR_PERSONAL_ACCESS_TOKEN>') >>> sync = basecrm.Sync(client=client, device_uuid='<YOUR_DEVICES_UUID>') ...
[ "def", "fetch", "(", "self", ",", "callback", ")", ":", "# Set up a new synchronization session for a given device's UUID", "session", "=", "self", ".", "client", ".", "sync", ".", "start", "(", "self", ".", "device_uuid", ")", "# Check if there is anything to synchroni...
Perform a full synchronization flow. .. code-block:: python :linenos: >>> client = basecrm.Client(access_token='<YOUR_PERSONAL_ACCESS_TOKEN>') >>> sync = basecrm.Sync(client=client, device_uuid='<YOUR_DEVICES_UUID>') >>> sync.fetch(lambda meta, data: basecrm.Syn...
[ "Perform", "a", "full", "synchronization", "flow", "." ]
7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6
https://github.com/basecrm/basecrm-python/blob/7c1cf97dbaba8aeb9ff89f8a54f945a8702349f6/basecrm/sync.py#L117-L159
train