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
esafak/mca
src/mca.py
MCA.cos_r
def cos_r(self, N=None): # percent=0.9 """Return the squared cosines for each row.""" if not hasattr(self, 'F') or self.F.shape[1] < self.rank: self.fs_r(N=self.rank) # generate F self.dr = norm(self.F, axis=1)**2 # cheaper than diag(self.F.dot(self.F.T))? return apply_along_axis(lambda _: _/self.dr, 0...
python
def cos_r(self, N=None): # percent=0.9 """Return the squared cosines for each row.""" if not hasattr(self, 'F') or self.F.shape[1] < self.rank: self.fs_r(N=self.rank) # generate F self.dr = norm(self.F, axis=1)**2 # cheaper than diag(self.F.dot(self.F.T))? return apply_along_axis(lambda _: _/self.dr, 0...
[ "def", "cos_r", "(", "self", ",", "N", "=", "None", ")", ":", "# percent=0.9", "if", "not", "hasattr", "(", "self", ",", "'F'", ")", "or", "self", ".", "F", ".", "shape", "[", "1", "]", "<", "self", ".", "rank", ":", "self", ".", "fs_r", "(", ...
Return the squared cosines for each row.
[ "Return", "the", "squared", "cosines", "for", "each", "row", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L149-L157
train
esafak/mca
src/mca.py
MCA.cos_c
def cos_c(self, N=None): # percent=0.9, """Return the squared cosines for each column.""" if not hasattr(self, 'G') or self.G.shape[1] < self.rank: self.fs_c(N=self.rank) # generate self.dc = norm(self.G, axis=1)**2 # cheaper than diag(self.G.dot(self.G.T))? return apply_along_axis(lambda _: _/self.dc,...
python
def cos_c(self, N=None): # percent=0.9, """Return the squared cosines for each column.""" if not hasattr(self, 'G') or self.G.shape[1] < self.rank: self.fs_c(N=self.rank) # generate self.dc = norm(self.G, axis=1)**2 # cheaper than diag(self.G.dot(self.G.T))? return apply_along_axis(lambda _: _/self.dc,...
[ "def", "cos_c", "(", "self", ",", "N", "=", "None", ")", ":", "# percent=0.9,", "if", "not", "hasattr", "(", "self", ",", "'G'", ")", "or", "self", ".", "G", ".", "shape", "[", "1", "]", "<", "self", ".", "rank", ":", "self", ".", "fs_c", "(", ...
Return the squared cosines for each column.
[ "Return", "the", "squared", "cosines", "for", "each", "column", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L159-L167
train
esafak/mca
src/mca.py
MCA.cont_r
def cont_r(self, percent=0.9, N=None): """Return the contribution of each row.""" if not hasattr(self, 'F'): self.fs_r(N=self.rank) # generate F return apply_along_axis(lambda _: _/self.L[:N], 1, apply_along_axis(lambda _: _*self.r, 0, self.F[:, :N]**2))
python
def cont_r(self, percent=0.9, N=None): """Return the contribution of each row.""" if not hasattr(self, 'F'): self.fs_r(N=self.rank) # generate F return apply_along_axis(lambda _: _/self.L[:N], 1, apply_along_axis(lambda _: _*self.r, 0, self.F[:, :N]**2))
[ "def", "cont_r", "(", "self", ",", "percent", "=", "0.9", ",", "N", "=", "None", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'F'", ")", ":", "self", ".", "fs_r", "(", "N", "=", "self", ".", "rank", ")", "# generate F", "return", "apply_a...
Return the contribution of each row.
[ "Return", "the", "contribution", "of", "each", "row", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L169-L175
train
esafak/mca
src/mca.py
MCA.cont_c
def cont_c(self, percent=0.9, N=None): # bug? check axis number 0 vs 1 here """Return the contribution of each column.""" if not hasattr(self, 'G'): self.fs_c(N=self.rank) # generate G return apply_along_axis(lambda _: _/self.L[:N], 1, apply_along_axis(lambda _: _*self.c, 0, self.G[:, :N]**2))
python
def cont_c(self, percent=0.9, N=None): # bug? check axis number 0 vs 1 here """Return the contribution of each column.""" if not hasattr(self, 'G'): self.fs_c(N=self.rank) # generate G return apply_along_axis(lambda _: _/self.L[:N], 1, apply_along_axis(lambda _: _*self.c, 0, self.G[:, :N]**2))
[ "def", "cont_c", "(", "self", ",", "percent", "=", "0.9", ",", "N", "=", "None", ")", ":", "# bug? check axis number 0 vs 1 here", "if", "not", "hasattr", "(", "self", ",", "'G'", ")", ":", "self", ".", "fs_c", "(", "N", "=", "self", ".", "rank", ")"...
Return the contribution of each column.
[ "Return", "the", "contribution", "of", "each", "column", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L177-L183
train
esafak/mca
src/mca.py
MCA.fs_r_sup
def fs_r_sup(self, DF, N=None): """Find the supplementary row factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference. """ if not hasattr(self, 'G'): self.fs_c(N=self.rank) # generate G if N and (not isinstance(N, int) or N <= 0): raise ValueErro...
python
def fs_r_sup(self, DF, N=None): """Find the supplementary row factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference. """ if not hasattr(self, 'G'): self.fs_c(N=self.rank) # generate G if N and (not isinstance(N, int) or N <= 0): raise ValueErro...
[ "def", "fs_r_sup", "(", "self", ",", "DF", ",", "N", "=", "None", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'G'", ")", ":", "self", ".", "fs_c", "(", "N", "=", "self", ".", "rank", ")", "# generate G", "if", "N", "and", "(", "not", ...
Find the supplementary row factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference.
[ "Find", "the", "supplementary", "row", "factor", "scores", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L199-L214
train
esafak/mca
src/mca.py
MCA.fs_c_sup
def fs_c_sup(self, DF, N=None): """Find the supplementary column factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference. """ if not hasattr(self, 'F'): self.fs_r(N=self.rank) # generate F if N and (not isinstance(N, int) or N <= 0): raise ValueE...
python
def fs_c_sup(self, DF, N=None): """Find the supplementary column factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference. """ if not hasattr(self, 'F'): self.fs_r(N=self.rank) # generate F if N and (not isinstance(N, int) or N <= 0): raise ValueE...
[ "def", "fs_c_sup", "(", "self", ",", "DF", ",", "N", "=", "None", ")", ":", "if", "not", "hasattr", "(", "self", ",", "'F'", ")", ":", "self", ".", "fs_r", "(", "N", "=", "self", ".", "rank", ")", "# generate F", "if", "N", "and", "(", "not", ...
Find the supplementary column factor scores. ncols: The number of singular vectors to retain. If both are passed, cols is given preference.
[ "Find", "the", "supplementary", "column", "factor", "scores", "." ]
f2b79ecbf37629902ccdbad2e1a556977c53d370
https://github.com/esafak/mca/blob/f2b79ecbf37629902ccdbad2e1a556977c53d370/src/mca.py#L216-L231
train
primetang/qrtools
src/qrtools.py
QR.data_recognise
def data_recognise(self, data=None): """Returns an unicode string indicating the data type of the data paramater""" data = data or self.data data_lower = data.lower() if data_lower.startswith(u"http://") or data_lower.startswith(u"https://"): return u'url' elif data_l...
python
def data_recognise(self, data=None): """Returns an unicode string indicating the data type of the data paramater""" data = data or self.data data_lower = data.lower() if data_lower.startswith(u"http://") or data_lower.startswith(u"https://"): return u'url' elif data_l...
[ "def", "data_recognise", "(", "self", ",", "data", "=", "None", ")", ":", "data", "=", "data", "or", "self", ".", "data", "data_lower", "=", "data", ".", "lower", "(", ")", "if", "data_lower", ".", "startswith", "(", "u\"http://\"", ")", "or", "data_lo...
Returns an unicode string indicating the data type of the data paramater
[ "Returns", "an", "unicode", "string", "indicating", "the", "data", "type", "of", "the", "data", "paramater" ]
3263c6136f54f0499b9945bfad593537d436c7a1
https://github.com/primetang/qrtools/blob/3263c6136f54f0499b9945bfad593537d436c7a1/src/qrtools.py#L84-L107
train
primetang/qrtools
src/qrtools.py
QR.data_to_string
def data_to_string(self): """Returns a UTF8 string with the QR Code's data""" # FIX-ME: if we don't add the BOM_UTF8 char, QtQR doesn't decode # correctly; but if we add it, mobile apps don't.- # Apparently is a zbar bug. if self.data_type == 'text': return BOM_UTF8 +...
python
def data_to_string(self): """Returns a UTF8 string with the QR Code's data""" # FIX-ME: if we don't add the BOM_UTF8 char, QtQR doesn't decode # correctly; but if we add it, mobile apps don't.- # Apparently is a zbar bug. if self.data_type == 'text': return BOM_UTF8 +...
[ "def", "data_to_string", "(", "self", ")", ":", "# FIX-ME: if we don't add the BOM_UTF8 char, QtQR doesn't decode", "# correctly; but if we add it, mobile apps don't.-", "# Apparently is a zbar bug.", "if", "self", ".", "data_type", "==", "'text'", ":", "return", "BOM_UTF8", "+",...
Returns a UTF8 string with the QR Code's data
[ "Returns", "a", "UTF8", "string", "with", "the", "QR", "Code", "s", "data" ]
3263c6136f54f0499b9945bfad593537d436c7a1
https://github.com/primetang/qrtools/blob/3263c6136f54f0499b9945bfad593537d436c7a1/src/qrtools.py#L125-L133
train
python-visualization/branca
branca/utilities.py
split_six
def split_six(series=None): """ Given a Pandas Series, get a domain of values from zero to the 90% quantile rounded to the nearest order-of-magnitude integer. For example, 2100 is rounded to 2000, 2790 to 3000. Parameters ---------- series: Pandas series, default None Returns -----...
python
def split_six(series=None): """ Given a Pandas Series, get a domain of values from zero to the 90% quantile rounded to the nearest order-of-magnitude integer. For example, 2100 is rounded to 2000, 2790 to 3000. Parameters ---------- series: Pandas series, default None Returns -----...
[ "def", "split_six", "(", "series", "=", "None", ")", ":", "if", "pd", "is", "None", ":", "raise", "ImportError", "(", "'The Pandas package is required'", "' for this functionality'", ")", "if", "np", "is", "None", ":", "raise", "ImportError", "(", "'The NumPy pa...
Given a Pandas Series, get a domain of values from zero to the 90% quantile rounded to the nearest order-of-magnitude integer. For example, 2100 is rounded to 2000, 2790 to 3000. Parameters ---------- series: Pandas series, default None Returns ------- list
[ "Given", "a", "Pandas", "Series", "get", "a", "domain", "of", "values", "from", "zero", "to", "the", "90%", "quantile", "rounded", "to", "the", "nearest", "order", "-", "of", "-", "magnitude", "integer", ".", "For", "example", "2100", "is", "rounded", "t...
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/utilities.py#L183-L215
train
python-visualization/branca
branca/colormap.py
StepColormap.to_linear
def to_linear(self, index=None): """ Transforms the StepColormap into a LinearColormap. Parameters ---------- index : list of floats, default None The values corresponding to each color in the output colormap. It has to be sorted. ...
python
def to_linear(self, index=None): """ Transforms the StepColormap into a LinearColormap. Parameters ---------- index : list of floats, default None The values corresponding to each color in the output colormap. It has to be sorted. ...
[ "def", "to_linear", "(", "self", ",", "index", "=", "None", ")", ":", "if", "index", "is", "None", ":", "n", "=", "len", "(", "self", ".", "index", ")", "-", "1", "index", "=", "[", "self", ".", "index", "[", "i", "]", "*", "(", "1.", "-", ...
Transforms the StepColormap into a LinearColormap. Parameters ---------- index : list of floats, default None The values corresponding to each color in the output colormap. It has to be sorted. If None, a regular grid between `vmin` and `vmax` is ...
[ "Transforms", "the", "StepColormap", "into", "a", "LinearColormap", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/colormap.py#L390-L409
train
python-visualization/branca
branca/element.py
Element.add_to
def add_to(self, parent, name=None, index=None): """Add element to a parent.""" parent.add_child(self, name=name, index=index) return self
python
def add_to(self, parent, name=None, index=None): """Add element to a parent.""" parent.add_child(self, name=name, index=index) return self
[ "def", "add_to", "(", "self", ",", "parent", ",", "name", "=", "None", ",", "index", "=", "None", ")", ":", "parent", ".", "add_child", "(", "self", ",", "name", "=", "name", ",", "index", "=", "index", ")", "return", "self" ]
Add element to a parent.
[ "Add", "element", "to", "a", "parent", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L119-L122
train
python-visualization/branca
branca/element.py
Element.to_json
def to_json(self, depth=-1, **kwargs): """Returns a JSON representation of the object.""" return json.dumps(self.to_dict(depth=depth, ordered=True), **kwargs)
python
def to_json(self, depth=-1, **kwargs): """Returns a JSON representation of the object.""" return json.dumps(self.to_dict(depth=depth, ordered=True), **kwargs)
[ "def", "to_json", "(", "self", ",", "depth", "=", "-", "1", ",", "*", "*", "kwargs", ")", ":", "return", "json", ".", "dumps", "(", "self", ".", "to_dict", "(", "depth", "=", "depth", ",", "ordered", "=", "True", ")", ",", "*", "*", "kwargs", "...
Returns a JSON representation of the object.
[ "Returns", "a", "JSON", "representation", "of", "the", "object", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L138-L140
train
python-visualization/branca
branca/element.py
Element.save
def save(self, outfile, close_file=True, **kwargs): """Saves an Element into a file. Parameters ---------- outfile : str or file object The file (or filename) where you want to output the html. close_file : bool, default True Whether the file has to be cl...
python
def save(self, outfile, close_file=True, **kwargs): """Saves an Element into a file. Parameters ---------- outfile : str or file object The file (or filename) where you want to output the html. close_file : bool, default True Whether the file has to be cl...
[ "def", "save", "(", "self", ",", "outfile", ",", "close_file", "=", "True", ",", "*", "*", "kwargs", ")", ":", "if", "isinstance", "(", "outfile", ",", "text_type", ")", "or", "isinstance", "(", "outfile", ",", "binary_type", ")", ":", "fid", "=", "o...
Saves an Element into a file. Parameters ---------- outfile : str or file object The file (or filename) where you want to output the html. close_file : bool, default True Whether the file has to be closed after write.
[ "Saves", "an", "Element", "into", "a", "file", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L153-L172
train
python-visualization/branca
branca/element.py
Link.get_code
def get_code(self): """Opens the link and returns the response's content.""" if self.code is None: self.code = urlopen(self.url).read() return self.code
python
def get_code(self): """Opens the link and returns the response's content.""" if self.code is None: self.code = urlopen(self.url).read() return self.code
[ "def", "get_code", "(", "self", ")", ":", "if", "self", ".", "code", "is", "None", ":", "self", ".", "code", "=", "urlopen", "(", "self", ".", "url", ")", ".", "read", "(", ")", "return", "self", ".", "code" ]
Opens the link and returns the response's content.
[ "Opens", "the", "link", "and", "returns", "the", "response", "s", "content", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L177-L181
train
python-visualization/branca
branca/element.py
Figure._repr_html_
def _repr_html_(self, **kwargs): """Displays the Figure in a Jupyter notebook. """ html = self.render(**kwargs) html = "data:text/html;charset=utf-8;base64," + base64.b64encode(html.encode('utf8')).decode('utf8') # noqa if self.height is None: iframe = ( ...
python
def _repr_html_(self, **kwargs): """Displays the Figure in a Jupyter notebook. """ html = self.render(**kwargs) html = "data:text/html;charset=utf-8;base64," + base64.b64encode(html.encode('utf8')).decode('utf8') # noqa if self.height is None: iframe = ( ...
[ "def", "_repr_html_", "(", "self", ",", "*", "*", "kwargs", ")", ":", "html", "=", "self", ".", "render", "(", "*", "*", "kwargs", ")", "html", "=", "\"data:text/html;charset=utf-8;base64,\"", "+", "base64", ".", "b64encode", "(", "html", ".", "encode", ...
Displays the Figure in a Jupyter notebook.
[ "Displays", "the", "Figure", "in", "a", "Jupyter", "notebook", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L324-L349
train
python-visualization/branca
branca/element.py
Figure.add_subplot
def add_subplot(self, x, y, n, margin=0.05): """Creates a div child subplot in a matplotlib.figure.add_subplot style. Parameters ---------- x : int The number of rows in the grid. y : int The number of columns in the grid. n : int The ...
python
def add_subplot(self, x, y, n, margin=0.05): """Creates a div child subplot in a matplotlib.figure.add_subplot style. Parameters ---------- x : int The number of rows in the grid. y : int The number of columns in the grid. n : int The ...
[ "def", "add_subplot", "(", "self", ",", "x", ",", "y", ",", "n", ",", "margin", "=", "0.05", ")", ":", "width", "=", "1.", "/", "y", "height", "=", "1.", "/", "x", "left", "=", "(", "(", "n", "-", "1", ")", "%", "y", ")", "*", "width", "t...
Creates a div child subplot in a matplotlib.figure.add_subplot style. Parameters ---------- x : int The number of rows in the grid. y : int The number of columns in the grid. n : int The cell number in the grid, counted from 1 to x*y. ...
[ "Creates", "a", "div", "child", "subplot", "in", "a", "matplotlib", ".", "figure", ".", "add_subplot", "style", "." ]
4e89e88a5a7ff3586f0852249c2c125f72316da8
https://github.com/python-visualization/branca/blob/4e89e88a5a7ff3586f0852249c2c125f72316da8/branca/element.py#L351-L385
train
rasbt/pyprind
pyprind/prog_class.py
Prog._elapsed
def _elapsed(self): """ Returns elapsed time at update. """ self.last_time = time.time() return self.last_time - self.start
python
def _elapsed(self): """ Returns elapsed time at update. """ self.last_time = time.time() return self.last_time - self.start
[ "def", "_elapsed", "(", "self", ")", ":", "self", ".", "last_time", "=", "time", ".", "time", "(", ")", "return", "self", ".", "last_time", "-", "self", ".", "start" ]
Returns elapsed time at update.
[ "Returns", "elapsed", "time", "at", "update", "." ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/prog_class.py#L120-L123
train
rasbt/pyprind
pyprind/prog_class.py
Prog._calc_eta
def _calc_eta(self): """ Calculates estimated time left until completion. """ elapsed = self._elapsed() if self.cnt == 0 or elapsed < 0.001: return None rate = float(self.cnt) / elapsed self.eta = (float(self.max_iter) - float(self.cnt)) / rate
python
def _calc_eta(self): """ Calculates estimated time left until completion. """ elapsed = self._elapsed() if self.cnt == 0 or elapsed < 0.001: return None rate = float(self.cnt) / elapsed self.eta = (float(self.max_iter) - float(self.cnt)) / rate
[ "def", "_calc_eta", "(", "self", ")", ":", "elapsed", "=", "self", ".", "_elapsed", "(", ")", "if", "self", ".", "cnt", "==", "0", "or", "elapsed", "<", "0.001", ":", "return", "None", "rate", "=", "float", "(", "self", ".", "cnt", ")", "/", "ela...
Calculates estimated time left until completion.
[ "Calculates", "estimated", "time", "left", "until", "completion", "." ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/prog_class.py#L125-L131
train
rasbt/pyprind
pyprind/prog_class.py
Prog._print_title
def _print_title(self): """ Prints tracking title at initialization. """ if self.title: self._stream_out('{}\n'.format(self.title)) self._stream_flush()
python
def _print_title(self): """ Prints tracking title at initialization. """ if self.title: self._stream_out('{}\n'.format(self.title)) self._stream_flush()
[ "def", "_print_title", "(", "self", ")", ":", "if", "self", ".", "title", ":", "self", ".", "_stream_out", "(", "'{}\\n'", ".", "format", "(", "self", ".", "title", ")", ")", "self", ".", "_stream_flush", "(", ")" ]
Prints tracking title at initialization.
[ "Prints", "tracking", "title", "at", "initialization", "." ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/prog_class.py#L162-L166
train
rasbt/pyprind
pyprind/prog_class.py
Prog._cache_eta
def _cache_eta(self): """ Prints the estimated time left.""" self._calc_eta() self._cached_output += ' | ETA: ' + self._get_time(self.eta)
python
def _cache_eta(self): """ Prints the estimated time left.""" self._calc_eta() self._cached_output += ' | ETA: ' + self._get_time(self.eta)
[ "def", "_cache_eta", "(", "self", ")", ":", "self", ".", "_calc_eta", "(", ")", "self", ".", "_cached_output", "+=", "' | ETA: '", "+", "self", ".", "_get_time", "(", "self", ".", "eta", ")" ]
Prints the estimated time left.
[ "Prints", "the", "estimated", "time", "left", "." ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/prog_class.py#L168-L171
train
rasbt/pyprind
pyprind/progbar.py
ProgBar._adjust_width
def _adjust_width(self): """Shrinks bar if number of iterations is less than the bar width""" if self.bar_width > self.max_iter: self.bar_width = int(self.max_iter)
python
def _adjust_width(self): """Shrinks bar if number of iterations is less than the bar width""" if self.bar_width > self.max_iter: self.bar_width = int(self.max_iter)
[ "def", "_adjust_width", "(", "self", ")", ":", "if", "self", ".", "bar_width", ">", "self", ".", "max_iter", ":", "self", ".", "bar_width", "=", "int", "(", "self", ".", "max_iter", ")" ]
Shrinks bar if number of iterations is less than the bar width
[ "Shrinks", "bar", "if", "number", "of", "iterations", "is", "less", "than", "the", "bar", "width" ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/progbar.py#L64-L67
train
rasbt/pyprind
pyprind/progpercent.py
ProgPercent._print
def _print(self, force_flush=False): """ Prints formatted percentage and tracked time to the screen.""" self._stream_flush() next_perc = self._calc_percent() if self.update_interval: do_update = time.time() - self.last_time >= self.update_interval elif force_flush: ...
python
def _print(self, force_flush=False): """ Prints formatted percentage and tracked time to the screen.""" self._stream_flush() next_perc = self._calc_percent() if self.update_interval: do_update = time.time() - self.last_time >= self.update_interval elif force_flush: ...
[ "def", "_print", "(", "self", ",", "force_flush", "=", "False", ")", ":", "self", ".", "_stream_flush", "(", ")", "next_perc", "=", "self", ".", "_calc_percent", "(", ")", "if", "self", ".", "update_interval", ":", "do_update", "=", "time", ".", "time", ...
Prints formatted percentage and tracked time to the screen.
[ "Prints", "formatted", "percentage", "and", "tracked", "time", "to", "the", "screen", "." ]
57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a
https://github.com/rasbt/pyprind/blob/57d8611ae86cc2cb71d6f1ab973476fc9bea5b7a/pyprind/progpercent.py#L58-L80
train
bgreenlee/pygtail
pygtail/core.py
Pygtail.next
def next(self): """ Return the next line in the file, updating the offset. """ try: line = self._get_next_line() except StopIteration: # we've reached the end of the file; if we're processing the # rotated log file or the file has been renamed,...
python
def next(self): """ Return the next line in the file, updating the offset. """ try: line = self._get_next_line() except StopIteration: # we've reached the end of the file; if we're processing the # rotated log file or the file has been renamed,...
[ "def", "next", "(", "self", ")", ":", "try", ":", "line", "=", "self", ".", "_get_next_line", "(", ")", "except", "StopIteration", ":", "# we've reached the end of the file; if we're processing the", "# rotated log file or the file has been renamed, we can continue with the act...
Return the next line in the file, updating the offset.
[ "Return", "the", "next", "line", "in", "the", "file", "updating", "the", "offset", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L101-L130
train
bgreenlee/pygtail
pygtail/core.py
Pygtail.read
def read(self): """ Read in all unread lines and return them as a single string. """ lines = self.readlines() if lines: try: return ''.join(lines) except TypeError: return ''.join(force_text(line) for line in lines) ...
python
def read(self): """ Read in all unread lines and return them as a single string. """ lines = self.readlines() if lines: try: return ''.join(lines) except TypeError: return ''.join(force_text(line) for line in lines) ...
[ "def", "read", "(", "self", ")", ":", "lines", "=", "self", ".", "readlines", "(", ")", "if", "lines", ":", "try", ":", "return", "''", ".", "join", "(", "lines", ")", "except", "TypeError", ":", "return", "''", ".", "join", "(", "force_text", "(",...
Read in all unread lines and return them as a single string.
[ "Read", "in", "all", "unread", "lines", "and", "return", "them", "as", "a", "single", "string", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L142-L153
train
bgreenlee/pygtail
pygtail/core.py
Pygtail._filehandle
def _filehandle(self): """ Return a filehandle to the file being tailed, with the position set to the current offset. """ if not self._fh or self._is_closed(): filename = self._rotated_logfile or self.filename if filename.endswith('.gz'): s...
python
def _filehandle(self): """ Return a filehandle to the file being tailed, with the position set to the current offset. """ if not self._fh or self._is_closed(): filename = self._rotated_logfile or self.filename if filename.endswith('.gz'): s...
[ "def", "_filehandle", "(", "self", ")", ":", "if", "not", "self", ".", "_fh", "or", "self", ".", "_is_closed", "(", ")", ":", "filename", "=", "self", ".", "_rotated_logfile", "or", "self", ".", "filename", "if", "filename", ".", "endswith", "(", "'.gz...
Return a filehandle to the file being tailed, with the position set to the current offset.
[ "Return", "a", "filehandle", "to", "the", "file", "being", "tailed", "with", "the", "position", "set", "to", "the", "current", "offset", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L167-L183
train
bgreenlee/pygtail
pygtail/core.py
Pygtail._update_offset_file
def _update_offset_file(self): """ Update the offset file with the current inode and offset. """ if self.on_update: self.on_update() offset = self._filehandle().tell() inode = stat(self.filename).st_ino fh = open(self._offset_file, "w") fh.writ...
python
def _update_offset_file(self): """ Update the offset file with the current inode and offset. """ if self.on_update: self.on_update() offset = self._filehandle().tell() inode = stat(self.filename).st_ino fh = open(self._offset_file, "w") fh.writ...
[ "def", "_update_offset_file", "(", "self", ")", ":", "if", "self", ".", "on_update", ":", "self", ".", "on_update", "(", ")", "offset", "=", "self", ".", "_filehandle", "(", ")", ".", "tell", "(", ")", "inode", "=", "stat", "(", "self", ".", "filenam...
Update the offset file with the current inode and offset.
[ "Update", "the", "offset", "file", "with", "the", "current", "inode", "and", "offset", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L185-L196
train
bgreenlee/pygtail
pygtail/core.py
Pygtail._determine_rotated_logfile
def _determine_rotated_logfile(self): """ We suspect the logfile has been rotated, so try to guess what the rotated filename is, and return it. """ rotated_filename = self._check_rotated_filename_candidates() if rotated_filename and exists(rotated_filename): i...
python
def _determine_rotated_logfile(self): """ We suspect the logfile has been rotated, so try to guess what the rotated filename is, and return it. """ rotated_filename = self._check_rotated_filename_candidates() if rotated_filename and exists(rotated_filename): i...
[ "def", "_determine_rotated_logfile", "(", "self", ")", ":", "rotated_filename", "=", "self", ".", "_check_rotated_filename_candidates", "(", ")", "if", "rotated_filename", "and", "exists", "(", "rotated_filename", ")", ":", "if", "stat", "(", "rotated_filename", ")"...
We suspect the logfile has been rotated, so try to guess what the rotated filename is, and return it.
[ "We", "suspect", "the", "logfile", "has", "been", "rotated", "so", "try", "to", "guess", "what", "the", "rotated", "filename", "is", "and", "return", "it", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L198-L219
train
bgreenlee/pygtail
pygtail/core.py
Pygtail._check_rotated_filename_candidates
def _check_rotated_filename_candidates(self): """ Check for various rotated logfile filename patterns and return the first match we find. """ # savelog(8) candidate = "%s.0" % self.filename if (exists(candidate) and exists("%s.1.gz" % self.filename) and ...
python
def _check_rotated_filename_candidates(self): """ Check for various rotated logfile filename patterns and return the first match we find. """ # savelog(8) candidate = "%s.0" % self.filename if (exists(candidate) and exists("%s.1.gz" % self.filename) and ...
[ "def", "_check_rotated_filename_candidates", "(", "self", ")", ":", "# savelog(8)", "candidate", "=", "\"%s.0\"", "%", "self", ".", "filename", "if", "(", "exists", "(", "candidate", ")", "and", "exists", "(", "\"%s.1.gz\"", "%", "self", ".", "filename", ")", ...
Check for various rotated logfile filename patterns and return the first match we find.
[ "Check", "for", "various", "rotated", "logfile", "filename", "patterns", "and", "return", "the", "first", "match", "we", "find", "." ]
d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890
https://github.com/bgreenlee/pygtail/blob/d2caeb6fece041d5d6c5ecf600dc5a9e46c8d890/pygtail/core.py#L221-L268
train
quiltdata/quilt
compiler/quilt/tools/data_transfer.py
create_s3_session
def create_s3_session(): """ Creates a session with automatic retries on 5xx errors. """ sess = requests.Session() retries = Retry(total=3, backoff_factor=.5, status_forcelist=[500, 502, 503, 504]) sess.mount('https://', HTTPAdapter(max_retries=retries)) ...
python
def create_s3_session(): """ Creates a session with automatic retries on 5xx errors. """ sess = requests.Session() retries = Retry(total=3, backoff_factor=.5, status_forcelist=[500, 502, 503, 504]) sess.mount('https://', HTTPAdapter(max_retries=retries)) ...
[ "def", "create_s3_session", "(", ")", ":", "sess", "=", "requests", ".", "Session", "(", ")", "retries", "=", "Retry", "(", "total", "=", "3", ",", "backoff_factor", "=", ".5", ",", "status_forcelist", "=", "[", "500", ",", "502", ",", "503", ",", "5...
Creates a session with automatic retries on 5xx errors.
[ "Creates", "a", "session", "with", "automatic", "retries", "on", "5xx", "errors", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/data_transfer.py#L48-L57
train
quiltdata/quilt
compiler/quilt/imports.py
FakeLoader.load_module
def load_module(self, fullname): """ Returns an empty module. """ mod = sys.modules.setdefault(fullname, imp.new_module(fullname)) mod.__file__ = self._path mod.__loader__ = self mod.__path__ = [] mod.__package__ = fullname return mod
python
def load_module(self, fullname): """ Returns an empty module. """ mod = sys.modules.setdefault(fullname, imp.new_module(fullname)) mod.__file__ = self._path mod.__loader__ = self mod.__path__ = [] mod.__package__ = fullname return mod
[ "def", "load_module", "(", "self", ",", "fullname", ")", ":", "mod", "=", "sys", ".", "modules", ".", "setdefault", "(", "fullname", ",", "imp", ".", "new_module", "(", "fullname", ")", ")", "mod", ".", "__file__", "=", "self", ".", "_path", "mod", "...
Returns an empty module.
[ "Returns", "an", "empty", "module", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/imports.py#L31-L40
train
quiltdata/quilt
compiler/quilt/imports.py
PackageLoader.load_module
def load_module(self, fullname): """ Returns an object that lazily looks up tables and groups. """ mod = sys.modules.get(fullname) if mod is not None: return mod # We're creating an object rather than a module. It's a hack, but it's approved by Guido: ...
python
def load_module(self, fullname): """ Returns an object that lazily looks up tables and groups. """ mod = sys.modules.get(fullname) if mod is not None: return mod # We're creating an object rather than a module. It's a hack, but it's approved by Guido: ...
[ "def", "load_module", "(", "self", ",", "fullname", ")", ":", "mod", "=", "sys", ".", "modules", ".", "get", "(", "fullname", ")", "if", "mod", "is", "not", "None", ":", "return", "mod", "# We're creating an object rather than a module. It's a hack, but it's appro...
Returns an object that lazily looks up tables and groups.
[ "Returns", "an", "object", "that", "lazily", "looks", "up", "tables", "and", "groups", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/imports.py#L81-L94
train
quiltdata/quilt
compiler/quilt/imports.py
ModuleFinder.find_module
def find_module(self, fullname, path=None): """ Looks up the table based on the module path. """ if not fullname.startswith(self._module_name + '.'): # Not a quilt submodule. return None submodule = fullname[len(self._module_name) + 1:] parts = su...
python
def find_module(self, fullname, path=None): """ Looks up the table based on the module path. """ if not fullname.startswith(self._module_name + '.'): # Not a quilt submodule. return None submodule = fullname[len(self._module_name) + 1:] parts = su...
[ "def", "find_module", "(", "self", ",", "fullname", ",", "path", "=", "None", ")", ":", "if", "not", "fullname", ".", "startswith", "(", "self", ".", "_module_name", "+", "'.'", ")", ":", "# Not a quilt submodule.", "return", "None", "submodule", "=", "ful...
Looks up the table based on the module path.
[ "Looks", "up", "the", "table", "based", "on", "the", "module", "path", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/imports.py#L105-L144
train
quiltdata/quilt
compiler/quilt/tools/build.py
_have_pyspark
def _have_pyspark(): """ Check if we're running Pyspark """ if _have_pyspark.flag is None: try: if PackageStore.get_parquet_lib() is ParquetLib.SPARK: import pyspark # pylint:disable=W0612 _have_pyspark.flag = True else: _h...
python
def _have_pyspark(): """ Check if we're running Pyspark """ if _have_pyspark.flag is None: try: if PackageStore.get_parquet_lib() is ParquetLib.SPARK: import pyspark # pylint:disable=W0612 _have_pyspark.flag = True else: _h...
[ "def", "_have_pyspark", "(", ")", ":", "if", "_have_pyspark", ".", "flag", "is", "None", ":", "try", ":", "if", "PackageStore", ".", "get_parquet_lib", "(", ")", "is", "ParquetLib", ".", "SPARK", ":", "import", "pyspark", "# pylint:disable=W0612", "_have_pyspa...
Check if we're running Pyspark
[ "Check", "if", "we", "re", "running", "Pyspark" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/build.py#L37-L50
train
quiltdata/quilt
compiler/quilt/tools/build.py
_path_hash
def _path_hash(path, transform, kwargs): """ Generate a hash of source file path + transform + args """ sortedargs = ["%s:%r:%s" % (key, value, type(value)) for key, value in sorted(iteritems(kwargs))] srcinfo = "{path}:{transform}:{{{kwargs}}}".format(path=os.path.abspath(path), ...
python
def _path_hash(path, transform, kwargs): """ Generate a hash of source file path + transform + args """ sortedargs = ["%s:%r:%s" % (key, value, type(value)) for key, value in sorted(iteritems(kwargs))] srcinfo = "{path}:{transform}:{{{kwargs}}}".format(path=os.path.abspath(path), ...
[ "def", "_path_hash", "(", "path", ",", "transform", ",", "kwargs", ")", ":", "sortedargs", "=", "[", "\"%s:%r:%s\"", "%", "(", "key", ",", "value", ",", "type", "(", "value", ")", ")", "for", "key", ",", "value", "in", "sorted", "(", "iteritems", "("...
Generate a hash of source file path + transform + args
[ "Generate", "a", "hash", "of", "source", "file", "path", "+", "transform", "+", "args" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/build.py#L53-L62
train
quiltdata/quilt
compiler/quilt/tools/build.py
_gen_glob_data
def _gen_glob_data(dir, pattern, child_table): """Generates node data by globbing a directory for a pattern""" dir = pathlib.Path(dir) matched = False used_names = set() # Used by to_nodename to prevent duplicate names # sorted so that renames (if any) are consistently ordered for filepath in s...
python
def _gen_glob_data(dir, pattern, child_table): """Generates node data by globbing a directory for a pattern""" dir = pathlib.Path(dir) matched = False used_names = set() # Used by to_nodename to prevent duplicate names # sorted so that renames (if any) are consistently ordered for filepath in s...
[ "def", "_gen_glob_data", "(", "dir", ",", "pattern", ",", "child_table", ")", ":", "dir", "=", "pathlib", ".", "Path", "(", "dir", ")", "matched", "=", "False", "used_names", "=", "set", "(", ")", "# Used by to_nodename to prevent duplicate names", "# sorted so ...
Generates node data by globbing a directory for a pattern
[ "Generates", "node", "data", "by", "globbing", "a", "directory", "for", "a", "pattern" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/build.py#L95-L119
train
quiltdata/quilt
compiler/quilt/tools/build.py
_remove_keywords
def _remove_keywords(d): """ copy the dict, filter_keywords Parameters ---------- d : dict """ return { k:v for k, v in iteritems(d) if k not in RESERVED }
python
def _remove_keywords(d): """ copy the dict, filter_keywords Parameters ---------- d : dict """ return { k:v for k, v in iteritems(d) if k not in RESERVED }
[ "def", "_remove_keywords", "(", "d", ")", ":", "return", "{", "k", ":", "v", "for", "k", ",", "v", "in", "iteritems", "(", "d", ")", "if", "k", "not", "in", "RESERVED", "}" ]
copy the dict, filter_keywords Parameters ---------- d : dict
[ "copy", "the", "dict", "filter_keywords" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/build.py#L372-L380
train
quiltdata/quilt
compiler/quilt/tools/build.py
build_package
def build_package(team, username, package, subpath, yaml_path, checks_path=None, dry_run=False, env='default'): """ Builds a package from a given Yaml file and installs it locally. Returns the name of the package. """ def find(key, value): """ find matching nodes r...
python
def build_package(team, username, package, subpath, yaml_path, checks_path=None, dry_run=False, env='default'): """ Builds a package from a given Yaml file and installs it locally. Returns the name of the package. """ def find(key, value): """ find matching nodes r...
[ "def", "build_package", "(", "team", ",", "username", ",", "package", ",", "subpath", ",", "yaml_path", ",", "checks_path", "=", "None", ",", "dry_run", "=", "False", ",", "env", "=", "'default'", ")", ":", "def", "find", "(", "key", ",", "value", ")",...
Builds a package from a given Yaml file and installs it locally. Returns the name of the package.
[ "Builds", "a", "package", "from", "a", "given", "Yaml", "file", "and", "installs", "it", "locally", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/build.py#L454-L490
train
quiltdata/quilt
registry/quilt_server/mail.py
send_comment_email
def send_comment_email(email, package_owner, package_name, commenter): """Send email to owner of package regarding new comment""" link = '{CATALOG_URL}/package/{owner}/{pkg}/comments'.format( CATALOG_URL=CATALOG_URL, owner=package_owner, pkg=package_name) subject = "New comment on {package_owner}/{p...
python
def send_comment_email(email, package_owner, package_name, commenter): """Send email to owner of package regarding new comment""" link = '{CATALOG_URL}/package/{owner}/{pkg}/comments'.format( CATALOG_URL=CATALOG_URL, owner=package_owner, pkg=package_name) subject = "New comment on {package_owner}/{p...
[ "def", "send_comment_email", "(", "email", ",", "package_owner", ",", "package_name", ",", "commenter", ")", ":", "link", "=", "'{CATALOG_URL}/package/{owner}/{pkg}/comments'", ".", "format", "(", "CATALOG_URL", "=", "CATALOG_URL", ",", "owner", "=", "package_owner", ...
Send email to owner of package regarding new comment
[ "Send", "email", "to", "owner", "of", "package", "regarding", "new", "comment" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/mail.py#L75-L84
train
quiltdata/quilt
compiler/quilt/tools/core.py
hash_contents
def hash_contents(contents): """ Creates a hash of key names and hashes in a package dictionary. "contents" must be a GroupNode. """ assert isinstance(contents, GroupNode) result = hashlib.sha256() def _hash_int(value): result.update(struct.pack(">L", value)) def _hash_str(st...
python
def hash_contents(contents): """ Creates a hash of key names and hashes in a package dictionary. "contents" must be a GroupNode. """ assert isinstance(contents, GroupNode) result = hashlib.sha256() def _hash_int(value): result.update(struct.pack(">L", value)) def _hash_str(st...
[ "def", "hash_contents", "(", "contents", ")", ":", "assert", "isinstance", "(", "contents", ",", "GroupNode", ")", "result", "=", "hashlib", ".", "sha256", "(", ")", "def", "_hash_int", "(", "value", ")", ":", "result", ".", "update", "(", "struct", ".",...
Creates a hash of key names and hashes in a package dictionary. "contents" must be a GroupNode.
[ "Creates", "a", "hash", "of", "key", "names", "and", "hashes", "in", "a", "package", "dictionary", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/core.py#L144-L184
train
quiltdata/quilt
compiler/quilt/tools/core.py
find_object_hashes
def find_object_hashes(root, meta_only=False): """ Iterator that returns hashes of all of the file and table nodes. :param root: starting node """ stack = [root] while stack: obj = stack.pop() if not meta_only and isinstance(obj, (TableNode, FileNode)): for objhash i...
python
def find_object_hashes(root, meta_only=False): """ Iterator that returns hashes of all of the file and table nodes. :param root: starting node """ stack = [root] while stack: obj = stack.pop() if not meta_only and isinstance(obj, (TableNode, FileNode)): for objhash i...
[ "def", "find_object_hashes", "(", "root", ",", "meta_only", "=", "False", ")", ":", "stack", "=", "[", "root", "]", "while", "stack", ":", "obj", "=", "stack", ".", "pop", "(", ")", "if", "not", "meta_only", "and", "isinstance", "(", "obj", ",", "(",...
Iterator that returns hashes of all of the file and table nodes. :param root: starting node
[ "Iterator", "that", "returns", "hashes", "of", "all", "of", "the", "file", "and", "table", "nodes", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/core.py#L186-L200
train
quiltdata/quilt
registry/quilt_server/analytics.py
_send_event_task
def _send_event_task(args): """ Actually sends the MixPanel event. Runs in a uwsgi worker process. """ endpoint = args['endpoint'] json_message = args['json_message'] _consumer_impl.send(endpoint, json_message)
python
def _send_event_task(args): """ Actually sends the MixPanel event. Runs in a uwsgi worker process. """ endpoint = args['endpoint'] json_message = args['json_message'] _consumer_impl.send(endpoint, json_message)
[ "def", "_send_event_task", "(", "args", ")", ":", "endpoint", "=", "args", "[", "'endpoint'", "]", "json_message", "=", "args", "[", "'json_message'", "]", "_consumer_impl", ".", "send", "(", "endpoint", ",", "json_message", ")" ]
Actually sends the MixPanel event. Runs in a uwsgi worker process.
[ "Actually", "sends", "the", "MixPanel", "event", ".", "Runs", "in", "a", "uwsgi", "worker", "process", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/analytics.py#L28-L34
train
quiltdata/quilt
registry/quilt_server/analytics.py
AsyncConsumer.send
def send(self, endpoint, json_message): """ Queues the message to be sent. """ _send_event_task.spool(endpoint=endpoint, json_message=json_message)
python
def send(self, endpoint, json_message): """ Queues the message to be sent. """ _send_event_task.spool(endpoint=endpoint, json_message=json_message)
[ "def", "send", "(", "self", ",", "endpoint", ",", "json_message", ")", ":", "_send_event_task", ".", "spool", "(", "endpoint", "=", "endpoint", ",", "json_message", "=", "json_message", ")" ]
Queues the message to be sent.
[ "Queues", "the", "message", "to", "be", "sent", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/analytics.py#L41-L45
train
quiltdata/quilt
compiler/quilt/tools/main.py
main
def main(args=None): """Build and run parser :param args: cli args from tests """ parser = argument_parser() args = parser.parse_args(args) # If 'func' isn't present, something is misconfigured above or no (positional) arg was given. if not hasattr(args, 'func'): args = parser.pars...
python
def main(args=None): """Build and run parser :param args: cli args from tests """ parser = argument_parser() args = parser.parse_args(args) # If 'func' isn't present, something is misconfigured above or no (positional) arg was given. if not hasattr(args, 'func'): args = parser.pars...
[ "def", "main", "(", "args", "=", "None", ")", ":", "parser", "=", "argument_parser", "(", ")", "args", "=", "parser", ".", "parse_args", "(", "args", ")", "# If 'func' isn't present, something is misconfigured above or no (positional) arg was given.", "if", "not", "ha...
Build and run parser :param args: cli args from tests
[ "Build", "and", "run", "parser" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/main.py#L338-L372
train
quiltdata/quilt
compiler/quilt/tools/util.py
is_identifier
def is_identifier(string): """Check if string could be a valid python identifier :param string: string to be tested :returns: True if string can be a python identifier, False otherwise :rtype: bool """ matched = PYTHON_IDENTIFIER_RE.match(string) return bool(matched) and not keyword.iskeywo...
python
def is_identifier(string): """Check if string could be a valid python identifier :param string: string to be tested :returns: True if string can be a python identifier, False otherwise :rtype: bool """ matched = PYTHON_IDENTIFIER_RE.match(string) return bool(matched) and not keyword.iskeywo...
[ "def", "is_identifier", "(", "string", ")", ":", "matched", "=", "PYTHON_IDENTIFIER_RE", ".", "match", "(", "string", ")", "return", "bool", "(", "matched", ")", "and", "not", "keyword", ".", "iskeyword", "(", "string", ")" ]
Check if string could be a valid python identifier :param string: string to be tested :returns: True if string can be a python identifier, False otherwise :rtype: bool
[ "Check", "if", "string", "could", "be", "a", "valid", "python", "identifier" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/util.py#L160-L168
train
quiltdata/quilt
compiler/quilt/tools/util.py
fs_link
def fs_link(path, linkpath, linktype='soft'): """Create a hard or soft link of `path` at `linkpath` Works on Linux/OSX/Windows (Vista+). :param src: File or directory to be linked :param dest: Path of link to create :param linktype: 'soft' or 'hard' """ global WIN_SOFTLINK global WIN_H...
python
def fs_link(path, linkpath, linktype='soft'): """Create a hard or soft link of `path` at `linkpath` Works on Linux/OSX/Windows (Vista+). :param src: File or directory to be linked :param dest: Path of link to create :param linktype: 'soft' or 'hard' """ global WIN_SOFTLINK global WIN_H...
[ "def", "fs_link", "(", "path", ",", "linkpath", ",", "linktype", "=", "'soft'", ")", ":", "global", "WIN_SOFTLINK", "global", "WIN_HARDLINK", "WIN_NO_ERROR", "=", "22", "assert", "linktype", "in", "(", "'soft'", ",", "'hard'", ")", "path", ",", "linkpath", ...
Create a hard or soft link of `path` at `linkpath` Works on Linux/OSX/Windows (Vista+). :param src: File or directory to be linked :param dest: Path of link to create :param linktype: 'soft' or 'hard'
[ "Create", "a", "hard", "or", "soft", "link", "of", "path", "at", "linkpath" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/util.py#L289-L352
train
quiltdata/quilt
compiler/quilt/tools/util.py
FileWithReadProgress.read
def read(self, size=-1): """Read bytes and update the progress bar.""" buf = self._fd.read(size) self._progress_cb(len(buf)) return buf
python
def read(self, size=-1): """Read bytes and update the progress bar.""" buf = self._fd.read(size) self._progress_cb(len(buf)) return buf
[ "def", "read", "(", "self", ",", "size", "=", "-", "1", ")", ":", "buf", "=", "self", ".", "_fd", ".", "read", "(", "size", ")", "self", ".", "_progress_cb", "(", "len", "(", "buf", ")", ")", "return", "buf" ]
Read bytes and update the progress bar.
[ "Read", "bytes", "and", "update", "the", "progress", "bar", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/util.py#L81-L85
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.create_dirs
def create_dirs(self): """ Creates the store directory and its subdirectories. """ if not os.path.isdir(self._path): os.makedirs(self._path) for dir_name in [self.OBJ_DIR, self.TMP_OBJ_DIR, self.PKG_DIR, self.CACHE_DIR]: path = os.path.join(self._path, dir...
python
def create_dirs(self): """ Creates the store directory and its subdirectories. """ if not os.path.isdir(self._path): os.makedirs(self._path) for dir_name in [self.OBJ_DIR, self.TMP_OBJ_DIR, self.PKG_DIR, self.CACHE_DIR]: path = os.path.join(self._path, dir...
[ "def", "create_dirs", "(", "self", ")", ":", "if", "not", "os", ".", "path", ".", "isdir", "(", "self", ".", "_path", ")", ":", "os", ".", "makedirs", "(", "self", ".", "_path", ")", "for", "dir_name", "in", "[", "self", ".", "OBJ_DIR", ",", "sel...
Creates the store directory and its subdirectories.
[ "Creates", "the", "store", "directory", "and", "its", "subdirectories", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L121-L132
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.find_store_dirs
def find_store_dirs(cls): """ Returns the primary package directory and any additional ones from QUILT_PACKAGE_DIRS. """ store_dirs = [default_store_location()] extra_dirs_str = os.getenv('QUILT_PACKAGE_DIRS') if extra_dirs_str: store_dirs.extend(extra_dirs_st...
python
def find_store_dirs(cls): """ Returns the primary package directory and any additional ones from QUILT_PACKAGE_DIRS. """ store_dirs = [default_store_location()] extra_dirs_str = os.getenv('QUILT_PACKAGE_DIRS') if extra_dirs_str: store_dirs.extend(extra_dirs_st...
[ "def", "find_store_dirs", "(", "cls", ")", ":", "store_dirs", "=", "[", "default_store_location", "(", ")", "]", "extra_dirs_str", "=", "os", ".", "getenv", "(", "'QUILT_PACKAGE_DIRS'", ")", "if", "extra_dirs_str", ":", "store_dirs", ".", "extend", "(", "extra...
Returns the primary package directory and any additional ones from QUILT_PACKAGE_DIRS.
[ "Returns", "the", "primary", "package", "directory", "and", "any", "additional", "ones", "from", "QUILT_PACKAGE_DIRS", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L135-L143
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.find_package
def find_package(cls, team, user, package, pkghash=None, store_dir=None): """ Finds an existing package in one of the package directories. """ cls.check_name(team, user, package) dirs = cls.find_store_dirs() for store_dir in dirs: store = PackageStore(store_di...
python
def find_package(cls, team, user, package, pkghash=None, store_dir=None): """ Finds an existing package in one of the package directories. """ cls.check_name(team, user, package) dirs = cls.find_store_dirs() for store_dir in dirs: store = PackageStore(store_di...
[ "def", "find_package", "(", "cls", ",", "team", ",", "user", ",", "package", ",", "pkghash", "=", "None", ",", "store_dir", "=", "None", ")", ":", "cls", ".", "check_name", "(", "team", ",", "user", ",", "package", ")", "dirs", "=", "cls", ".", "fi...
Finds an existing package in one of the package directories.
[ "Finds", "an", "existing", "package", "in", "one", "of", "the", "package", "directories", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L146-L157
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.get_package
def get_package(self, team, user, package, pkghash=None): """ Gets a package from this store. """ self.check_name(team, user, package) path = self.package_path(team, user, package) if not os.path.isdir(path): return None if pkghash is None: ...
python
def get_package(self, team, user, package, pkghash=None): """ Gets a package from this store. """ self.check_name(team, user, package) path = self.package_path(team, user, package) if not os.path.isdir(path): return None if pkghash is None: ...
[ "def", "get_package", "(", "self", ",", "team", ",", "user", ",", "package", ",", "pkghash", "=", "None", ")", ":", "self", ".", "check_name", "(", "team", ",", "user", ",", "package", ")", "path", "=", "self", ".", "package_path", "(", "team", ",", ...
Gets a package from this store.
[ "Gets", "a", "package", "from", "this", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L189-L224
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.install_package
def install_package(self, team, user, package, contents): """ Creates a new package in the default package store and allocates a per-user directory if needed. """ self.check_name(team, user, package) assert contents is not None self.create_dirs() path = s...
python
def install_package(self, team, user, package, contents): """ Creates a new package in the default package store and allocates a per-user directory if needed. """ self.check_name(team, user, package) assert contents is not None self.create_dirs() path = s...
[ "def", "install_package", "(", "self", ",", "team", ",", "user", ",", "package", ",", "contents", ")", ":", "self", ".", "check_name", "(", "team", ",", "user", ",", "package", ")", "assert", "contents", "is", "not", "None", "self", ".", "create_dirs", ...
Creates a new package in the default package store and allocates a per-user directory if needed.
[ "Creates", "a", "new", "package", "in", "the", "default", "package", "store", "and", "allocates", "a", "per", "-", "user", "directory", "if", "needed", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L226-L241
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.create_package_node
def create_package_node(self, team, user, package, dry_run=False): """ Creates a new package and initializes its contents. See `install_package`. """ contents = RootNode(dict()) if dry_run: return contents self.check_name(team, user, package) assert c...
python
def create_package_node(self, team, user, package, dry_run=False): """ Creates a new package and initializes its contents. See `install_package`. """ contents = RootNode(dict()) if dry_run: return contents self.check_name(team, user, package) assert c...
[ "def", "create_package_node", "(", "self", ",", "team", ",", "user", ",", "package", ",", "dry_run", "=", "False", ")", ":", "contents", "=", "RootNode", "(", "dict", "(", ")", ")", "if", "dry_run", ":", "return", "contents", "self", ".", "check_name", ...
Creates a new package and initializes its contents. See `install_package`.
[ "Creates", "a", "new", "package", "and", "initializes", "its", "contents", ".", "See", "install_package", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L243-L262
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.iterpackages
def iterpackages(self): """ Return an iterator over all the packages in the PackageStore. """ pkgdir = os.path.join(self._path, self.PKG_DIR) if not os.path.isdir(pkgdir): return for team in sub_dirs(pkgdir): for user in sub_dirs(self.team_path(tea...
python
def iterpackages(self): """ Return an iterator over all the packages in the PackageStore. """ pkgdir = os.path.join(self._path, self.PKG_DIR) if not os.path.isdir(pkgdir): return for team in sub_dirs(pkgdir): for user in sub_dirs(self.team_path(tea...
[ "def", "iterpackages", "(", "self", ")", ":", "pkgdir", "=", "os", ".", "path", ".", "join", "(", "self", ".", "_path", ",", "self", ".", "PKG_DIR", ")", "if", "not", "os", ".", "path", ".", "isdir", "(", "pkgdir", ")", ":", "return", "for", "tea...
Return an iterator over all the packages in the PackageStore.
[ "Return", "an", "iterator", "over", "all", "the", "packages", "in", "the", "PackageStore", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L284-L296
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.ls_packages
def ls_packages(self): """ List packages in this store. """ packages = [] pkgdir = os.path.join(self._path, self.PKG_DIR) if not os.path.isdir(pkgdir): return [] for team in sub_dirs(pkgdir): for user in sub_dirs(self.team_path(team)): ...
python
def ls_packages(self): """ List packages in this store. """ packages = [] pkgdir = os.path.join(self._path, self.PKG_DIR) if not os.path.isdir(pkgdir): return [] for team in sub_dirs(pkgdir): for user in sub_dirs(self.team_path(team)): ...
[ "def", "ls_packages", "(", "self", ")", ":", "packages", "=", "[", "]", "pkgdir", "=", "os", ".", "path", ".", "join", "(", "self", ".", "_path", ",", "self", ".", "PKG_DIR", ")", "if", "not", "os", ".", "path", ".", "isdir", "(", "pkgdir", ")", ...
List packages in this store.
[ "List", "packages", "in", "this", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L298-L325
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.team_path
def team_path(self, team=None): """ Returns the path to directory with the team's users' package repositories. """ if team is None: team = DEFAULT_TEAM return os.path.join(self._path, self.PKG_DIR, team)
python
def team_path(self, team=None): """ Returns the path to directory with the team's users' package repositories. """ if team is None: team = DEFAULT_TEAM return os.path.join(self._path, self.PKG_DIR, team)
[ "def", "team_path", "(", "self", ",", "team", "=", "None", ")", ":", "if", "team", "is", "None", ":", "team", "=", "DEFAULT_TEAM", "return", "os", ".", "path", ".", "join", "(", "self", ".", "_path", ",", "self", ".", "PKG_DIR", ",", "team", ")" ]
Returns the path to directory with the team's users' package repositories.
[ "Returns", "the", "path", "to", "directory", "with", "the", "team", "s", "users", "package", "repositories", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L327-L333
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.user_path
def user_path(self, team, user): """ Returns the path to directory with the user's package repositories. """ return os.path.join(self.team_path(team), user)
python
def user_path(self, team, user): """ Returns the path to directory with the user's package repositories. """ return os.path.join(self.team_path(team), user)
[ "def", "user_path", "(", "self", ",", "team", ",", "user", ")", ":", "return", "os", ".", "path", ".", "join", "(", "self", ".", "team_path", "(", "team", ")", ",", "user", ")" ]
Returns the path to directory with the user's package repositories.
[ "Returns", "the", "path", "to", "directory", "with", "the", "user", "s", "package", "repositories", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L335-L339
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.package_path
def package_path(self, team, user, package): """ Returns the path to a package repository. """ return os.path.join(self.user_path(team, user), package)
python
def package_path(self, team, user, package): """ Returns the path to a package repository. """ return os.path.join(self.user_path(team, user), package)
[ "def", "package_path", "(", "self", ",", "team", ",", "user", ",", "package", ")", ":", "return", "os", ".", "path", ".", "join", "(", "self", ".", "user_path", "(", "team", ",", "user", ")", ",", "package", ")" ]
Returns the path to a package repository.
[ "Returns", "the", "path", "to", "a", "package", "repository", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L341-L345
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.object_path
def object_path(self, objhash): """ Returns the path to an object file based on its hash. """ return os.path.join(self._path, self.OBJ_DIR, objhash)
python
def object_path(self, objhash): """ Returns the path to an object file based on its hash. """ return os.path.join(self._path, self.OBJ_DIR, objhash)
[ "def", "object_path", "(", "self", ",", "objhash", ")", ":", "return", "os", ".", "path", ".", "join", "(", "self", ".", "_path", ",", "self", ".", "OBJ_DIR", ",", "objhash", ")" ]
Returns the path to an object file based on its hash.
[ "Returns", "the", "path", "to", "an", "object", "file", "based", "on", "its", "hash", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L347-L351
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.prune
def prune(self, objs=None): """ Clean up objects not referenced by any packages. Try to prune all objects by default. """ if objs is None: objdir = os.path.join(self._path, self.OBJ_DIR) objs = os.listdir(objdir) remove_objs = set(objs) fo...
python
def prune(self, objs=None): """ Clean up objects not referenced by any packages. Try to prune all objects by default. """ if objs is None: objdir = os.path.join(self._path, self.OBJ_DIR) objs = os.listdir(objdir) remove_objs = set(objs) fo...
[ "def", "prune", "(", "self", ",", "objs", "=", "None", ")", ":", "if", "objs", "is", "None", ":", "objdir", "=", "os", ".", "path", ".", "join", "(", "self", ".", "_path", ",", "self", ".", "OBJ_DIR", ")", "objs", "=", "os", ".", "listdir", "("...
Clean up objects not referenced by any packages. Try to prune all objects by default.
[ "Clean", "up", "objects", "not", "referenced", "by", "any", "packages", ".", "Try", "to", "prune", "all", "objects", "by", "default", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L365-L383
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.save_dataframe
def save_dataframe(self, dataframe): """ Save a DataFrame to the store. """ storepath = self.temporary_object_path(str(uuid.uuid4())) # switch parquet lib parqlib = self.get_parquet_lib() if isinstance(dataframe, pd.DataFrame): #parqlib is ParquetLib....
python
def save_dataframe(self, dataframe): """ Save a DataFrame to the store. """ storepath = self.temporary_object_path(str(uuid.uuid4())) # switch parquet lib parqlib = self.get_parquet_lib() if isinstance(dataframe, pd.DataFrame): #parqlib is ParquetLib....
[ "def", "save_dataframe", "(", "self", ",", "dataframe", ")", ":", "storepath", "=", "self", ".", "temporary_object_path", "(", "str", "(", "uuid", ".", "uuid4", "(", ")", ")", ")", "# switch parquet lib", "parqlib", "=", "self", ".", "get_parquet_lib", "(", ...
Save a DataFrame to the store.
[ "Save", "a", "DataFrame", "to", "the", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L436-L472
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.load_numpy
def load_numpy(self, hash_list): """ Loads a numpy array. """ assert len(hash_list) == 1 self._check_hashes(hash_list) with open(self.object_path(hash_list[0]), 'rb') as fd: return np.load(fd, allow_pickle=False)
python
def load_numpy(self, hash_list): """ Loads a numpy array. """ assert len(hash_list) == 1 self._check_hashes(hash_list) with open(self.object_path(hash_list[0]), 'rb') as fd: return np.load(fd, allow_pickle=False)
[ "def", "load_numpy", "(", "self", ",", "hash_list", ")", ":", "assert", "len", "(", "hash_list", ")", "==", "1", "self", ".", "_check_hashes", "(", "hash_list", ")", "with", "open", "(", "self", ".", "object_path", "(", "hash_list", "[", "0", "]", ")",...
Loads a numpy array.
[ "Loads", "a", "numpy", "array", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L474-L481
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.get_file
def get_file(self, hash_list): """ Returns the path of the file - but verifies that the hash is actually present. """ assert len(hash_list) == 1 self._check_hashes(hash_list) return self.object_path(hash_list[0])
python
def get_file(self, hash_list): """ Returns the path of the file - but verifies that the hash is actually present. """ assert len(hash_list) == 1 self._check_hashes(hash_list) return self.object_path(hash_list[0])
[ "def", "get_file", "(", "self", ",", "hash_list", ")", ":", "assert", "len", "(", "hash_list", ")", "==", "1", "self", ".", "_check_hashes", "(", "hash_list", ")", "return", "self", ".", "object_path", "(", "hash_list", "[", "0", "]", ")" ]
Returns the path of the file - but verifies that the hash is actually present.
[ "Returns", "the", "path", "of", "the", "file", "-", "but", "verifies", "that", "the", "hash", "is", "actually", "present", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L493-L499
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.save_metadata
def save_metadata(self, metadata): """ Save metadata to the store. """ if metadata in (None, {}): return None if SYSTEM_METADATA in metadata: raise StoreException("Not allowed to store %r in metadata" % SYSTEM_METADATA) path = self.temporary_obje...
python
def save_metadata(self, metadata): """ Save metadata to the store. """ if metadata in (None, {}): return None if SYSTEM_METADATA in metadata: raise StoreException("Not allowed to store %r in metadata" % SYSTEM_METADATA) path = self.temporary_obje...
[ "def", "save_metadata", "(", "self", ",", "metadata", ")", ":", "if", "metadata", "in", "(", "None", ",", "{", "}", ")", ":", "return", "None", "if", "SYSTEM_METADATA", "in", "metadata", ":", "raise", "StoreException", "(", "\"Not allowed to store %r in metada...
Save metadata to the store.
[ "Save", "metadata", "to", "the", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L521-L544
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.save_package_contents
def save_package_contents(self, root, team, owner, pkgname): """ Saves the in-memory contents to a file in the local package repository. """ assert isinstance(root, RootNode) instance_hash = hash_contents(root) pkg_path = self.package_path(team, owner, pkgname) ...
python
def save_package_contents(self, root, team, owner, pkgname): """ Saves the in-memory contents to a file in the local package repository. """ assert isinstance(root, RootNode) instance_hash = hash_contents(root) pkg_path = self.package_path(team, owner, pkgname) ...
[ "def", "save_package_contents", "(", "self", ",", "root", ",", "team", ",", "owner", ",", "pkgname", ")", ":", "assert", "isinstance", "(", "root", ",", "RootNode", ")", "instance_hash", "=", "hash_contents", "(", "root", ")", "pkg_path", "=", "self", ".",...
Saves the in-memory contents to a file in the local package repository.
[ "Saves", "the", "in", "-", "memory", "contents", "to", "a", "file", "in", "the", "local", "package", "repository", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L546-L570
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore._move_to_store
def _move_to_store(self, srcpath, objhash): """ Make the object read-only and move it to the store. """ destpath = self.object_path(objhash) if os.path.exists(destpath): # Windows: delete any existing object at the destination. os.chmod(destpath, S_IWUSR) ...
python
def _move_to_store(self, srcpath, objhash): """ Make the object read-only and move it to the store. """ destpath = self.object_path(objhash) if os.path.exists(destpath): # Windows: delete any existing object at the destination. os.chmod(destpath, S_IWUSR) ...
[ "def", "_move_to_store", "(", "self", ",", "srcpath", ",", "objhash", ")", ":", "destpath", "=", "self", ".", "object_path", "(", "objhash", ")", "if", "os", ".", "path", ".", "exists", "(", "destpath", ")", ":", "# Windows: delete any existing object at the d...
Make the object read-only and move it to the store.
[ "Make", "the", "object", "read", "-", "only", "and", "move", "it", "to", "the", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L572-L582
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.add_to_package_numpy
def add_to_package_numpy(self, root, ndarray, node_path, target, source_path, transform, custom_meta): """ Save a Numpy array to the store. """ filehash = self.save_numpy(ndarray) metahash = self.save_metadata(custom_meta) self._add_to_package_contents(root, node_path, [f...
python
def add_to_package_numpy(self, root, ndarray, node_path, target, source_path, transform, custom_meta): """ Save a Numpy array to the store. """ filehash = self.save_numpy(ndarray) metahash = self.save_metadata(custom_meta) self._add_to_package_contents(root, node_path, [f...
[ "def", "add_to_package_numpy", "(", "self", ",", "root", ",", "ndarray", ",", "node_path", ",", "target", ",", "source_path", ",", "transform", ",", "custom_meta", ")", ":", "filehash", "=", "self", ".", "save_numpy", "(", "ndarray", ")", "metahash", "=", ...
Save a Numpy array to the store.
[ "Save", "a", "Numpy", "array", "to", "the", "store", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L638-L644
train
quiltdata/quilt
compiler/quilt/tools/store.py
PackageStore.add_to_package_package_tree
def add_to_package_package_tree(self, root, node_path, pkgnode): """ Adds a package or sub-package tree from an existing package to this package's contents. """ if node_path: ptr = root for node in node_path[:-1]: ptr = ptr.children.setdefa...
python
def add_to_package_package_tree(self, root, node_path, pkgnode): """ Adds a package or sub-package tree from an existing package to this package's contents. """ if node_path: ptr = root for node in node_path[:-1]: ptr = ptr.children.setdefa...
[ "def", "add_to_package_package_tree", "(", "self", ",", "root", ",", "node_path", ",", "pkgnode", ")", ":", "if", "node_path", ":", "ptr", "=", "root", "for", "node", "in", "node_path", "[", ":", "-", "1", "]", ":", "ptr", "=", "ptr", ".", "children", ...
Adds a package or sub-package tree from an existing package to this package's contents.
[ "Adds", "a", "package", "or", "sub", "-", "package", "tree", "from", "an", "existing", "package", "to", "this", "package", "s", "contents", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/store.py#L658-L671
train
quiltdata/quilt
compiler/quilt/__init__.py
_install_interrupt_handler
def _install_interrupt_handler(): """Suppress KeyboardInterrupt traceback display in specific situations If not running in dev mode, and if executed from the command line, then we raise SystemExit instead of KeyboardInterrupt. This provides a clean exit. :returns: None if no action is taken, orig...
python
def _install_interrupt_handler(): """Suppress KeyboardInterrupt traceback display in specific situations If not running in dev mode, and if executed from the command line, then we raise SystemExit instead of KeyboardInterrupt. This provides a clean exit. :returns: None if no action is taken, orig...
[ "def", "_install_interrupt_handler", "(", ")", ":", "# These would clutter the quilt.x namespace, so they're imported here instead.", "import", "os", "import", "sys", "import", "signal", "import", "pkg_resources", "from", ".", "tools", "import", "const", "# Check to see what en...
Suppress KeyboardInterrupt traceback display in specific situations If not running in dev mode, and if executed from the command line, then we raise SystemExit instead of KeyboardInterrupt. This provides a clean exit. :returns: None if no action is taken, original interrupt handler otherwise
[ "Suppress", "KeyboardInterrupt", "traceback", "display", "in", "specific", "situations" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/__init__.py#L23-L80
train
quiltdata/quilt
compiler/quilt/nodes.py
GroupNode._data_keys
def _data_keys(self): """ every child key referencing a dataframe """ return [name for name, child in iteritems(self._children) if not isinstance(child, GroupNode)]
python
def _data_keys(self): """ every child key referencing a dataframe """ return [name for name, child in iteritems(self._children) if not isinstance(child, GroupNode)]
[ "def", "_data_keys", "(", "self", ")", ":", "return", "[", "name", "for", "name", ",", "child", "in", "iteritems", "(", "self", ".", "_children", ")", "if", "not", "isinstance", "(", "child", ",", "GroupNode", ")", "]" ]
every child key referencing a dataframe
[ "every", "child", "key", "referencing", "a", "dataframe" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/nodes.py#L162-L166
train
quiltdata/quilt
compiler/quilt/nodes.py
GroupNode._group_keys
def _group_keys(self): """ every child key referencing a group that is not a dataframe """ return [name for name, child in iteritems(self._children) if isinstance(child, GroupNode)]
python
def _group_keys(self): """ every child key referencing a group that is not a dataframe """ return [name for name, child in iteritems(self._children) if isinstance(child, GroupNode)]
[ "def", "_group_keys", "(", "self", ")", ":", "return", "[", "name", "for", "name", ",", "child", "in", "iteritems", "(", "self", ".", "_children", ")", "if", "isinstance", "(", "child", ",", "GroupNode", ")", "]" ]
every child key referencing a group that is not a dataframe
[ "every", "child", "key", "referencing", "a", "group", "that", "is", "not", "a", "dataframe" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/nodes.py#L168-L172
train
quiltdata/quilt
compiler/quilt/nodes.py
GroupNode._data
def _data(self, asa=None): """ Merges all child dataframes. Only works for dataframes stored on disk - not in memory. """ hash_list = [] stack = [self] alldfs = True store = None while stack: node = stack.pop() if isinstance(node, G...
python
def _data(self, asa=None): """ Merges all child dataframes. Only works for dataframes stored on disk - not in memory. """ hash_list = [] stack = [self] alldfs = True store = None while stack: node = stack.pop() if isinstance(node, G...
[ "def", "_data", "(", "self", ",", "asa", "=", "None", ")", ":", "hash_list", "=", "[", "]", "stack", "=", "[", "self", "]", "alldfs", "=", "True", "store", "=", "None", "while", "stack", ":", "node", "=", "stack", ".", "pop", "(", ")", "if", "i...
Merges all child dataframes. Only works for dataframes stored on disk - not in memory.
[ "Merges", "all", "child", "dataframes", ".", "Only", "works", "for", "dataframes", "stored", "on", "disk", "-", "not", "in", "memory", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/nodes.py#L184-L220
train
quiltdata/quilt
compiler/quilt/nodes.py
GroupNode._set
def _set(self, path, value, build_dir=''): """Create and set a node by path This creates a node from a filename or pandas DataFrame. If `value` is a filename, it must be relative to `build_dir`. `value` is stored as the export path. `build_dir` defaults to the current dire...
python
def _set(self, path, value, build_dir=''): """Create and set a node by path This creates a node from a filename or pandas DataFrame. If `value` is a filename, it must be relative to `build_dir`. `value` is stored as the export path. `build_dir` defaults to the current dire...
[ "def", "_set", "(", "self", ",", "path", ",", "value", ",", "build_dir", "=", "''", ")", ":", "assert", "isinstance", "(", "path", ",", "list", ")", "and", "len", "(", "path", ")", ">", "0", "if", "isinstance", "(", "value", ",", "pd", ".", "Data...
Create and set a node by path This creates a node from a filename or pandas DataFrame. If `value` is a filename, it must be relative to `build_dir`. `value` is stored as the export path. `build_dir` defaults to the current directory, but may be any arbitrary directory ...
[ "Create", "and", "set", "a", "node", "by", "path" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/nodes.py#L222-L276
train
quiltdata/quilt
registry/quilt_server/views.py
handle_api_exception
def handle_api_exception(error): """ Converts an API exception into an error response. """ _mp_track( type="exception", status_code=error.status_code, message=error.message, ) response = jsonify(dict( message=error.message )) response.status_code = error....
python
def handle_api_exception(error): """ Converts an API exception into an error response. """ _mp_track( type="exception", status_code=error.status_code, message=error.message, ) response = jsonify(dict( message=error.message )) response.status_code = error....
[ "def", "handle_api_exception", "(", "error", ")", ":", "_mp_track", "(", "type", "=", "\"exception\"", ",", "status_code", "=", "error", ".", "status_code", ",", "message", "=", "error", ".", "message", ",", ")", "response", "=", "jsonify", "(", "dict", "(...
Converts an API exception into an error response.
[ "Converts", "an", "API", "exception", "into", "an", "error", "response", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/views.py#L188-L202
train
quiltdata/quilt
registry/quilt_server/views.py
api
def api(require_login=True, schema=None, enabled=True, require_admin=False, require_anonymous=False): """ Decorator for API requests. Handles auth and adds the username as the first argument. """ if require_admin: require_login = True if schema is not None: Draft4Validat...
python
def api(require_login=True, schema=None, enabled=True, require_admin=False, require_anonymous=False): """ Decorator for API requests. Handles auth and adds the username as the first argument. """ if require_admin: require_login = True if schema is not None: Draft4Validat...
[ "def", "api", "(", "require_login", "=", "True", ",", "schema", "=", "None", ",", "enabled", "=", "True", ",", "require_admin", "=", "False", ",", "require_anonymous", "=", "False", ")", ":", "if", "require_admin", ":", "require_login", "=", "True", "if", ...
Decorator for API requests. Handles auth and adds the username as the first argument.
[ "Decorator", "for", "API", "requests", ".", "Handles", "auth", "and", "adds", "the", "username", "as", "the", "first", "argument", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/views.py#L204-L283
train
quiltdata/quilt
registry/quilt_server/views.py
_private_packages_allowed
def _private_packages_allowed(): """ Checks if the current user is allowed to create private packages. In the public cloud, the user needs to be on a paid plan. There are no restrictions in other deployments. """ if not HAVE_PAYMENTS or TEAM_ID: return True customer = _get_or_creat...
python
def _private_packages_allowed(): """ Checks if the current user is allowed to create private packages. In the public cloud, the user needs to be on a paid plan. There are no restrictions in other deployments. """ if not HAVE_PAYMENTS or TEAM_ID: return True customer = _get_or_creat...
[ "def", "_private_packages_allowed", "(", ")", ":", "if", "not", "HAVE_PAYMENTS", "or", "TEAM_ID", ":", "return", "True", "customer", "=", "_get_or_create_customer", "(", ")", "plan", "=", "_get_customer_plan", "(", "customer", ")", "return", "plan", "!=", "Payme...
Checks if the current user is allowed to create private packages. In the public cloud, the user needs to be on a paid plan. There are no restrictions in other deployments.
[ "Checks", "if", "the", "current", "user", "is", "allowed", "to", "create", "private", "packages", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/registry/quilt_server/views.py#L566-L578
train
quiltdata/quilt
compiler/quilt/tools/command.py
_create_auth
def _create_auth(team, timeout=None): """ Reads the credentials, updates the access token if necessary, and returns it. """ url = get_registry_url(team) contents = _load_auth() auth = contents.get(url) if auth is not None: # If the access token expires within a minute, update it. ...
python
def _create_auth(team, timeout=None): """ Reads the credentials, updates the access token if necessary, and returns it. """ url = get_registry_url(team) contents = _load_auth() auth = contents.get(url) if auth is not None: # If the access token expires within a minute, update it. ...
[ "def", "_create_auth", "(", "team", ",", "timeout", "=", "None", ")", ":", "url", "=", "get_registry_url", "(", "team", ")", "contents", "=", "_load_auth", "(", ")", "auth", "=", "contents", ".", "get", "(", "url", ")", "if", "auth", "is", "not", "No...
Reads the credentials, updates the access token if necessary, and returns it.
[ "Reads", "the", "credentials", "updates", "the", "access", "token", "if", "necessary", "and", "returns", "it", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L227-L248
train
quiltdata/quilt
compiler/quilt/tools/command.py
_create_session
def _create_session(team, auth): """ Creates a session object to be used for `push`, `install`, etc. """ session = requests.Session() session.hooks.update(dict( response=partial(_handle_response, team) )) session.headers.update({ "Content-Type": "application/json", "A...
python
def _create_session(team, auth): """ Creates a session object to be used for `push`, `install`, etc. """ session = requests.Session() session.hooks.update(dict( response=partial(_handle_response, team) )) session.headers.update({ "Content-Type": "application/json", "A...
[ "def", "_create_session", "(", "team", ",", "auth", ")", ":", "session", "=", "requests", ".", "Session", "(", ")", "session", ".", "hooks", ".", "update", "(", "dict", "(", "response", "=", "partial", "(", "_handle_response", ",", "team", ")", ")", ")...
Creates a session object to be used for `push`, `install`, etc.
[ "Creates", "a", "session", "object", "to", "be", "used", "for", "push", "install", "etc", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L250-L269
train
quiltdata/quilt
compiler/quilt/tools/command.py
_get_session
def _get_session(team, timeout=None): """ Creates a session or returns an existing session. """ global _sessions # pylint:disable=C0103 session = _sessions.get(team) if session is None: auth = _create_auth(team, timeout) _sessions[team] = session = _create_session(team...
python
def _get_session(team, timeout=None): """ Creates a session or returns an existing session. """ global _sessions # pylint:disable=C0103 session = _sessions.get(team) if session is None: auth = _create_auth(team, timeout) _sessions[team] = session = _create_session(team...
[ "def", "_get_session", "(", "team", ",", "timeout", "=", "None", ")", ":", "global", "_sessions", "# pylint:disable=C0103", "session", "=", "_sessions", ".", "get", "(", "team", ")", "if", "session", "is", "None", ":", "auth", "=", "_create_auth", "(", "te...
Creates a session or returns an existing session.
[ "Creates", "a", "session", "or", "returns", "an", "existing", "session", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L273-L285
train
quiltdata/quilt
compiler/quilt/tools/command.py
_check_team_login
def _check_team_login(team): """ Disallow simultaneous public cloud and team logins. """ contents = _load_auth() for auth in itervalues(contents): existing_team = auth.get('team') if team and team != existing_team: raise CommandException( "Can't log in as...
python
def _check_team_login(team): """ Disallow simultaneous public cloud and team logins. """ contents = _load_auth() for auth in itervalues(contents): existing_team = auth.get('team') if team and team != existing_team: raise CommandException( "Can't log in as...
[ "def", "_check_team_login", "(", "team", ")", ":", "contents", "=", "_load_auth", "(", ")", "for", "auth", "in", "itervalues", "(", "contents", ")", ":", "existing_team", "=", "auth", ".", "get", "(", "'team'", ")", "if", "team", "and", "team", "!=", "...
Disallow simultaneous public cloud and team logins.
[ "Disallow", "simultaneous", "public", "cloud", "and", "team", "logins", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L351-L366
train
quiltdata/quilt
compiler/quilt/tools/command.py
_check_team_exists
def _check_team_exists(team): """ Check that the team registry actually exists. """ if team is None: return hostname = urlparse(get_registry_url(team)).hostname try: socket.gethostbyname(hostname) except IOError: try: # Do we have internet? so...
python
def _check_team_exists(team): """ Check that the team registry actually exists. """ if team is None: return hostname = urlparse(get_registry_url(team)).hostname try: socket.gethostbyname(hostname) except IOError: try: # Do we have internet? so...
[ "def", "_check_team_exists", "(", "team", ")", ":", "if", "team", "is", "None", ":", "return", "hostname", "=", "urlparse", "(", "get_registry_url", "(", "team", ")", ")", ".", "hostname", "try", ":", "socket", ".", "gethostbyname", "(", "hostname", ")", ...
Check that the team registry actually exists.
[ "Check", "that", "the", "team", "registry", "actually", "exists", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L375-L393
train
quiltdata/quilt
compiler/quilt/tools/command.py
login_with_token
def login_with_token(refresh_token, team=None): """ Authenticate using an existing token. """ # Get an access token and a new refresh token. _check_team_id(team) auth = _update_auth(team, refresh_token) url = get_registry_url(team) contents = _load_auth() contents[url] = auth _s...
python
def login_with_token(refresh_token, team=None): """ Authenticate using an existing token. """ # Get an access token and a new refresh token. _check_team_id(team) auth = _update_auth(team, refresh_token) url = get_registry_url(team) contents = _load_auth() contents[url] = auth _s...
[ "def", "login_with_token", "(", "refresh_token", ",", "team", "=", "None", ")", ":", "# Get an access token and a new refresh token.", "_check_team_id", "(", "team", ")", "auth", "=", "_update_auth", "(", "team", ",", "refresh_token", ")", "url", "=", "get_registry_...
Authenticate using an existing token.
[ "Authenticate", "using", "an", "existing", "token", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L417-L430
train
quiltdata/quilt
compiler/quilt/tools/command.py
generate
def generate(directory, outfilename=DEFAULT_BUILDFILE): """ Generate a build-file for quilt build from a directory of source files. """ try: buildfilepath = generate_build_file(directory, outfilename=outfilename) except BuildException as builderror: raise CommandException(str(bui...
python
def generate(directory, outfilename=DEFAULT_BUILDFILE): """ Generate a build-file for quilt build from a directory of source files. """ try: buildfilepath = generate_build_file(directory, outfilename=outfilename) except BuildException as builderror: raise CommandException(str(bui...
[ "def", "generate", "(", "directory", ",", "outfilename", "=", "DEFAULT_BUILDFILE", ")", ":", "try", ":", "buildfilepath", "=", "generate_build_file", "(", "directory", ",", "outfilename", "=", "outfilename", ")", "except", "BuildException", "as", "builderror", ":"...
Generate a build-file for quilt build from a directory of source files.
[ "Generate", "a", "build", "-", "file", "for", "quilt", "build", "from", "a", "directory", "of", "source", "files", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L445-L455
train
quiltdata/quilt
compiler/quilt/tools/command.py
build
def build(package, path=None, dry_run=False, env='default', force=False, build_file=False): """ Compile a Quilt data package, either from a build file or an existing package node. :param package: short package specifier, i.e. 'team:user/pkg' :param path: file path, git url, or existing package node ...
python
def build(package, path=None, dry_run=False, env='default', force=False, build_file=False): """ Compile a Quilt data package, either from a build file or an existing package node. :param package: short package specifier, i.e. 'team:user/pkg' :param path: file path, git url, or existing package node ...
[ "def", "build", "(", "package", ",", "path", "=", "None", ",", "dry_run", "=", "False", ",", "env", "=", "'default'", ",", "force", "=", "False", ",", "build_file", "=", "False", ")", ":", "# TODO: rename 'path' param to 'target'?", "team", ",", "_", ",", ...
Compile a Quilt data package, either from a build file or an existing package node. :param package: short package specifier, i.e. 'team:user/pkg' :param path: file path, git url, or existing package node
[ "Compile", "a", "Quilt", "data", "package", "either", "from", "a", "build", "file", "or", "an", "existing", "package", "node", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L502-L533
train
quiltdata/quilt
compiler/quilt/tools/command.py
build_from_node
def build_from_node(package, node): """ Compile a Quilt data package from an existing package node. """ team, owner, pkg, subpath = parse_package(package, allow_subpath=True) _check_team_id(team) store = PackageStore() pkg_root = get_or_create_package(store, team, owner, pkg, subpath) ...
python
def build_from_node(package, node): """ Compile a Quilt data package from an existing package node. """ team, owner, pkg, subpath = parse_package(package, allow_subpath=True) _check_team_id(team) store = PackageStore() pkg_root = get_or_create_package(store, team, owner, pkg, subpath) ...
[ "def", "build_from_node", "(", "package", ",", "node", ")", ":", "team", ",", "owner", ",", "pkg", ",", "subpath", "=", "parse_package", "(", "package", ",", "allow_subpath", "=", "True", ")", "_check_team_id", "(", "team", ")", "store", "=", "PackageStore...
Compile a Quilt data package from an existing package node.
[ "Compile", "a", "Quilt", "data", "package", "from", "an", "existing", "package", "node", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L568-L618
train
quiltdata/quilt
compiler/quilt/tools/command.py
build_from_path
def build_from_path(package, path, dry_run=False, env='default', outfilename=DEFAULT_BUILDFILE): """ Compile a Quilt data package from a build file. Path can be a directory, in which case the build file will be generated automatically. """ team, owner, pkg, subpath = parse_package(package, allow_sub...
python
def build_from_path(package, path, dry_run=False, env='default', outfilename=DEFAULT_BUILDFILE): """ Compile a Quilt data package from a build file. Path can be a directory, in which case the build file will be generated automatically. """ team, owner, pkg, subpath = parse_package(package, allow_sub...
[ "def", "build_from_path", "(", "package", ",", "path", ",", "dry_run", "=", "False", ",", "env", "=", "'default'", ",", "outfilename", "=", "DEFAULT_BUILDFILE", ")", ":", "team", ",", "owner", ",", "pkg", ",", "subpath", "=", "parse_package", "(", "package...
Compile a Quilt data package from a build file. Path can be a directory, in which case the build file will be generated automatically.
[ "Compile", "a", "Quilt", "data", "package", "from", "a", "build", "file", ".", "Path", "can", "be", "a", "directory", "in", "which", "case", "the", "build", "file", "will", "be", "generated", "automatically", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L620-L646
train
quiltdata/quilt
compiler/quilt/tools/command.py
log
def log(package): """ List all of the changes to a package on the server. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/log/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, ...
python
def log(package): """ List all of the changes to a package on the server. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/log/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, ...
[ "def", "log", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "response", "=", "session", ".", "get", "(", "\"{url}/api/log/{owner}/{pkg}/\"", ".", "fo...
List all of the changes to a package on the server.
[ "List", "all", "of", "the", "changes", "to", "a", "package", "on", "the", "server", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L648-L669
train
quiltdata/quilt
compiler/quilt/tools/command.py
push
def push(package, is_public=False, is_team=False, reupload=False, hash=None): """ Push a Quilt data package to the server """ team, owner, pkg, subpath = parse_package(package, allow_subpath=True) _check_team_id(team) session = _get_session(team) store, pkgroot = PackageStore.find_package(t...
python
def push(package, is_public=False, is_team=False, reupload=False, hash=None): """ Push a Quilt data package to the server """ team, owner, pkg, subpath = parse_package(package, allow_subpath=True) _check_team_id(team) session = _get_session(team) store, pkgroot = PackageStore.find_package(t...
[ "def", "push", "(", "package", ",", "is_public", "=", "False", ",", "is_team", "=", "False", ",", "reupload", "=", "False", ",", "hash", "=", "None", ")", ":", "team", ",", "owner", ",", "pkg", ",", "subpath", "=", "parse_package", "(", "package", ",...
Push a Quilt data package to the server
[ "Push", "a", "Quilt", "data", "package", "to", "the", "server" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L671-L766
train
quiltdata/quilt
compiler/quilt/tools/command.py
version_list
def version_list(package): """ List the versions of a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/version/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, pkg=p...
python
def version_list(package): """ List the versions of a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/version/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, pkg=p...
[ "def", "version_list", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "response", "=", "session", ".", "get", "(", "\"{url}/api/version/{owner}/{pkg}/\"",...
List the versions of a package.
[ "List", "the", "versions", "of", "a", "package", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L768-L784
train
quiltdata/quilt
compiler/quilt/tools/command.py
version_add
def version_add(package, version, pkghash, force=False): """ Add a new version for a given package hash. Version format needs to follow PEP 440. Versions are permanent - once created, they cannot be modified or deleted. """ team, owner, pkg = parse_package(package) session = _get_session(te...
python
def version_add(package, version, pkghash, force=False): """ Add a new version for a given package hash. Version format needs to follow PEP 440. Versions are permanent - once created, they cannot be modified or deleted. """ team, owner, pkg = parse_package(package) session = _get_session(te...
[ "def", "version_add", "(", "package", ",", "version", ",", "pkghash", ",", "force", "=", "False", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "try", ":", "Vers...
Add a new version for a given package hash. Version format needs to follow PEP 440. Versions are permanent - once created, they cannot be modified or deleted.
[ "Add", "a", "new", "version", "for", "a", "given", "package", "hash", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L786-L819
train
quiltdata/quilt
compiler/quilt/tools/command.py
tag_list
def tag_list(package): """ List the tags of a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/tag/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, pkg=pkg )...
python
def tag_list(package): """ List the tags of a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) response = session.get( "{url}/api/tag/{owner}/{pkg}/".format( url=get_registry_url(team), owner=owner, pkg=pkg )...
[ "def", "tag_list", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "response", "=", "session", ".", "get", "(", "\"{url}/api/tag/{owner}/{pkg}/\"", ".", ...
List the tags of a package.
[ "List", "the", "tags", "of", "a", "package", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L821-L837
train
quiltdata/quilt
compiler/quilt/tools/command.py
tag_add
def tag_add(package, tag, pkghash): """ Add a new tag for a given package hash. Unlike versions, tags can have an arbitrary format, and can be modified and deleted. When a package is pushed, it gets the "latest" tag. """ team, owner, pkg = parse_package(package) session = _get_session(...
python
def tag_add(package, tag, pkghash): """ Add a new tag for a given package hash. Unlike versions, tags can have an arbitrary format, and can be modified and deleted. When a package is pushed, it gets the "latest" tag. """ team, owner, pkg = parse_package(package) session = _get_session(...
[ "def", "tag_add", "(", "package", ",", "tag", ",", "pkghash", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "session", ".", "put", "(", "\"{url}/api/tag/{owner}/{pkg...
Add a new tag for a given package hash. Unlike versions, tags can have an arbitrary format, and can be modified and deleted. When a package is pushed, it gets the "latest" tag.
[ "Add", "a", "new", "tag", "for", "a", "given", "package", "hash", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L839-L861
train
quiltdata/quilt
compiler/quilt/tools/command.py
install_via_requirements
def install_via_requirements(requirements_str, force=False): """ Download multiple Quilt data packages via quilt.xml requirements file. """ if requirements_str[0] == '@': path = requirements_str[1:] if os.path.isfile(path): yaml_data = load_yaml(path) if 'packages...
python
def install_via_requirements(requirements_str, force=False): """ Download multiple Quilt data packages via quilt.xml requirements file. """ if requirements_str[0] == '@': path = requirements_str[1:] if os.path.isfile(path): yaml_data = load_yaml(path) if 'packages...
[ "def", "install_via_requirements", "(", "requirements_str", ",", "force", "=", "False", ")", ":", "if", "requirements_str", "[", "0", "]", "==", "'@'", ":", "path", "=", "requirements_str", "[", "1", ":", "]", "if", "os", ".", "path", ".", "isfile", "(",...
Download multiple Quilt data packages via quilt.xml requirements file.
[ "Download", "multiple", "Quilt", "data", "packages", "via", "quilt", ".", "xml", "requirements", "file", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L879-L895
train
quiltdata/quilt
compiler/quilt/tools/command.py
access_list
def access_list(package): """ Print list of users who can access a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) lookup_url = "{url}/api/access/{owner}/{pkg}/".format(url=get_registry_url(team), owner=owner, pkg=pkg) response = session.get(lookup_url) ...
python
def access_list(package): """ Print list of users who can access a package. """ team, owner, pkg = parse_package(package) session = _get_session(team) lookup_url = "{url}/api/access/{owner}/{pkg}/".format(url=get_registry_url(team), owner=owner, pkg=pkg) response = session.get(lookup_url) ...
[ "def", "access_list", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "session", "=", "_get_session", "(", "team", ")", "lookup_url", "=", "\"{url}/api/access/{owner}/{pkg}/\"", ".", "format", "(", "url", ...
Print list of users who can access a package.
[ "Print", "list", "of", "users", "who", "can", "access", "a", "package", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1061-L1074
train
quiltdata/quilt
compiler/quilt/tools/command.py
delete
def delete(package): """ Delete a package from the server. Irreversibly deletes the package along with its history, tags, versions, etc. """ team, owner, pkg = parse_package(package) answer = input( "Are you sure you want to delete this package and its entire history? " "Type '...
python
def delete(package): """ Delete a package from the server. Irreversibly deletes the package along with its history, tags, versions, etc. """ team, owner, pkg = parse_package(package) answer = input( "Are you sure you want to delete this package and its entire history? " "Type '...
[ "def", "delete", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "answer", "=", "input", "(", "\"Are you sure you want to delete this package and its entire history? \"", "\"Type '%s' to confirm: \"", "%", "package"...
Delete a package from the server. Irreversibly deletes the package along with its history, tags, versions, etc.
[ "Delete", "a", "package", "from", "the", "server", "." ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1096-L1116
train
quiltdata/quilt
compiler/quilt/tools/command.py
search
def search(query, team=None): """ Search for packages """ if team is None: team = _find_logged_in_team() if team is not None: session = _get_session(team) response = session.get("%s/api/search/" % get_registry_url(team), params=dict(q=query)) print("* Packages in tea...
python
def search(query, team=None): """ Search for packages """ if team is None: team = _find_logged_in_team() if team is not None: session = _get_session(team) response = session.get("%s/api/search/" % get_registry_url(team), params=dict(q=query)) print("* Packages in tea...
[ "def", "search", "(", "query", ",", "team", "=", "None", ")", ":", "if", "team", "is", "None", ":", "team", "=", "_find_logged_in_team", "(", ")", "if", "team", "is", "not", "None", ":", "session", "=", "_get_session", "(", "team", ")", "response", "...
Search for packages
[ "Search", "for", "packages" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1118-L1142
train
quiltdata/quilt
compiler/quilt/tools/command.py
ls
def ls(): # pylint:disable=C0103 """ List all installed Quilt data packages """ for pkg_dir in PackageStore.find_store_dirs(): print("%s" % pkg_dir) packages = PackageStore(pkg_dir).ls_packages() for package, tag, pkghash in sorted(packages): pri...
python
def ls(): # pylint:disable=C0103 """ List all installed Quilt data packages """ for pkg_dir in PackageStore.find_store_dirs(): print("%s" % pkg_dir) packages = PackageStore(pkg_dir).ls_packages() for package, tag, pkghash in sorted(packages): pri...
[ "def", "ls", "(", ")", ":", "# pylint:disable=C0103", "for", "pkg_dir", "in", "PackageStore", ".", "find_store_dirs", "(", ")", ":", "print", "(", "\"%s\"", "%", "pkg_dir", ")", "packages", "=", "PackageStore", "(", "pkg_dir", ")", ".", "ls_packages", "(", ...
List all installed Quilt data packages
[ "List", "all", "installed", "Quilt", "data", "packages" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1144-L1152
train
quiltdata/quilt
compiler/quilt/tools/command.py
inspect
def inspect(package): """ Inspect package details """ team, owner, pkg = parse_package(package) store, pkgroot = PackageStore.find_package(team, owner, pkg) if pkgroot is None: raise CommandException("Package {package} not found.".format(package=package)) def _print_children(childr...
python
def inspect(package): """ Inspect package details """ team, owner, pkg = parse_package(package) store, pkgroot = PackageStore.find_package(team, owner, pkg) if pkgroot is None: raise CommandException("Package {package} not found.".format(package=package)) def _print_children(childr...
[ "def", "inspect", "(", "package", ")", ":", "team", ",", "owner", ",", "pkg", "=", "parse_package", "(", "package", ")", "store", ",", "pkgroot", "=", "PackageStore", ".", "find_package", "(", "team", ",", "owner", ",", "pkg", ")", "if", "pkgroot", "is...
Inspect package details
[ "Inspect", "package", "details" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1154-L1194
train
quiltdata/quilt
compiler/quilt/tools/command.py
load
def load(pkginfo, hash=None): """ functional interface to "from quilt.data.USER import PKG" """ node, pkgroot, info = _load(pkginfo, hash) for subnode_name in info.subpath: node = node[subnode_name] return node
python
def load(pkginfo, hash=None): """ functional interface to "from quilt.data.USER import PKG" """ node, pkgroot, info = _load(pkginfo, hash) for subnode_name in info.subpath: node = node[subnode_name] return node
[ "def", "load", "(", "pkginfo", ",", "hash", "=", "None", ")", ":", "node", ",", "pkgroot", ",", "info", "=", "_load", "(", "pkginfo", ",", "hash", ")", "for", "subnode_name", "in", "info", ".", "subpath", ":", "node", "=", "node", "[", "subnode_name"...
functional interface to "from quilt.data.USER import PKG"
[ "functional", "interface", "to", "from", "quilt", ".", "data", ".", "USER", "import", "PKG" ]
651853e7e89a8af86e0ff26167e752efa5878c12
https://github.com/quiltdata/quilt/blob/651853e7e89a8af86e0ff26167e752efa5878c12/compiler/quilt/tools/command.py#L1351-L1359
train
CalebBell/fluids
fluids/core.py
c_ideal_gas
def c_ideal_gas(T, k, MW): r'''Calculates speed of sound `c` in an ideal gas at temperature T. .. math:: c = \sqrt{kR_{specific}T} Parameters ---------- T : float Temperature of fluid, [K] k : float Isentropic exponent of fluid, [-] MW : float Molecular weig...
python
def c_ideal_gas(T, k, MW): r'''Calculates speed of sound `c` in an ideal gas at temperature T. .. math:: c = \sqrt{kR_{specific}T} Parameters ---------- T : float Temperature of fluid, [K] k : float Isentropic exponent of fluid, [-] MW : float Molecular weig...
[ "def", "c_ideal_gas", "(", "T", ",", "k", ",", "MW", ")", ":", "Rspecific", "=", "R", "*", "1000.", "/", "MW", "return", "(", "k", "*", "Rspecific", "*", "T", ")", "**", "0.5" ]
r'''Calculates speed of sound `c` in an ideal gas at temperature T. .. math:: c = \sqrt{kR_{specific}T} Parameters ---------- T : float Temperature of fluid, [K] k : float Isentropic exponent of fluid, [-] MW : float Molecular weight of fluid, [g/mol] Retur...
[ "r", "Calculates", "speed", "of", "sound", "c", "in", "an", "ideal", "gas", "at", "temperature", "T", "." ]
57f556752e039f1d3e5a822f408c184783db2828
https://github.com/CalebBell/fluids/blob/57f556752e039f1d3e5a822f408c184783db2828/fluids/core.py#L82-L123
train
CalebBell/fluids
fluids/core.py
Reynolds
def Reynolds(V, D, rho=None, mu=None, nu=None): r'''Calculates Reynolds number or `Re` for a fluid with the given properties for the specified velocity and diameter. .. math:: Re = \frac{D \cdot V}{\nu} = \frac{\rho V D}{\mu} Inputs either of any of the following sets: * V, D, density `rh...
python
def Reynolds(V, D, rho=None, mu=None, nu=None): r'''Calculates Reynolds number or `Re` for a fluid with the given properties for the specified velocity and diameter. .. math:: Re = \frac{D \cdot V}{\nu} = \frac{\rho V D}{\mu} Inputs either of any of the following sets: * V, D, density `rh...
[ "def", "Reynolds", "(", "V", ",", "D", ",", "rho", "=", "None", ",", "mu", "=", "None", ",", "nu", "=", "None", ")", ":", "if", "rho", "and", "mu", ":", "nu", "=", "mu", "/", "rho", "elif", "not", "nu", ":", "raise", "Exception", "(", "'Eithe...
r'''Calculates Reynolds number or `Re` for a fluid with the given properties for the specified velocity and diameter. .. math:: Re = \frac{D \cdot V}{\nu} = \frac{\rho V D}{\mu} Inputs either of any of the following sets: * V, D, density `rho` and kinematic viscosity `mu` * V, D, and dyna...
[ "r", "Calculates", "Reynolds", "number", "or", "Re", "for", "a", "fluid", "with", "the", "given", "properties", "for", "the", "specified", "velocity", "and", "diameter", "." ]
57f556752e039f1d3e5a822f408c184783db2828
https://github.com/CalebBell/fluids/blob/57f556752e039f1d3e5a822f408c184783db2828/fluids/core.py#L128-L184
train