hexsha
stringlengths
40
40
repo
stringlengths
7
114
path
stringlengths
4
124
license
listlengths
1
9
language
stringclasses
1 value
identifier
stringlengths
1
71
return_type
stringlengths
1
749
original_string
stringlengths
76
22.7k
original_docstring
stringlengths
16
7.61k
docstring
stringlengths
16
2.47k
docstring_tokens
listlengths
6
477
code
stringlengths
14
10.2k
code_tokens
listlengths
6
996
short_docstring
stringlengths
2
644
short_docstring_tokens
listlengths
1
116
comment
listlengths
1
89
parameters
listlengths
0
64
docstring_params
dict
47fe471c7b8fc48620cb3a18e67fbdfb3e0fccd8
Anon-Artist/autogluon
core/src/autogluon/core/utils/utils.py
[ "Apache-2.0" ]
Python
shuffle_df_rows
<not_specific>
def shuffle_df_rows(X: DataFrame, seed=0, reset_index=True): """Returns DataFrame with rows shuffled based on seed value.""" row_count = X.shape[0] np.random.seed(seed) rand_shuffle = np.random.randint(0, row_count, size=row_count) X_shuffled = X.iloc[rand_shuffle] if reset_index: X_shuf...
Returns DataFrame with rows shuffled based on seed value.
Returns DataFrame with rows shuffled based on seed value.
[ "Returns", "DataFrame", "with", "rows", "shuffled", "based", "on", "seed", "value", "." ]
def shuffle_df_rows(X: DataFrame, seed=0, reset_index=True): row_count = X.shape[0] np.random.seed(seed) rand_shuffle = np.random.randint(0, row_count, size=row_count) X_shuffled = X.iloc[rand_shuffle] if reset_index: X_shuffled.reset_index(inplace=True, drop=True) return X_shuffled
[ "def", "shuffle_df_rows", "(", "X", ":", "DataFrame", ",", "seed", "=", "0", ",", "reset_index", "=", "True", ")", ":", "row_count", "=", "X", ".", "shape", "[", "0", "]", "np", ".", "random", ".", "seed", "(", "seed", ")", "rand_shuffle", "=", "np...
Returns DataFrame with rows shuffled based on seed value.
[ "Returns", "DataFrame", "with", "rows", "shuffled", "based", "on", "seed", "value", "." ]
[ "\"\"\"Returns DataFrame with rows shuffled based on seed value.\"\"\"" ]
[ { "param": "X", "type": "DataFrame" }, { "param": "seed", "type": null }, { "param": "reset_index", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "X", "type": "DataFrame", "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "seed", "type": null, "docstring": null, "docstring_tokens...
47fe471c7b8fc48620cb3a18e67fbdfb3e0fccd8
Anon-Artist/autogluon
core/src/autogluon/core/utils/utils.py
[ "Apache-2.0" ]
Python
normalize_binary_probas
<not_specific>
def normalize_binary_probas(y_predprob, eps): """ Remaps the predicted probabilities to open interval (0,1) while maintaining rank order """ (pmin,pmax) = (eps, 1-eps) # predicted probs outside this range will be remapped into (0,1) which_toobig = y_predprob > pmax if np.sum(which_toobig) > 0: # remap...
Remaps the predicted probabilities to open interval (0,1) while maintaining rank order
Remaps the predicted probabilities to open interval (0,1) while maintaining rank order
[ "Remaps", "the", "predicted", "probabilities", "to", "open", "interval", "(", "0", "1", ")", "while", "maintaining", "rank", "order" ]
def normalize_binary_probas(y_predprob, eps): (pmin,pmax) = (eps, 1-eps) which_toobig = y_predprob > pmax if np.sum(which_toobig) > 0: y_predprob = np.logical_not(which_toobig)*y_predprob + which_toobig*(1-(eps*np.exp(-(y_predprob-pmax)))) which_toosmall = y_predprob < pmin if np.sum(whi...
[ "def", "normalize_binary_probas", "(", "y_predprob", ",", "eps", ")", ":", "(", "pmin", ",", "pmax", ")", "=", "(", "eps", ",", "1", "-", "eps", ")", "which_toobig", "=", "y_predprob", ">", "pmax", "if", "np", ".", "sum", "(", "which_toobig", ")", ">...
Remaps the predicted probabilities to open interval (0,1) while maintaining rank order
[ "Remaps", "the", "predicted", "probabilities", "to", "open", "interval", "(", "0", "1", ")", "while", "maintaining", "rank", "order" ]
[ "\"\"\" Remaps the predicted probabilities to open interval (0,1) while maintaining rank order \"\"\"", "# predicted probs outside this range will be remapped into (0,1)", "# remap overly large probs", "# remap overly small probs" ]
[ { "param": "y_predprob", "type": null }, { "param": "eps", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "y_predprob", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "eps", "type": null, "docstring": null, "docstring_token...
47fe471c7b8fc48620cb3a18e67fbdfb3e0fccd8
Anon-Artist/autogluon
core/src/autogluon/core/utils/utils.py
[ "Apache-2.0" ]
Python
normalize_multi_probas
<not_specific>
def normalize_multi_probas(y_predprob, eps): """ Remaps the predicted probabilities to lie in (0,1) where eps controls how far from 0 smallest class-probability lies """ min_predprob = np.min(y_predprob) if min_predprob < 0: # ensure nonnegative rows most_negative_rowvals = np.clip(np.min(y_predpro...
Remaps the predicted probabilities to lie in (0,1) where eps controls how far from 0 smallest class-probability lies
Remaps the predicted probabilities to lie in (0,1) where eps controls how far from 0 smallest class-probability lies
[ "Remaps", "the", "predicted", "probabilities", "to", "lie", "in", "(", "0", "1", ")", "where", "eps", "controls", "how", "far", "from", "0", "smallest", "class", "-", "probability", "lies" ]
def normalize_multi_probas(y_predprob, eps): min_predprob = np.min(y_predprob) if min_predprob < 0: most_negative_rowvals = np.clip(np.min(y_predprob, axis=1), a_min=None, a_max=0) y_predprob = y_predprob - most_negative_rowvals[:,None] if min_predprob < eps: y_predprob = np.clip(y...
[ "def", "normalize_multi_probas", "(", "y_predprob", ",", "eps", ")", ":", "min_predprob", "=", "np", ".", "min", "(", "y_predprob", ")", "if", "min_predprob", "<", "0", ":", "most_negative_rowvals", "=", "np", ".", "clip", "(", "np", ".", "min", "(", "y_...
Remaps the predicted probabilities to lie in (0,1) where eps controls how far from 0 smallest class-probability lies
[ "Remaps", "the", "predicted", "probabilities", "to", "lie", "in", "(", "0", "1", ")", "where", "eps", "controls", "how", "far", "from", "0", "smallest", "class", "-", "probability", "lies" ]
[ "\"\"\" Remaps the predicted probabilities to lie in (0,1) where eps controls how far from 0 smallest class-probability lies \"\"\"", "# ensure nonnegative rows", "# ensure no entries < eps", "# renormalize" ]
[ { "param": "y_predprob", "type": null }, { "param": "eps", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "y_predprob", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "eps", "type": null, "docstring": null, "docstring_token...
47fe471c7b8fc48620cb3a18e67fbdfb3e0fccd8
Anon-Artist/autogluon
core/src/autogluon/core/utils/utils.py
[ "Apache-2.0" ]
Python
default_holdout_frac
<not_specific>
def default_holdout_frac(num_train_rows, hyperparameter_tune=False): """ Returns default holdout_frac used in fit(). Between row count 5,000 and 25,000 keep 0.1 holdout_frac, as we want to grow validation set to a stable 2500 examples. """ if num_train_rows < 5000: holdout_frac = max(0.1, mi...
Returns default holdout_frac used in fit(). Between row count 5,000 and 25,000 keep 0.1 holdout_frac, as we want to grow validation set to a stable 2500 examples.
Returns default holdout_frac used in fit(). Between row count 5,000 and 25,000 keep 0.1 holdout_frac, as we want to grow validation set to a stable 2500 examples.
[ "Returns", "default", "holdout_frac", "used", "in", "fit", "()", ".", "Between", "row", "count", "5", "000", "and", "25", "000", "keep", "0", ".", "1", "holdout_frac", "as", "we", "want", "to", "grow", "validation", "set", "to", "a", "stable", "2500", ...
def default_holdout_frac(num_train_rows, hyperparameter_tune=False): if num_train_rows < 5000: holdout_frac = max(0.1, min(0.2, 500.0 / num_train_rows)) else: holdout_frac = max(0.01, min(0.1, 2500.0 / num_train_rows)) if hyperparameter_tune: holdout_frac = min(0.2, holdout_frac * 2)...
[ "def", "default_holdout_frac", "(", "num_train_rows", ",", "hyperparameter_tune", "=", "False", ")", ":", "if", "num_train_rows", "<", "5000", ":", "holdout_frac", "=", "max", "(", "0.1", ",", "min", "(", "0.2", ",", "500.0", "/", "num_train_rows", ")", ")",...
Returns default holdout_frac used in fit().
[ "Returns", "default", "holdout_frac", "used", "in", "fit", "()", "." ]
[ "\"\"\" Returns default holdout_frac used in fit().\n Between row count 5,000 and 25,000 keep 0.1 holdout_frac, as we want to grow validation set to a stable 2500 examples.\n \"\"\"", "# We want to allocate more validation data for HPO to avoid overfitting" ]
[ { "param": "num_train_rows", "type": null }, { "param": "hyperparameter_tune", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "num_train_rows", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "hyperparameter_tune", "type": null, "docstring": null, ...
47fe471c7b8fc48620cb3a18e67fbdfb3e0fccd8
Anon-Artist/autogluon
core/src/autogluon/core/utils/utils.py
[ "Apache-2.0" ]
Python
augment_rare_classes
<not_specific>
def augment_rare_classes(X, label, threshold): """ Use this method when using certain eval_metrics like log_loss, for which no classes may be filtered out. This method will augment dataset with additional examples of rare classes. """ class_counts = X[label].value_counts() class_counts_invalid =...
Use this method when using certain eval_metrics like log_loss, for which no classes may be filtered out. This method will augment dataset with additional examples of rare classes.
Use this method when using certain eval_metrics like log_loss, for which no classes may be filtered out. This method will augment dataset with additional examples of rare classes.
[ "Use", "this", "method", "when", "using", "certain", "eval_metrics", "like", "log_loss", "for", "which", "no", "classes", "may", "be", "filtered", "out", ".", "This", "method", "will", "augment", "dataset", "with", "additional", "examples", "of", "rare", "clas...
def augment_rare_classes(X, label, threshold): class_counts = X[label].value_counts() class_counts_invalid = class_counts[class_counts < threshold] if len(class_counts_invalid) == 0: logger.debug("augment_rare_classes did not need to duplicate any data from rare classes") return X missin...
[ "def", "augment_rare_classes", "(", "X", ",", "label", ",", "threshold", ")", ":", "class_counts", "=", "X", "[", "label", "]", ".", "value_counts", "(", ")", "class_counts_invalid", "=", "class_counts", "[", "class_counts", "<", "threshold", "]", "if", "len...
Use this method when using certain eval_metrics like log_loss, for which no classes may be filtered out.
[ "Use", "this", "method", "when", "using", "certain", "eval_metrics", "like", "log_loss", "for", "which", "no", "classes", "may", "be", "filtered", "out", "." ]
[ "\"\"\" Use this method when using certain eval_metrics like log_loss, for which no classes may be filtered out.\n This method will augment dataset with additional examples of rare classes.\n \"\"\"" ]
[ { "param": "X", "type": null }, { "param": "label", "type": null }, { "param": "threshold", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "X", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "label", "type": null, "docstring": null, "docstring_tokens": [],...
5b050c1f10f703d365a450036f8f68cc207f7e94
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor.py
[ "Apache-2.0" ]
Python
predict
<not_specific>
def predict(self, dataset, model=None, as_pandas=False): """ Use trained models to produce predicted labels (in classification) or response values (in regression). Parameters ---------- dataset : str or :class:`TabularDataset` or `pandas.DataFrame` The datase...
Use trained models to produce predicted labels (in classification) or response values (in regression). Parameters ---------- dataset : str or :class:`TabularDataset` or `pandas.DataFrame` The dataset to make predictions for. Should contain same column names as train...
Use trained models to produce predicted labels (in classification) or response values (in regression). Parameters dataset : str or :class:`TabularDataset` or `pandas.DataFrame` The dataset to make predictions for. Should contain same column names as training Dataset and follow same format (may contain extra columns th...
[ "Use", "trained", "models", "to", "produce", "predicted", "labels", "(", "in", "classification", ")", "or", "response", "values", "(", "in", "regression", ")", ".", "Parameters", "dataset", ":", "str", "or", ":", "class", ":", "`", "TabularDataset", "`", "...
def predict(self, dataset, model=None, as_pandas=False): dataset = self.__get_dataset(dataset) return self._learner.predict(X=dataset, model=model, as_pandas=as_pandas)
[ "def", "predict", "(", "self", ",", "dataset", ",", "model", "=", "None", ",", "as_pandas", "=", "False", ")", ":", "dataset", "=", "self", ".", "__get_dataset", "(", "dataset", ")", "return", "self", ".", "_learner", ".", "predict", "(", "X", "=", "...
Use trained models to produce predicted labels (in classification) or response values (in regression).
[ "Use", "trained", "models", "to", "produce", "predicted", "labels", "(", "in", "classification", ")", "or", "response", "values", "(", "in", "regression", ")", "." ]
[ "\"\"\" Use trained models to produce predicted labels (in classification) or response values (in regression).\n\n Parameters\n ----------\n dataset : str or :class:`TabularDataset` or `pandas.DataFrame`\n The dataset to make predictions for. Should contain same colum...
[ { "param": "self", "type": null }, { "param": "dataset", "type": null }, { "param": "model", "type": null }, { "param": "as_pandas", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "dataset", "type": null, "docstring": null, "docstring_tokens"...
5b050c1f10f703d365a450036f8f68cc207f7e94
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor.py
[ "Apache-2.0" ]
Python
feature_importance
<not_specific>
def feature_importance(self, dataset=None, model=None, features=None, feature_stage='original', subsample_size=1000, time_limit=None, num_shuffle_sets=None, include_confidence_band=True, silent=False): """ Calculates feature importance scores for the given model via permutation importance. Refer to http...
Calculates feature importance scores for the given model via permutation importance. Refer to https://explained.ai/rf-importance/ for an explanation of permutation importance. A feature's importance score represents the performance drop that results when the model makes predictions on a perturbed copy ...
Calculates feature importance scores for the given model via permutation importance. For highly accurate importance and p_value estimates, it is recommend to set `subsample_size` to at least 5,000 if possible and `num_shuffle_sets` to at least 10. Parameters Returns Pandas `pandas.DataFrame` of feature importance...
[ "Calculates", "feature", "importance", "scores", "for", "the", "given", "model", "via", "permutation", "importance", ".", "For", "highly", "accurate", "importance", "and", "p_value", "estimates", "it", "is", "recommend", "to", "set", "`", "subsample_size", "`", ...
def feature_importance(self, dataset=None, model=None, features=None, feature_stage='original', subsample_size=1000, time_limit=None, num_shuffle_sets=None, include_confidence_band=True, silent=False): dataset = self.__get_dataset(dataset) if dataset is not None else dataset if (dataset is None) and (no...
[ "def", "feature_importance", "(", "self", ",", "dataset", "=", "None", ",", "model", "=", "None", ",", "features", "=", "None", ",", "feature_stage", "=", "'original'", ",", "subsample_size", "=", "1000", ",", "time_limit", "=", "None", ",", "num_shuffle_set...
Calculates feature importance scores for the given model via permutation importance.
[ "Calculates", "feature", "importance", "scores", "for", "the", "given", "model", "via", "permutation", "importance", "." ]
[ "\"\"\"\n Calculates feature importance scores for the given model via permutation importance. Refer to https://explained.ai/rf-importance/ for an explanation of permutation importance.\n A feature's importance score represents the performance drop that results when the model makes predictions on a pe...
[ { "param": "self", "type": null }, { "param": "dataset", "type": null }, { "param": "model", "type": null }, { "param": "features", "type": null }, { "param": "feature_stage", "type": null }, { "param": "subsample_size", "type": null }, { "...
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "dataset", "type": null, "docstring": null, "docstring_tokens"...
5b050c1f10f703d365a450036f8f68cc207f7e94
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor.py
[ "Apache-2.0" ]
Python
fit_weighted_ensemble
<not_specific>
def fit_weighted_ensemble(self, base_models: list = None, name_suffix='_custom', expand_pareto_frontier=False, time_limits=None): """ Fits new weighted ensemble models to combine predictions of previously-trained models. `cache_data` must have been set to `True` during the original training to e...
Fits new weighted ensemble models to combine predictions of previously-trained models. `cache_data` must have been set to `True` during the original training to enable this functionality. Parameters ---------- base_models : list, default = None List of model names t...
Fits new weighted ensemble models to combine predictions of previously-trained models. `cache_data` must have been set to `True` during the original training to enable this functionality. Parameters base_models : list, default = None List of model names the weighted ensemble can consider as candidates. If None, all p...
[ "Fits", "new", "weighted", "ensemble", "models", "to", "combine", "predictions", "of", "previously", "-", "trained", "models", ".", "`", "cache_data", "`", "must", "have", "been", "set", "to", "`", "True", "`", "during", "the", "original", "training", "to", ...
def fit_weighted_ensemble(self, base_models: list = None, name_suffix='_custom', expand_pareto_frontier=False, time_limits=None): trainer = self._learner.load_trainer() if trainer.bagged_mode: X = trainer.load_X_train() y = trainer.load_y_train() fit = True el...
[ "def", "fit_weighted_ensemble", "(", "self", ",", "base_models", ":", "list", "=", "None", ",", "name_suffix", "=", "'_custom'", ",", "expand_pareto_frontier", "=", "False", ",", "time_limits", "=", "None", ")", ":", "trainer", "=", "self", ".", "_learner", ...
Fits new weighted ensemble models to combine predictions of previously-trained models.
[ "Fits", "new", "weighted", "ensemble", "models", "to", "combine", "predictions", "of", "previously", "-", "trained", "models", "." ]
[ "\"\"\"\n Fits new weighted ensemble models to combine predictions of previously-trained models.\n `cache_data` must have been set to `True` during the original training to enable this functionality.\n\n Parameters\n ----------\n base_models : list, default = None\n Lis...
[ { "param": "self", "type": null }, { "param": "base_models", "type": "list" }, { "param": "name_suffix", "type": null }, { "param": "expand_pareto_frontier", "type": null }, { "param": "time_limits", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "base_models", "type": "list", "docstring": null, "docstring_t...
5b050c1f10f703d365a450036f8f68cc207f7e94
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor.py
[ "Apache-2.0" ]
Python
positive_class
<not_specific>
def positive_class(self): """ Returns the positive class name in binary classification. Useful for computing metrics such as F1 which require a positive and negative class. In binary classification, `predictor.predict_proba()` returns the estimated probability that each row belongs to the positi...
Returns the positive class name in binary classification. Useful for computing metrics such as F1 which require a positive and negative class. In binary classification, `predictor.predict_proba()` returns the estimated probability that each row belongs to the positive class. Will print a warnin...
Returns the positive class name in binary classification. Useful for computing metrics such as F1 which require a positive and negative class. In binary classification, `predictor.predict_proba()` returns the estimated probability that each row belongs to the positive class. Will print a warning and return None if call...
[ "Returns", "the", "positive", "class", "name", "in", "binary", "classification", ".", "Useful", "for", "computing", "metrics", "such", "as", "F1", "which", "require", "a", "positive", "and", "negative", "class", ".", "In", "binary", "classification", "`", "pre...
def positive_class(self): if self.problem_type != BINARY: logger.warning(f"Warning: Attempted to retrieve positive class label in a non-binary problem. Positive class labels only exist in binary classification. Returning None instead. self.problem_type is '{self.problem_type}' but positive_class onl...
[ "def", "positive_class", "(", "self", ")", ":", "if", "self", ".", "problem_type", "!=", "BINARY", ":", "logger", ".", "warning", "(", "f\"Warning: Attempted to retrieve positive class label in a non-binary problem. Positive class labels only exist in binary classification. Returni...
Returns the positive class name in binary classification.
[ "Returns", "the", "positive", "class", "name", "in", "binary", "classification", "." ]
[ "\"\"\"\n Returns the positive class name in binary classification. Useful for computing metrics such as F1 which require a positive and negative class.\n In binary classification, `predictor.predict_proba()` returns the estimated probability that each row belongs to the positive class.\n Will ...
[ { "param": "self", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
5b050c1f10f703d365a450036f8f68cc207f7e94
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor.py
[ "Apache-2.0" ]
Python
plot_ensemble_model
<not_specific>
def plot_ensemble_model(self, prune_unused_nodes=True): """ Output the visualized stack ensemble architecture of a model trained by `fit()`. The plot is stored to a file, `ensemble_model.png` in folder `Predictor.output_directory` This function requires `graphviz` and `pyg...
Output the visualized stack ensemble architecture of a model trained by `fit()`. The plot is stored to a file, `ensemble_model.png` in folder `Predictor.output_directory` This function requires `graphviz` and `pygraphviz` to be installed because this visualization depends on thos...
Output the visualized stack ensemble architecture of a model trained by `fit()`. The plot is stored to a file, `ensemble_model.png` in folder `Predictor.output_directory` This function requires `graphviz` and `pygraphviz` to be installed because this visualization depends on those package. Unless this function will ra...
[ "Output", "the", "visualized", "stack", "ensemble", "architecture", "of", "a", "model", "trained", "by", "`", "fit", "()", "`", ".", "The", "plot", "is", "stored", "to", "a", "file", "`", "ensemble_model", ".", "png", "`", "in", "folder", "`", "Predictor...
def plot_ensemble_model(self, prune_unused_nodes=True): try: import pygraphviz except: raise ImportError('Visualizing ensemble network architecture requires pygraphviz library') G = self._trainer.model_graph.copy() if prune_unused_nodes == True: nodes_...
[ "def", "plot_ensemble_model", "(", "self", ",", "prune_unused_nodes", "=", "True", ")", ":", "try", ":", "import", "pygraphviz", "except", ":", "raise", "ImportError", "(", "'Visualizing ensemble network architecture requires pygraphviz library'", ")", "G", "=", "self",...
Output the visualized stack ensemble architecture of a model trained by `fit()`.
[ "Output", "the", "visualized", "stack", "ensemble", "architecture", "of", "a", "model", "trained", "by", "`", "fit", "()", "`", "." ]
[ "\"\"\"\n Output the visualized stack ensemble architecture of a model trained by `fit()`. \n The plot is stored to a file, `ensemble_model.png` in folder `Predictor.output_directory` \n\n This function requires `graphviz` and `pygraphviz` to be installed because this visualization ...
[ { "param": "self", "type": null }, { "param": "prune_unused_nodes", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "prune_unused_nodes", "type": null, "docstring": null, "docstr...
f3799a512a5d392f1622b6e6cb73adccfddec229
Anon-Artist/autogluon
tabular/src/autogluon/tabular/learner/default_learner.py
[ "Apache-2.0" ]
Python
_fit
null
def _fit(self, X: DataFrame, X_val: DataFrame = None, X_unlabeled: DataFrame = None, holdout_frac=0.1, num_bagging_folds=0, num_bagging_sets=1, time_limit=None, save_bagged_folds=True, verbosity=2, **trainer_fit_kwargs): """ Arguments: X (DataFrame): training data X_...
Arguments: X (DataFrame): training data X_val (DataFrame): data used for hyperparameter tuning. Note: final model may be trained using this data as well as training data X_unlabeled (DataFrame): data used for pretraining a model. This is same data format as X, without la...
X (DataFrame): training data X_val (DataFrame): data used for hyperparameter tuning. Note: final model may be trained using this data as well as training data X_unlabeled (DataFrame): data used for pretraining a model. This is same data format as X, without label-column. This data is used for semi-supervised learning. ...
[ "X", "(", "DataFrame", ")", ":", "training", "data", "X_val", "(", "DataFrame", ")", ":", "data", "used", "for", "hyperparameter", "tuning", ".", "Note", ":", "final", "model", "may", "be", "trained", "using", "this", "data", "as", "well", "as", "trainin...
def _fit(self, X: DataFrame, X_val: DataFrame = None, X_unlabeled: DataFrame = None, holdout_frac=0.1, num_bagging_folds=0, num_bagging_sets=1, time_limit=None, save_bagged_folds=True, verbosity=2, **trainer_fit_kwargs): self._time_limit = time_limit if time_limit: logger.log(20...
[ "def", "_fit", "(", "self", ",", "X", ":", "DataFrame", ",", "X_val", ":", "DataFrame", "=", "None", ",", "X_unlabeled", ":", "DataFrame", "=", "None", ",", "holdout_frac", "=", "0.1", ",", "num_bagging_folds", "=", "0", ",", "num_bagging_sets", "=", "1"...
Arguments: X (DataFrame): training data X_val (DataFrame): data used for hyperparameter tuning.
[ "Arguments", ":", "X", "(", "DataFrame", ")", ":", "training", "data", "X_val", "(", "DataFrame", ")", ":", "data", "used", "for", "hyperparameter", "tuning", "." ]
[ "\"\"\" Arguments:\n X (DataFrame): training data\n X_val (DataFrame): data used for hyperparameter tuning. Note: final model may be trained using this data as well as training data\n X_unlabeled (DataFrame): data used for pretraining a model. This is same data format as...
[ { "param": "self", "type": null }, { "param": "X", "type": "DataFrame" }, { "param": "X_val", "type": "DataFrame" }, { "param": "X_unlabeled", "type": "DataFrame" }, { "param": "holdout_frac", "type": null }, { "param": "num_bagging_folds", "type":...
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "X", "type": "DataFrame", "docstring": null, "docstring_tokens...
f3799a512a5d392f1622b6e6cb73adccfddec229
Anon-Artist/autogluon
tabular/src/autogluon/tabular/learner/default_learner.py
[ "Apache-2.0" ]
Python
general_data_processing
<not_specific>
def general_data_processing(self, X: DataFrame, X_val: DataFrame, X_unlabeled: DataFrame, holdout_frac: float, num_bagging_folds: int): """ General data processing steps used for all models. """ X = copy.deepcopy(X) # TODO: We should probably uncomment the below lines, NaN label should be treat...
General data processing steps used for all models.
General data processing steps used for all models.
[ "General", "data", "processing", "steps", "used", "for", "all", "models", "." ]
def general_data_processing(self, X: DataFrame, X_val: DataFrame, X_unlabeled: DataFrame, holdout_frac: float, num_bagging_folds: int): X = copy.deepcopy(X) missinglabel_inds = [index for index, x in X[self.label].isna().iteritems() if x] if len(missinglabel_inds) > 0: logger.warning...
[ "def", "general_data_processing", "(", "self", ",", "X", ":", "DataFrame", ",", "X_val", ":", "DataFrame", ",", "X_unlabeled", ":", "DataFrame", ",", "holdout_frac", ":", "float", ",", "num_bagging_folds", ":", "int", ")", ":", "X", "=", "copy", ".", "deep...
General data processing steps used for all models.
[ "General", "data", "processing", "steps", "used", "for", "all", "models", "." ]
[ "\"\"\" General data processing steps used for all models. \"\"\"", "# TODO: We should probably uncomment the below lines, NaN label should be treated as just another value in multiclass classification -> We will have to remove missing, compute problem type, and add back missing if multiclass", "# if self.probl...
[ { "param": "self", "type": null }, { "param": "X", "type": "DataFrame" }, { "param": "X_val", "type": "DataFrame" }, { "param": "X_unlabeled", "type": "DataFrame" }, { "param": "holdout_frac", "type": "float" }, { "param": "num_bagging_folds", "typ...
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "X", "type": "DataFrame", "docstring": null, "docstring_tokens...
af4e753bb17ac160f9719beda475ecaa2fef9758
Anon-Artist/autogluon
tabular/src/autogluon/tabular/models/knn/knn_model.py
[ "Apache-2.0" ]
Python
_fit_with_samples
<not_specific>
def _fit_with_samples(self, X_train, y_train, time_limit): """ Fit model with samples of the data repeatedly, gradually increasing the amount of data until time_limit is reached or all data is used. X_train and y_train must already be preprocessed """ time_start = time.time() ...
Fit model with samples of the data repeatedly, gradually increasing the amount of data until time_limit is reached or all data is used. X_train and y_train must already be preprocessed
Fit model with samples of the data repeatedly, gradually increasing the amount of data until time_limit is reached or all data is used. X_train and y_train must already be preprocessed
[ "Fit", "model", "with", "samples", "of", "the", "data", "repeatedly", "gradually", "increasing", "the", "amount", "of", "data", "until", "time_limit", "is", "reached", "or", "all", "data", "is", "used", ".", "X_train", "and", "y_train", "must", "already", "b...
def _fit_with_samples(self, X_train, y_train, time_limit): time_start = time.time() sample_growth_factor = 2 sample_time_growth_factor = 8 num_rows_samples = [] num_rows_max = len(X_train) num_rows_cur = 10000 while True: num_rows_cur = min(num_row...
[ "def", "_fit_with_samples", "(", "self", ",", "X_train", ",", "y_train", ",", "time_limit", ")", ":", "time_start", "=", "time", ".", "time", "(", ")", "sample_growth_factor", "=", "2", "sample_time_growth_factor", "=", "8", "num_rows_samples", "=", "[", "]", ...
Fit model with samples of the data repeatedly, gradually increasing the amount of data until time_limit is reached or all data is used.
[ "Fit", "model", "with", "samples", "of", "the", "data", "repeatedly", "gradually", "increasing", "the", "amount", "of", "data", "until", "time_limit", "is", "reached", "or", "all", "data", "is", "used", "." ]
[ "\"\"\"\n Fit model with samples of the data repeatedly, gradually increasing the amount of data until time_limit is reached or all data is used.\n\n X_train and y_train must already be preprocessed\n \"\"\"", "# Growth factor of each sample in terms of row count", "# Assume next sample wil...
[ { "param": "self", "type": null }, { "param": "X_train", "type": null }, { "param": "y_train", "type": null }, { "param": "time_limit", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "X_train", "type": null, "docstring": null, "docstring_tokens"...
ae12a0354cc62d22737aa3e78cfc66cfa30f46b2
Anon-Artist/autogluon
tabular/src/autogluon/tabular/task/tabular_prediction/predictor_v2.py
[ "Apache-2.0" ]
Python
fit
<not_specific>
def fit(self, train_data, tuning_data=None, time_limit=None, presets=None, hyperparameters=None, feature_metadata=None, **kwargs): """ Fit models to predict a column of data table based on the other columns. # T...
Fit models to predict a column of data table based on the other columns. # TODO: Move documentation from TabularPrediction.fit to here # TODO: Move num_cpu/num_gpu to AG_args_fit # TODO: AG_args -> ag_args? +1 -> Will change after replacing original TabularPredictor to avoid extra API ...
Fit models to predict a column of data table based on the other columns.
[ "Fit", "models", "to", "predict", "a", "column", "of", "data", "table", "based", "on", "the", "other", "columns", "." ]
def fit(self, train_data, tuning_data=None, time_limit=None, presets=None, hyperparameters=None, feature_metadata=None, **kwargs): if self._learner.is_fit: raise AssertionError('Predictor is already fit! To fit addit...
[ "def", "fit", "(", "self", ",", "train_data", ",", "tuning_data", "=", "None", ",", "time_limit", "=", "None", ",", "presets", "=", "None", ",", "hyperparameters", "=", "None", ",", "feature_metadata", "=", "None", ",", "**", "kwargs", ")", ":", "if", ...
Fit models to predict a column of data table based on the other columns.
[ "Fit", "models", "to", "predict", "a", "column", "of", "data", "table", "based", "on", "the", "other", "columns", "." ]
[ "\"\"\"\n Fit models to predict a column of data table based on the other columns.\n\n # TODO: Move documentation from TabularPrediction.fit to here\n # TODO: Move num_cpu/num_gpu to AG_args_fit\n # TODO: AG_args -> ag_args? +1 -> Will change after replacing original TabularPredictor to ...
[ { "param": "self", "type": null }, { "param": "train_data", "type": null }, { "param": "tuning_data", "type": null }, { "param": "time_limit", "type": null }, { "param": "presets", "type": null }, { "param": "hyperparameters", "type": null }, {...
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "train_data", "type": null, "docstring": null, "docstring_toke...
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Retrieve_per_day
<not_specific>
def Retrieve_per_day(): """ Post call to retrieve data for a day for a device per user input """ #retrieve the json from the ajax call jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request", file=sys.stderr) #if jsonFile successfully posted....
Post call to retrieve data for a day for a device per user input
Post call to retrieve data for a day for a device per user input
[ "Post", "call", "to", "retrieve", "data", "for", "a", "day", "for", "a", "device", "per", "user", "input" ]
def Retrieve_per_day(): jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request", file=sys.stderr) if jsonFile != '': if not all(arg in jsonFile for arg in ["deviceId","date"]): print("Missing arguments in post request", file=sys.stderr) ...
[ "def", "Retrieve_per_day", "(", ")", ":", "jsonFile", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "jsonFile", "=", "request", ".", "json", "print", "(", "\"post request\"", ",", "file", "=", "sys", ".", "stderr", ")", "if", "jsonFile"...
Post call to retrieve data for a day for a device per user input
[ "Post", "call", "to", "retrieve", "data", "for", "a", "day", "for", "a", "device", "per", "user", "input" ]
[ "\"\"\"\n Post call to retrieve data for a day for a device per user input\n \"\"\"", "#retrieve the json from the ajax call", "#if jsonFile successfully posted..", "# check all required arguments are present:", "#get data for device fields per day", "#create and return the output json" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Retrieve_across_days
<not_specific>
def Retrieve_across_days(): """ Post call to retrieve data across days for a device per user input """ #retrieve the json from the ajax call jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") #if jsonFile successfully posted.. if js...
Post call to retrieve data across days for a device per user input
Post call to retrieve data across days for a device per user input
[ "Post", "call", "to", "retrieve", "data", "across", "days", "for", "a", "device", "per", "user", "input" ]
def Retrieve_across_days(): jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") if jsonFile != '': if not all(arg in jsonFile for arg in ["deviceId","startDate","endDate"]): print("Missing arguments in post request") retur...
[ "def", "Retrieve_across_days", "(", ")", ":", "jsonFile", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "jsonFile", "=", "request", ".", "json", "print", "(", "\"post request\"", ")", "if", "jsonFile", "!=", "''", ":", "if", "not", "all...
Post call to retrieve data across days for a device per user input
[ "Post", "call", "to", "retrieve", "data", "across", "days", "for", "a", "device", "per", "user", "input" ]
[ "\"\"\"\n Post call to retrieve data across days for a device per user input\n \"\"\"", "#retrieve the json from the ajax call", "#if jsonFile successfully posted..", "# check all required arguments are present:", "#get data for device fields across days", "#create and return the output json" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Retrieve_hourly_stats_trends
<not_specific>
def Retrieve_hourly_stats_trends(): """ Post call to retrieve data across days for a device per user input with hourly stats and trends """ #retrieve the json from the ajax call jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") #if jso...
Post call to retrieve data across days for a device per user input with hourly stats and trends
Post call to retrieve data across days for a device per user input with hourly stats and trends
[ "Post", "call", "to", "retrieve", "data", "across", "days", "for", "a", "device", "per", "user", "input", "with", "hourly", "stats", "and", "trends" ]
def Retrieve_hourly_stats_trends(): jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") if jsonFile != '': if not all(arg in jsonFile for arg in ["deviceId","field","startDate","endDate"]): print("Missing arguments in post request") ...
[ "def", "Retrieve_hourly_stats_trends", "(", ")", ":", "jsonFile", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "jsonFile", "=", "request", ".", "json", "print", "(", "\"post request\"", ")", "if", "jsonFile", "!=", "''", ":", "if", "not"...
Post call to retrieve data across days for a device per user input with hourly stats and trends
[ "Post", "call", "to", "retrieve", "data", "across", "days", "for", "a", "device", "per", "user", "input", "with", "hourly", "stats", "and", "trends" ]
[ "\"\"\"\n Post call to retrieve data across days for a device per user input with hourly stats and trends\n \"\"\"", "#retrieve the json from the ajax call", "#if jsonFile successfully posted..", "# check all required arguments are present:", "#get data for device fields across days", "#get hourly s...
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Retrieve_device_stats
<not_specific>
def Retrieve_device_stats(): """ Post call to retrieve device stats for devices """ #retrieve the json from the ajax call json_file = '' if request.method == 'POST': json_file = request.json print ("post request") #if json_file successfully posted.. if json_file != '': ...
Post call to retrieve device stats for devices
Post call to retrieve device stats for devices
[ "Post", "call", "to", "retrieve", "device", "stats", "for", "devices" ]
def Retrieve_device_stats(): json_file = '' if request.method == 'POST': json_file = request.json print ("post request") if json_file != '': if not all(arg in json_file for arg in ["deviceIds","field","startDate","endDate"]): print("Missing arguments in post request") ...
[ "def", "Retrieve_device_stats", "(", ")", ":", "json_file", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "json_file", "=", "request", ".", "json", "print", "(", "\"post request\"", ")", "if", "json_file", "!=", "''", ":", "if", "not", ...
Post call to retrieve device stats for devices
[ "Post", "call", "to", "retrieve", "device", "stats", "for", "devices" ]
[ "\"\"\"\n Post call to retrieve device stats for devices\n \"\"\"", "#retrieve the json from the ajax call", "#if json_file successfully posted..", "# check all required arguments are present:", "#split deviceIds from input", "#get data for devices across days", "#get plot data to compare devices"...
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Set_dataset
<not_specific>
def Set_dataset(): """ Post call to set active dataset in dataset.json """ output = {} #retrieve the json from the ajax call jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") #if jsonFile successfully posted.. if jsonFile != '...
Post call to set active dataset in dataset.json
Post call to set active dataset in dataset.json
[ "Post", "call", "to", "set", "active", "dataset", "in", "dataset", ".", "json" ]
def Set_dataset(): output = {} jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") if jsonFile != '': if not all(arg in jsonFile for arg in ["dataset"]): print("Missing arguments in post request") return json.dumps({"s...
[ "def", "Set_dataset", "(", ")", ":", "output", "=", "{", "}", "jsonFile", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "jsonFile", "=", "request", ".", "json", "print", "(", "\"post request\"", ")", "if", "jsonFile", "!=", "''", ":",...
Post call to set active dataset in dataset.json
[ "Post", "call", "to", "set", "active", "dataset", "in", "dataset", ".", "json" ]
[ "\"\"\"\n Post call to set active dataset in dataset.json\n \"\"\"", "#retrieve the json from the ajax call", "#if jsonFile successfully posted..", "# check all required arguments are present:", "#call update datasets.json file" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Append_dataset
<not_specific>
def Append_dataset(): """ Post call to append dataset.json file with user inputs """ #retrieve the json from the ajax call jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") #if jsonFile successfully posted.. if jsonFile != '': ...
Post call to append dataset.json file with user inputs
Post call to append dataset.json file with user inputs
[ "Post", "call", "to", "append", "dataset", ".", "json", "file", "with", "user", "inputs" ]
def Append_dataset(): jsonFile = '' if request.method == 'POST': jsonFile = request.json print ("post request") if jsonFile != '': if not all(arg in jsonFile for arg in ["deviceIds","dates","datasetName","dbName"]): print("Missing arguments in post request") r...
[ "def", "Append_dataset", "(", ")", ":", "jsonFile", "=", "''", "if", "request", ".", "method", "==", "'POST'", ":", "jsonFile", "=", "request", ".", "json", "print", "(", "\"post request\"", ")", "if", "jsonFile", "!=", "''", ":", "if", "not", "all", "...
Post call to append dataset.json file with user inputs
[ "Post", "call", "to", "append", "dataset", ".", "json", "file", "with", "user", "inputs" ]
[ "\"\"\"\n Post call to append dataset.json file with user inputs\n \"\"\"", "#retrieve the json from the ajax call", "#if jsonFile successfully posted..", "# check all required arguments are present:" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_datasets
<not_specific>
def Get_datasets(): """ Get datasets name from dataset.json file """ #return datasets array return json.dumps(dataset.Get_datasets())
Get datasets name from dataset.json file
Get datasets name from dataset.json file
[ "Get", "datasets", "name", "from", "dataset", ".", "json", "file" ]
def Get_datasets(): return json.dumps(dataset.Get_datasets())
[ "def", "Get_datasets", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_datasets", "(", ")", ")" ]
Get datasets name from dataset.json file
[ "Get", "datasets", "name", "from", "dataset", ".", "json", "file" ]
[ "\"\"\"\n Get datasets name from dataset.json file\n \"\"\"", "#return datasets array" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_dataset
<not_specific>
def Get_dataset(): """ Get dataset name from dataset.json file """ #return active dataset return json.dumps(dataset.Get_dataset())
Get dataset name from dataset.json file
Get dataset name from dataset.json file
[ "Get", "dataset", "name", "from", "dataset", ".", "json", "file" ]
def Get_dataset(): return json.dumps(dataset.Get_dataset())
[ "def", "Get_dataset", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_dataset", "(", ")", ")" ]
Get dataset name from dataset.json file
[ "Get", "dataset", "name", "from", "dataset", ".", "json", "file" ]
[ "\"\"\"\n Get dataset name from dataset.json file\n \"\"\"", "#return active dataset" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_dates
<not_specific>
def Get_dates(): """ Get and return the dates from dataset """ #return dates return json.dumps(dataset.Get_dates())
Get and return the dates from dataset
Get and return the dates from dataset
[ "Get", "and", "return", "the", "dates", "from", "dataset" ]
def Get_dates(): return json.dumps(dataset.Get_dates())
[ "def", "Get_dates", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_dates", "(", ")", ")" ]
Get and return the dates from dataset
[ "Get", "and", "return", "the", "dates", "from", "dataset" ]
[ "\"\"\"\n Get and return the dates from dataset\n \"\"\"", "#return dates" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_devices
<not_specific>
def Get_devices(): """ Get and return deviceIds from dataset """ #return deviceIds return json.dumps(dataset.Get_devices())
Get and return deviceIds from dataset
Get and return deviceIds from dataset
[ "Get", "and", "return", "deviceIds", "from", "dataset" ]
def Get_devices(): return json.dumps(dataset.Get_devices())
[ "def", "Get_devices", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_devices", "(", ")", ")" ]
Get and return deviceIds from dataset
[ "Get", "and", "return", "deviceIds", "from", "dataset" ]
[ "\"\"\"\n Get and return deviceIds from dataset\n \"\"\"", "#return deviceIds" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_db_names
<not_specific>
def Get_db_names(): """ Get and return database name initials from the Cloudant storage for dataset initialization """ #return uniqueDbnames return json.dumps(dataset.Get_db_names())
Get and return database name initials from the Cloudant storage for dataset initialization
Get and return database name initials from the Cloudant storage for dataset initialization
[ "Get", "and", "return", "database", "name", "initials", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
def Get_db_names(): return json.dumps(dataset.Get_db_names())
[ "def", "Get_db_names", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_db_names", "(", ")", ")" ]
Get and return database name initials from the Cloudant storage for dataset initialization
[ "Get", "and", "return", "database", "name", "initials", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
[ "\"\"\"\n Get and return database name initials from the Cloudant storage for dataset initialization\n \"\"\"", "#return uniqueDbnames" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_db_dates
<not_specific>
def Get_db_dates(): """ Get and returns dates from the Cloudant storage for dataset initialization """ #return uniqueDates return json.dumps(dataset.Get_db_dates())
Get and returns dates from the Cloudant storage for dataset initialization
Get and returns dates from the Cloudant storage for dataset initialization
[ "Get", "and", "returns", "dates", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
def Get_db_dates(): return json.dumps(dataset.Get_db_dates())
[ "def", "Get_db_dates", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_db_dates", "(", ")", ")" ]
Get and returns dates from the Cloudant storage for dataset initialization
[ "Get", "and", "returns", "dates", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
[ "\"\"\"\n Get and returns dates from the Cloudant storage for dataset initialization\n \"\"\"", "#return uniqueDates" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
0e4470c4a051b899ab6ebb30c47ca81e77c3da7f
vvk17/MLEXP
run.py
[ "Apache-2.0" ]
Python
Get_db_deviceids
<not_specific>
def Get_db_deviceids(): """ Get and returns dates from the Cloudant storage for dataset initialization """ #retrun uniqueDeviceIds return json.dumps(dataset.Get_db_deviceids())
Get and returns dates from the Cloudant storage for dataset initialization
Get and returns dates from the Cloudant storage for dataset initialization
[ "Get", "and", "returns", "dates", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
def Get_db_deviceids(): return json.dumps(dataset.Get_db_deviceids())
[ "def", "Get_db_deviceids", "(", ")", ":", "return", "json", ".", "dumps", "(", "dataset", ".", "Get_db_deviceids", "(", ")", ")" ]
Get and returns dates from the Cloudant storage for dataset initialization
[ "Get", "and", "returns", "dates", "from", "the", "Cloudant", "storage", "for", "dataset", "initialization" ]
[ "\"\"\"\n Get and returns dates from the Cloudant storage for dataset initialization\n \"\"\"", "#retrun uniqueDeviceIds" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
a0c525e7ee3ac371089591dd490d974b89a17925
matkoniecz/scivision
scivision/catalog/catalog.py
[ "BSD-3-Clause" ]
Python
compatible_models
PandasQueryResult
def compatible_models(self, datasource) -> PandasQueryResult: """Return all models that are compatible with datasource Parameters ---------- datasource : str or dict-like Any dictionary-like (including CatalogDatasourceEntry) that has keys 'format', 'tasks' and '...
Return all models that are compatible with datasource Parameters ---------- datasource : str or dict-like Any dictionary-like (including CatalogDatasourceEntry) that has keys 'format', 'tasks' and 'labels_provided', representing these properties of the dataso...
Return all models that are compatible with datasource Parameters Returns QueryResult A QueryResult instance containing the models compatible with the given datasource (convertible to a dict or pd.DataFrame).
[ "Return", "all", "models", "that", "are", "compatible", "with", "datasource", "Parameters", "Returns", "QueryResult", "A", "QueryResult", "instance", "containing", "the", "models", "compatible", "with", "the", "given", "datasource", "(", "convertible", "to", "a", ...
def compatible_models(self, datasource) -> PandasQueryResult: if isinstance(datasource, str): return self._compatible_models( self._datasources.set_index("name").loc[datasource] ) else: return self._compatible_models(datasource)
[ "def", "compatible_models", "(", "self", ",", "datasource", ")", "->", "PandasQueryResult", ":", "if", "isinstance", "(", "datasource", ",", "str", ")", ":", "return", "self", ".", "_compatible_models", "(", "self", ".", "_datasources", ".", "set_index", "(", ...
Return all models that are compatible with datasource Parameters
[ "Return", "all", "models", "that", "are", "compatible", "with", "datasource", "Parameters" ]
[ "\"\"\"Return all models that are compatible with datasource\n\n Parameters\n ----------\n datasource : str or dict-like\n Any dictionary-like (including CatalogDatasourceEntry) that\n has keys 'format', 'tasks' and 'labels_provided', representing\n these proper...
[ { "param": "self", "type": null }, { "param": "datasource", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "datasource", "type": null, "docstring": null, "docstring_toke...
a0c525e7ee3ac371089591dd490d974b89a17925
matkoniecz/scivision
scivision/catalog/catalog.py
[ "BSD-3-Clause" ]
Python
compatible_datasources
PandasQueryResult
def compatible_datasources(self, model) -> PandasQueryResult: """Return all datasources that are compatible with model Parameters ---------- model : str or dict-like Any dictionary-like (including CatalogModelEntry) that has keys 'format', 'tasks' and 'labels_req...
Return all datasources that are compatible with model Parameters ---------- model : str or dict-like Any dictionary-like (including CatalogModelEntry) that has keys 'format', 'tasks' and 'labels_required', representing these properties of the model. ...
Return all datasources that are compatible with model Parameters Returns QueryResult A QueryResult instance containing the datasources compatible with the given model (convertible to a dict or pd.DataFrame).
[ "Return", "all", "datasources", "that", "are", "compatible", "with", "model", "Parameters", "Returns", "QueryResult", "A", "QueryResult", "instance", "containing", "the", "datasources", "compatible", "with", "the", "given", "model", "(", "convertible", "to", "a", ...
def compatible_datasources(self, model) -> PandasQueryResult: if isinstance(model, str): return self._compatible_datasources( self._models.set_index("name").loc[model] ) else: return self._compatible_datasources(model)
[ "def", "compatible_datasources", "(", "self", ",", "model", ")", "->", "PandasQueryResult", ":", "if", "isinstance", "(", "model", ",", "str", ")", ":", "return", "self", ".", "_compatible_datasources", "(", "self", ".", "_models", ".", "set_index", "(", "\"...
Return all datasources that are compatible with model Parameters
[ "Return", "all", "datasources", "that", "are", "compatible", "with", "model", "Parameters" ]
[ "\"\"\"Return all datasources that are compatible with model\n\n Parameters\n ----------\n model : str or dict-like\n Any dictionary-like (including CatalogModelEntry) that has\n keys 'format', 'tasks' and 'labels_required', representing\n these properties of th...
[ { "param": "self", "type": null }, { "param": "model", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "model", "type": null, "docstring": null, "docstring_tokens": ...
56cfd11e5b3d499d3765f02b913ae83a56e854c1
offerijns/deepmorpheus
deepmorpheus/util.py
[ "MIT" ]
Python
download_from_url
<not_specific>
def download_from_url(url, dst): """ @param: url to download file @param: dst place to put the file """ file_size = int(requests.head(url).headers["Content-Length"]) partial_dst = dst + ".partial" if os.path.exists(partial_dst): first_byte = os.path.getsize(partial_dst) else: ...
@param: url to download file @param: dst place to put the file
@param: url to download file @param: dst place to put the file
[ "@param", ":", "url", "to", "download", "file", "@param", ":", "dst", "place", "to", "put", "the", "file" ]
def download_from_url(url, dst): file_size = int(requests.head(url).headers["Content-Length"]) partial_dst = dst + ".partial" if os.path.exists(partial_dst): first_byte = os.path.getsize(partial_dst) else: first_byte = 0 if first_byte >= file_size: return file_size header...
[ "def", "download_from_url", "(", "url", ",", "dst", ")", ":", "file_size", "=", "int", "(", "requests", ".", "head", "(", "url", ")", ".", "headers", "[", "\"Content-Length\"", "]", ")", "partial_dst", "=", "dst", "+", "\".partial\"", "if", "os", ".", ...
@param: url to download file @param: dst place to put the file
[ "@param", ":", "url", "to", "download", "file", "@param", ":", "dst", "place", "to", "put", "the", "file" ]
[ "\"\"\"\n @param: url to download file\n @param: dst place to put the file\n \"\"\"", "# First download to .partial file, then rename" ]
[ { "param": "url", "type": null }, { "param": "dst", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "url", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "dst", "type": null, "docstring": null, "docstring_tokens": [],...
56cfd11e5b3d499d3765f02b913ae83a56e854c1
offerijns/deepmorpheus
deepmorpheus/util.py
[ "MIT" ]
Python
tag_to_readable
<not_specific>
def tag_to_readable(tag, conversion): """This functions turns a 9 character tag into a human readable morphological statement""" parts = [] for index, char in enumerate(tag): if char == '-': continue parts.append(conversion[index][char] if char in conversion[index] else char) return ...
This functions turns a 9 character tag into a human readable morphological statement
This functions turns a 9 character tag into a human readable morphological statement
[ "This", "functions", "turns", "a", "9", "character", "tag", "into", "a", "human", "readable", "morphological", "statement" ]
def tag_to_readable(tag, conversion): parts = [] for index, char in enumerate(tag): if char == '-': continue parts.append(conversion[index][char] if char in conversion[index] else char) return " ".join(parts)
[ "def", "tag_to_readable", "(", "tag", ",", "conversion", ")", ":", "parts", "=", "[", "]", "for", "index", ",", "char", "in", "enumerate", "(", "tag", ")", ":", "if", "char", "==", "'-'", ":", "continue", "parts", ".", "append", "(", "conversion", "[...
This functions turns a 9 character tag into a human readable morphological statement
[ "This", "functions", "turns", "a", "9", "character", "tag", "into", "a", "human", "readable", "morphological", "statement" ]
[ "\"\"\"This functions turns a 9 character tag into a human readable morphological\n statement\"\"\"" ]
[ { "param": "tag", "type": null }, { "param": "conversion", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "tag", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "conversion", "type": null, "docstring": null, "docstring_token...
56cfd11e5b3d499d3765f02b913ae83a56e854c1
offerijns/deepmorpheus
deepmorpheus/util.py
[ "MIT" ]
Python
readable_conversion_file
<not_specific>
def readable_conversion_file(url): """Reads the provided url as a conversion file""" conversion_dict = [] with open(url, 'r', encoding='utf-8') as f: lines = f.readlines() assert len(lines) == 9, "The conversion file must have exactly 9 lines detailing the 9 conversion categories" f...
Reads the provided url as a conversion file
Reads the provided url as a conversion file
[ "Reads", "the", "provided", "url", "as", "a", "conversion", "file" ]
def readable_conversion_file(url): conversion_dict = [] with open(url, 'r', encoding='utf-8') as f: lines = f.readlines() assert len(lines) == 9, "The conversion file must have exactly 9 lines detailing the 9 conversion categories" for line in lines: category_dict = {} ...
[ "def", "readable_conversion_file", "(", "url", ")", ":", "conversion_dict", "=", "[", "]", "with", "open", "(", "url", ",", "'r'", ",", "encoding", "=", "'utf-8'", ")", "as", "f", ":", "lines", "=", "f", ".", "readlines", "(", ")", "assert", "len", "...
Reads the provided url as a conversion file
[ "Reads", "the", "provided", "url", "as", "a", "conversion", "file" ]
[ "\"\"\"Reads the provided url as a conversion file\"\"\"" ]
[ { "param": "url", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "url", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
init_word_hidden
null
def init_word_hidden(self): """Initialise word LSTM hidden state.""" self.word_lstm_hidden = ( torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.word_lstm_hidden_dim).to(self.device), torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hp...
Initialise word LSTM hidden state.
Initialise word LSTM hidden state.
[ "Initialise", "word", "LSTM", "hidden", "state", "." ]
def init_word_hidden(self): self.word_lstm_hidden = ( torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.word_lstm_hidden_dim).to(self.device), torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.word_lstm_hidden_dim).to(self.device), ...
[ "def", "init_word_hidden", "(", "self", ")", ":", "self", ".", "word_lstm_hidden", "=", "(", "torch", ".", "zeros", "(", "self", ".", "directions", "*", "self", ".", "hparams", ".", "num_lstm_layers", ",", "1", ",", "self", ".", "hparams", ".", "word_lst...
Initialise word LSTM hidden state.
[ "Initialise", "word", "LSTM", "hidden", "state", "." ]
[ "\"\"\"Initialise word LSTM hidden state.\"\"\"" ]
[ { "param": "self", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
init_char_hidden
null
def init_char_hidden(self): """Initialise char LSTM hidden state.""" self.char_lstm_hidden = ( torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.char_lstm_hidden_dim).to(self.device), torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hp...
Initialise char LSTM hidden state.
Initialise char LSTM hidden state.
[ "Initialise", "char", "LSTM", "hidden", "state", "." ]
def init_char_hidden(self): self.char_lstm_hidden = ( torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.char_lstm_hidden_dim).to(self.device), torch.zeros(self.directions * self.hparams.num_lstm_layers, 1, self.hparams.char_lstm_hidden_dim).to(self.device), ...
[ "def", "init_char_hidden", "(", "self", ")", ":", "self", ".", "char_lstm_hidden", "=", "(", "torch", ".", "zeros", "(", "self", ".", "directions", "*", "self", ".", "hparams", ".", "num_lstm_layers", ",", "1", ",", "self", ".", "hparams", ".", "char_lst...
Initialise char LSTM hidden state.
[ "Initialise", "char", "LSTM", "hidden", "state", "." ]
[ "\"\"\"Initialise char LSTM hidden state.\"\"\"" ]
[ { "param": "self", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
forward
<not_specific>
def forward(self, sentence): """The main forward function, this does the actual heavy lifting""" words = torch.tensor([word for word, _, _ in sentence]).to(self.device) word_embeddings = self.word_embeddings(words) word_embeddings_bs = word_embeddings.view(len(sentence), self.hparams.ba...
The main forward function, this does the actual heavy lifting
The main forward function, this does the actual heavy lifting
[ "The", "main", "forward", "function", "this", "does", "the", "actual", "heavy", "lifting" ]
def forward(self, sentence): words = torch.tensor([word for word, _, _ in sentence]).to(self.device) word_embeddings = self.word_embeddings(words) word_embeddings_bs = word_embeddings.view(len(sentence), self.hparams.batch_size, self.hparams.word_embedding_dim) word_repr = [] if ...
[ "def", "forward", "(", "self", ",", "sentence", ")", ":", "words", "=", "torch", ".", "tensor", "(", "[", "word", "for", "word", ",", "_", ",", "_", "in", "sentence", "]", ")", ".", "to", "(", "self", ".", "device", ")", "word_embeddings", "=", "...
The main forward function, this does the actual heavy lifting
[ "The", "main", "forward", "function", "this", "does", "the", "actual", "heavy", "lifting" ]
[ "\"\"\"The main forward function, this does the actual heavy lifting\"\"\"", "# Don't store representation between words", "# Character-level representation is the LSTM output of the last character.", "# Each sentence embedding dimensions are word embedding dimensions + character representation dimensions", ...
[ { "param": "self", "type": null }, { "param": "sentence", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "sentence", "type": null, "docstring": null, "docstring_tokens...
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
training_step
<not_specific>
def training_step(self, sentence, batch_idx): """Predicts the output of the provided input for the model and calculates loss over it""" self.init_word_hidden() outputs = self.forward(sentence) # Shape: (sentence_len, 9, num_tag_output) loss = self.nll_loss(sentence, outputs) ...
Predicts the output of the provided input for the model and calculates loss over it
Predicts the output of the provided input for the model and calculates loss over it
[ "Predicts", "the", "output", "of", "the", "provided", "input", "for", "the", "model", "and", "calculates", "loss", "over", "it" ]
def training_step(self, sentence, batch_idx): self.init_word_hidden() outputs = self.forward(sentence) loss = self.nll_loss(sentence, outputs) logs = {'train_loss': loss} return {'loss': loss, 'log': logs}
[ "def", "training_step", "(", "self", ",", "sentence", ",", "batch_idx", ")", ":", "self", ".", "init_word_hidden", "(", ")", "outputs", "=", "self", ".", "forward", "(", "sentence", ")", "loss", "=", "self", ".", "nll_loss", "(", "sentence", ",", "output...
Predicts the output of the provided input for the model and calculates loss over it
[ "Predicts", "the", "output", "of", "the", "provided", "input", "for", "the", "model", "and", "calculates", "loss", "over", "it" ]
[ "\"\"\"Predicts the output of the provided input for the model and calculates loss over it\"\"\"", "# Shape: (sentence_len, 9, num_tag_output)" ]
[ { "param": "self", "type": null }, { "param": "sentence", "type": null }, { "param": "batch_idx", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "sentence", "type": null, "docstring": null, "docstring_tokens...
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
validation_step
<not_specific>
def validation_step(self, sentence, batch_idx): """Handles one single validation step, computes its loss and updates accuracy""" self.init_word_hidden() outputs = self.forward(sentence) # Shape: (sentence_len, 9, num_tag_output) loss = self.nll_loss(sentence, outputs) av...
Handles one single validation step, computes its loss and updates accuracy
Handles one single validation step, computes its loss and updates accuracy
[ "Handles", "one", "single", "validation", "step", "computes", "its", "loss", "and", "updates", "accuracy" ]
def validation_step(self, sentence, batch_idx): self.init_word_hidden() outputs = self.forward(sentence) loss = self.nll_loss(sentence, outputs) avg_acc, acc_by_tag = self.accuracy(sentence, outputs) return {'val_loss': loss, 'val_acc': avg_acc, 'acc_by_tag': acc_by_tag}
[ "def", "validation_step", "(", "self", ",", "sentence", ",", "batch_idx", ")", ":", "self", ".", "init_word_hidden", "(", ")", "outputs", "=", "self", ".", "forward", "(", "sentence", ")", "loss", "=", "self", ".", "nll_loss", "(", "sentence", ",", "outp...
Handles one single validation step, computes its loss and updates accuracy
[ "Handles", "one", "single", "validation", "step", "computes", "its", "loss", "and", "updates", "accuracy" ]
[ "\"\"\"Handles one single validation step, computes its loss and updates accuracy\"\"\"", "# Shape: (sentence_len, 9, num_tag_output)" ]
[ { "param": "self", "type": null }, { "param": "sentence", "type": null }, { "param": "batch_idx", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "sentence", "type": null, "docstring": null, "docstring_tokens...
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
validation_epoch_end
<not_specific>
def validation_epoch_end(self, outputs): """Called when an validation epoch ends, this prints out the average loss and accuracy""" avg_loss = torch.stack([x['val_loss'] for x in outputs]).mean() avg_acc = torch.stack([x['val_acc'] for x in outputs]).mean() print('Validation loss is %.2f,...
Called when an validation epoch ends, this prints out the average loss and accuracy
Called when an validation epoch ends, this prints out the average loss and accuracy
[ "Called", "when", "an", "validation", "epoch", "ends", "this", "prints", "out", "the", "average", "loss", "and", "accuracy" ]
def validation_epoch_end(self, outputs): avg_loss = torch.stack([x['val_loss'] for x in outputs]).mean() avg_acc = torch.stack([x['val_acc'] for x in outputs]).mean() print('Validation loss is %.2f, validation accuracy is %.2f%%' % (avg_loss, avg_acc * 100)) log = {'val_loss': avg_loss, ...
[ "def", "validation_epoch_end", "(", "self", ",", "outputs", ")", ":", "avg_loss", "=", "torch", ".", "stack", "(", "[", "x", "[", "'val_loss'", "]", "for", "x", "in", "outputs", "]", ")", ".", "mean", "(", ")", "avg_acc", "=", "torch", ".", "stack", ...
Called when an validation epoch ends, this prints out the average loss and accuracy
[ "Called", "when", "an", "validation", "epoch", "ends", "this", "prints", "out", "the", "average", "loss", "and", "accuracy" ]
[ "\"\"\"Called when an validation epoch ends, this prints out the average loss and accuracy\"\"\"" ]
[ { "param": "self", "type": null }, { "param": "outputs", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "outputs", "type": null, "docstring": null, "docstring_tokens"...
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
nll_loss
<not_specific>
def nll_loss(self, sentence, outputs): """Calculates NLL loss over the combination of the predicted output and the ground truth""" loss_all_words = 0.0 for word_idx in range(len(sentence)): output = outputs[word_idx] target = sentence[word_idx][2] try: ...
Calculates NLL loss over the combination of the predicted output and the ground truth
Calculates NLL loss over the combination of the predicted output and the ground truth
[ "Calculates", "NLL", "loss", "over", "the", "combination", "of", "the", "predicted", "output", "and", "the", "ground", "truth" ]
def nll_loss(self, sentence, outputs): loss_all_words = 0.0 for word_idx in range(len(sentence)): output = outputs[word_idx] target = sentence[word_idx][2] try: loss_per_tag = [F.nll_loss(output[tag_idx].unsqueeze(0), target[tag_idx]) for tag_idx in ra...
[ "def", "nll_loss", "(", "self", ",", "sentence", ",", "outputs", ")", ":", "loss_all_words", "=", "0.0", "for", "word_idx", "in", "range", "(", "len", "(", "sentence", ")", ")", ":", "output", "=", "outputs", "[", "word_idx", "]", "target", "=", "sente...
Calculates NLL loss over the combination of the predicted output and the ground truth
[ "Calculates", "NLL", "loss", "over", "the", "combination", "of", "the", "predicted", "output", "and", "the", "ground", "truth" ]
[ "\"\"\"Calculates NLL loss over the combination of the predicted output and the ground truth\"\"\"" ]
[ { "param": "self", "type": null }, { "param": "sentence", "type": null }, { "param": "outputs", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "sentence", "type": null, "docstring": null, "docstring_tokens...
72884fedb35cfa00e42c4e3b1bc012fa847de220
offerijns/deepmorpheus
deepmorpheus/model.py
[ "MIT" ]
Python
accuracy
<not_specific>
def accuracy(self, sentence, outputs): """Calculates the summed/mean accuracy for this sentence as well as the accuracy by tag""" sum_accuracy = 0.0 sentence_len = len(sentence) sum_acc_by_tag = [0 for i in range(self.tag_len)] for word_idx in range(sentence_len): out...
Calculates the summed/mean accuracy for this sentence as well as the accuracy by tag
Calculates the summed/mean accuracy for this sentence as well as the accuracy by tag
[ "Calculates", "the", "summed", "/", "mean", "accuracy", "for", "this", "sentence", "as", "well", "as", "the", "accuracy", "by", "tag" ]
def accuracy(self, sentence, outputs): sum_accuracy = 0.0 sentence_len = len(sentence) sum_acc_by_tag = [0 for i in range(self.tag_len)] for word_idx in range(sentence_len): output = outputs[word_idx] target = sentence[word_idx][2] try: ...
[ "def", "accuracy", "(", "self", ",", "sentence", ",", "outputs", ")", ":", "sum_accuracy", "=", "0.0", "sentence_len", "=", "len", "(", "sentence", ")", "sum_acc_by_tag", "=", "[", "0", "for", "i", "in", "range", "(", "self", ".", "tag_len", ")", "]", ...
Calculates the summed/mean accuracy for this sentence as well as the accuracy by tag
[ "Calculates", "the", "summed", "/", "mean", "accuracy", "for", "this", "sentence", "as", "well", "as", "the", "accuracy", "by", "tag" ]
[ "\"\"\"Calculates the summed/mean accuracy for this sentence as well as the accuracy by tag\"\"\"", "# Accuracy per tag per word", "# Accuracy per word", "# During development this happened once or twice, should not happen anymore, but let's leave it in there" ]
[ { "param": "self", "type": null }, { "param": "sentence", "type": null }, { "param": "outputs", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "sentence", "type": null, "docstring": null, "docstring_tokens...
d066b97c039f15fd1a82ea0d5e55632769fab20f
offerijns/deepmorpheus
deepmorpheus/tag.py
[ "MIT" ]
Python
attempt_vocab_load
<not_specific>
def attempt_vocab_load(vocab_path): """This function will try to load the vocab file from data/vocab.p. If it fails it will abort execution since we need a vocabulary to correctly tokenize the input data""" if not os.path.isfile(vocab_path): print("Vocabulary needs to be located here: %s" % voca...
This function will try to load the vocab file from data/vocab.p. If it fails it will abort execution since we need a vocabulary to correctly tokenize the input data
This function will try to load the vocab file from data/vocab.p. If it fails it will abort execution since we need a vocabulary to correctly tokenize the input data
[ "This", "function", "will", "try", "to", "load", "the", "vocab", "file", "from", "data", "/", "vocab", ".", "p", ".", "If", "it", "fails", "it", "will", "abort", "execution", "since", "we", "need", "a", "vocabulary", "to", "correctly", "tokenize", "the",...
def attempt_vocab_load(vocab_path): if not os.path.isfile(vocab_path): print("Vocabulary needs to be located here: %s" % vocab_path) exit() print("Loading vocabulary from cache: %s" % vocab_path) with open(vocab_path, "rb") as f: vocab = pickle.load(f) return vocab
[ "def", "attempt_vocab_load", "(", "vocab_path", ")", ":", "if", "not", "os", ".", "path", ".", "isfile", "(", "vocab_path", ")", ":", "print", "(", "\"Vocabulary needs to be located here: %s\"", "%", "vocab_path", ")", "exit", "(", ")", "print", "(", "\"Loadin...
This function will try to load the vocab file from data/vocab.p.
[ "This", "function", "will", "try", "to", "load", "the", "vocab", "file", "from", "data", "/", "vocab", ".", "p", "." ]
[ "\"\"\"This function will try to load the vocab file from data/vocab.p.\n If it fails it will abort execution since we need a vocabulary to correctly\n tokenize the input data\"\"\"" ]
[ { "param": "vocab_path", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "vocab_path", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
d066b97c039f15fd1a82ea0d5e55632769fab20f
offerijns/deepmorpheus
deepmorpheus/tag.py
[ "MIT" ]
Python
attempt_input_load
<not_specific>
def attempt_input_load(input_path): """Attempts to load the file at the provided path and return it as an array of lines. If the file does not exist we will exit the program since nothing useful can be done.""" if not os.path.isfile(input_path): print("Input file does not exist: %s" % input_path...
Attempts to load the file at the provided path and return it as an array of lines. If the file does not exist we will exit the program since nothing useful can be done.
Attempts to load the file at the provided path and return it as an array of lines. If the file does not exist we will exit the program since nothing useful can be done.
[ "Attempts", "to", "load", "the", "file", "at", "the", "provided", "path", "and", "return", "it", "as", "an", "array", "of", "lines", ".", "If", "the", "file", "does", "not", "exist", "we", "will", "exit", "the", "program", "since", "nothing", "useful", ...
def attempt_input_load(input_path): if not os.path.isfile(input_path): print("Input file does not exist: %s" % input_path) exit() print("Loading input from file: %s" % input_path) with open(input_path, "r", encoding='utf-8') as f: lines = f.readlines() return lines
[ "def", "attempt_input_load", "(", "input_path", ")", ":", "if", "not", "os", ".", "path", ".", "isfile", "(", "input_path", ")", ":", "print", "(", "\"Input file does not exist: %s\"", "%", "input_path", ")", "exit", "(", ")", "print", "(", "\"Loading input fr...
Attempts to load the file at the provided path and return it as an array of lines.
[ "Attempts", "to", "load", "the", "file", "at", "the", "provided", "path", "and", "return", "it", "as", "an", "array", "of", "lines", "." ]
[ "\"\"\"Attempts to load the file at the provided path and return it as an array\n of lines. If the file does not exist we will exit the program since nothing\n useful can be done.\"\"\"" ]
[ { "param": "input_path", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "input_path", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }
d066b97c039f15fd1a82ea0d5e55632769fab20f
offerijns/deepmorpheus
deepmorpheus/tag.py
[ "MIT" ]
Python
attempt_checkpoint_load
<not_specific>
def attempt_checkpoint_load(checkpoint_path, vocab, device, force_compatibility=False): """This function tries to load a pytorch checkpoint, if it fails it aborts the program""" if not os.path.isfile(checkpoint_path): print("Model checkpoint file does not exist: %s" % checkpoint_path) exit() ...
This function tries to load a pytorch checkpoint, if it fails it aborts the program
This function tries to load a pytorch checkpoint, if it fails it aborts the program
[ "This", "function", "tries", "to", "load", "a", "pytorch", "checkpoint", "if", "it", "fails", "it", "aborts", "the", "program" ]
def attempt_checkpoint_load(checkpoint_path, vocab, device, force_compatibility=False): if not os.path.isfile(checkpoint_path): print("Model checkpoint file does not exist: %s" % checkpoint_path) exit() print("Loading model from checkpoint: %s" % checkpoint_path) checkpoint = torch.load(chec...
[ "def", "attempt_checkpoint_load", "(", "checkpoint_path", ",", "vocab", ",", "device", ",", "force_compatibility", "=", "False", ")", ":", "if", "not", "os", ".", "path", ".", "isfile", "(", "checkpoint_path", ")", ":", "print", "(", "\"Model checkpoint file doe...
This function tries to load a pytorch checkpoint, if it fails it aborts the program
[ "This", "function", "tries", "to", "load", "a", "pytorch", "checkpoint", "if", "it", "fails", "it", "aborts", "the", "program" ]
[ "\"\"\"This function tries to load a pytorch checkpoint, if it fails it aborts the program\"\"\"", "# Only turn this on if we need to load an older model which had different hparams", "# vocab.tag_names = [\"word_type\", \"person\", \"number\", \"tense\", \"mode\", \"voice\", \"gender\", \"case\", \"degree_of_c...
[ { "param": "checkpoint_path", "type": null }, { "param": "vocab", "type": null }, { "param": "device", "type": null }, { "param": "force_compatibility", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "checkpoint_path", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "vocab", "type": null, "docstring": null, "docstrin...
d066b97c039f15fd1a82ea0d5e55632769fab20f
offerijns/deepmorpheus
deepmorpheus/tag.py
[ "MIT" ]
Python
tag_from_file
<not_specific>
def tag_from_file(input_path, language="ancient-greek", data_dir="data"): """Loads from a specified file, loads the file and then forwards to the tag_from_lines function """ # Try to load input file as list of lines, or abort input_file = attempt_input_load(input_path) return tag_from_lines(input_file, ...
Loads from a specified file, loads the file and then forwards to the tag_from_lines function
Loads from a specified file, loads the file and then forwards to the tag_from_lines function
[ "Loads", "from", "a", "specified", "file", "loads", "the", "file", "and", "then", "forwards", "to", "the", "tag_from_lines", "function" ]
def tag_from_file(input_path, language="ancient-greek", data_dir="data"): input_file = attempt_input_load(input_path) return tag_from_lines(input_file, language, data_dir)
[ "def", "tag_from_file", "(", "input_path", ",", "language", "=", "\"ancient-greek\"", ",", "data_dir", "=", "\"data\"", ")", ":", "input_file", "=", "attempt_input_load", "(", "input_path", ")", "return", "tag_from_lines", "(", "input_file", ",", "language", ",", ...
Loads from a specified file, loads the file and then forwards to the tag_from_lines function
[ "Loads", "from", "a", "specified", "file", "loads", "the", "file", "and", "then", "forwards", "to", "the", "tag_from_lines", "function" ]
[ "\"\"\"Loads from a specified file, loads the file and then forwards to the tag_from_lines function \"\"\"", "# Try to load input file as list of lines, or abort" ]
[ { "param": "input_path", "type": null }, { "param": "language", "type": null }, { "param": "data_dir", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "input_path", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "language", "type": null, "docstring": null, "docstring_...
4bc125da8ecfa8b8c8f82ff180a8a60bc8f4ae72
offerijns/deepmorpheus
deepmorpheus/dataset.py
[ "MIT" ]
Python
save_vocab
null
def save_vocab(self, vocab_path): """This function saves the vocabulary file to the disk location provided""" self.vocab.inverted_tags = [{v: k for k, v in tag.items()} for tag in self.vocab.tags] with open(vocab_path, "wb") as vocab_file: pickle.dump(self.vocab, vocab_file, protoco...
This function saves the vocabulary file to the disk location provided
This function saves the vocabulary file to the disk location provided
[ "This", "function", "saves", "the", "vocabulary", "file", "to", "the", "disk", "location", "provided" ]
def save_vocab(self, vocab_path): self.vocab.inverted_tags = [{v: k for k, v in tag.items()} for tag in self.vocab.tags] with open(vocab_path, "wb") as vocab_file: pickle.dump(self.vocab, vocab_file, protocol=pickle.HIGHEST_PROTOCOL) print("Saved vocabulary to cache: %s" % vocab_...
[ "def", "save_vocab", "(", "self", ",", "vocab_path", ")", ":", "self", ".", "vocab", ".", "inverted_tags", "=", "[", "{", "v", ":", "k", "for", "k", ",", "v", "in", "tag", ".", "items", "(", ")", "}", "for", "tag", "in", "self", ".", "vocab", "...
This function saves the vocabulary file to the disk location provided
[ "This", "function", "saves", "the", "vocabulary", "file", "to", "the", "disk", "location", "provided" ]
[ "\"\"\"This function saves the vocabulary file to the disk location provided\"\"\"" ]
[ { "param": "self", "type": null }, { "param": "vocab_path", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "vocab_path", "type": null, "docstring": null, "docstring_toke...
e59a88154eea7e87f83236c9940b6230648e1097
wellcomecollection/archivematica-infra
azure_ad_login/create_azure_client_secret.py
[ "MIT" ]
Python
login
null
def login(): """ Logs in the current user using the Azure CLI. """ az("login")
Logs in the current user using the Azure CLI.
Logs in the current user using the Azure CLI.
[ "Logs", "in", "the", "current", "user", "using", "the", "Azure", "CLI", "." ]
def login(): az("login")
[ "def", "login", "(", ")", ":", "az", "(", "\"login\"", ")" ]
Logs in the current user using the Azure CLI.
[ "Logs", "in", "the", "current", "user", "using", "the", "Azure", "CLI", "." ]
[ "\"\"\"\n Logs in the current user using the Azure CLI.\n \"\"\"" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
e59a88154eea7e87f83236c9940b6230648e1097
wellcomecollection/archivematica-infra
azure_ad_login/create_azure_client_secret.py
[ "MIT" ]
Python
create_password
<not_specific>
def create_password(): """ Returns a cryptographically secure new password. """ return secrets.token_hex(32)
Returns a cryptographically secure new password.
Returns a cryptographically secure new password.
[ "Returns", "a", "cryptographically", "secure", "new", "password", "." ]
def create_password(): return secrets.token_hex(32)
[ "def", "create_password", "(", ")", ":", "return", "secrets", ".", "token_hex", "(", "32", ")" ]
Returns a cryptographically secure new password.
[ "Returns", "a", "cryptographically", "secure", "new", "password", "." ]
[ "\"\"\"\n Returns a cryptographically secure new password.\n \"\"\"" ]
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
e59a88154eea7e87f83236c9940b6230648e1097
wellcomecollection/archivematica-infra
azure_ad_login/create_azure_client_secret.py
[ "MIT" ]
Python
store_az_client_secret
null
def store_az_client_secret(*, app_id, env, password): """ Stores a new client secret with an Azure application. """ az( "ad", "app", "credential", "reset", # --append = append a new credential rather than overwriting the # existing credentials. "--...
Stores a new client secret with an Azure application.
Stores a new client secret with an Azure application.
[ "Stores", "a", "new", "client", "secret", "with", "an", "Azure", "application", "." ]
def store_az_client_secret(*, app_id, env, password): az( "ad", "app", "credential", "reset", "--append", "--id", app_id, "--end-date", (dt.date.today() + dt.timedelta(days=365)).isoformat(), "--credential-description", f"weco/{...
[ "def", "store_az_client_secret", "(", "*", ",", "app_id", ",", "env", ",", "password", ")", ":", "az", "(", "\"ad\"", ",", "\"app\"", ",", "\"credential\"", ",", "\"reset\"", ",", "\"--append\"", ",", "\"--id\"", ",", "app_id", ",", "\"--end-date\"", ",", ...
Stores a new client secret with an Azure application.
[ "Stores", "a", "new", "client", "secret", "with", "an", "Azure", "application", "." ]
[ "\"\"\"\n Stores a new client secret with an Azure application.\n \"\"\"", "# --append = append a new credential rather than overwriting the", "# existing credentials.", "# application ID", "# Expires one year after it's created", "# Unfortunately, this description can only be a handful of character...
[ { "param": "app_id", "type": null }, { "param": "env", "type": null }, { "param": "password", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "app_id", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "env", "type": null, "docstring": null, "docstring_tokens": ...
e59a88154eea7e87f83236c9940b6230648e1097
wellcomecollection/archivematica-infra
azure_ad_login/create_azure_client_secret.py
[ "MIT" ]
Python
store_secrets_manager_secret
null
def store_secrets_manager_secret(*, secret_id, secret_value, role_arn): """ Stores a new client secret in Secrets Manager. """ secrets_client = get_aws_client("secretsmanager", role_arn=role_arn) try: resp = secrets_client.create_secret(Name=secret_id, SecretString=secret_value,) except...
Stores a new client secret in Secrets Manager.
Stores a new client secret in Secrets Manager.
[ "Stores", "a", "new", "client", "secret", "in", "Secrets", "Manager", "." ]
def store_secrets_manager_secret(*, secret_id, secret_value, role_arn): secrets_client = get_aws_client("secretsmanager", role_arn=role_arn) try: resp = secrets_client.create_secret(Name=secret_id, SecretString=secret_value,) except ClientError as err: if err.response["Error"]["Code"] == "Re...
[ "def", "store_secrets_manager_secret", "(", "*", ",", "secret_id", ",", "secret_value", ",", "role_arn", ")", ":", "secrets_client", "=", "get_aws_client", "(", "\"secretsmanager\"", ",", "role_arn", "=", "role_arn", ")", "try", ":", "resp", "=", "secrets_client",...
Stores a new client secret in Secrets Manager.
[ "Stores", "a", "new", "client", "secret", "in", "Secrets", "Manager", "." ]
[ "\"\"\"\n Stores a new client secret in Secrets Manager.\n \"\"\"" ]
[ { "param": "secret_id", "type": null }, { "param": "secret_value", "type": null }, { "param": "role_arn", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "secret_id", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "secret_value", "type": null, "docstring": null, "docstri...
e59a88154eea7e87f83236c9940b6230648e1097
wellcomecollection/archivematica-infra
azure_ad_login/create_azure_client_secret.py
[ "MIT" ]
Python
force_ecs_task_redeployment
null
def force_ecs_task_redeployment(*, cluster_name, service_name): """ Force an ECS task to restart, so it picks up a fresh copy of secrets in Secrets Manager. """ ecs_client = get_aws_client("ecs", role_arn=WORKFLOW_DEV_ROLE_ARN) resp = ecs_client.update_service( cluster=cluster_name, ser...
Force an ECS task to restart, so it picks up a fresh copy of secrets in Secrets Manager.
Force an ECS task to restart, so it picks up a fresh copy of secrets in Secrets Manager.
[ "Force", "an", "ECS", "task", "to", "restart", "so", "it", "picks", "up", "a", "fresh", "copy", "of", "secrets", "in", "Secrets", "Manager", "." ]
def force_ecs_task_redeployment(*, cluster_name, service_name): ecs_client = get_aws_client("ecs", role_arn=WORKFLOW_DEV_ROLE_ARN) resp = ecs_client.update_service( cluster=cluster_name, service=service_name, forceNewDeployment=True )
[ "def", "force_ecs_task_redeployment", "(", "*", ",", "cluster_name", ",", "service_name", ")", ":", "ecs_client", "=", "get_aws_client", "(", "\"ecs\"", ",", "role_arn", "=", "WORKFLOW_DEV_ROLE_ARN", ")", "resp", "=", "ecs_client", ".", "update_service", "(", "clu...
Force an ECS task to restart, so it picks up a fresh copy of secrets in Secrets Manager.
[ "Force", "an", "ECS", "task", "to", "restart", "so", "it", "picks", "up", "a", "fresh", "copy", "of", "secrets", "in", "Secrets", "Manager", "." ]
[ "\"\"\"\n Force an ECS task to restart, so it picks up a fresh copy of secrets in\n Secrets Manager.\n \"\"\"" ]
[ { "param": "cluster_name", "type": null }, { "param": "service_name", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "cluster_name", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "service_name", "type": null, "docstring": null, "docs...
adf7855e807ed056f186c4509ce318820bffbb00
wellcomecollection/archivematica-infra
s3_start_transfer/src/archivematica.py
[ "MIT" ]
Python
am_api_post_json
<not_specific>
def am_api_post_json(api_path, data): """ POST json to the Archivematica API :param api_path: URL path to request (without hostname, e.g. /api/v2/location/) :param data: Dict of data to post :returns: dict of json data returned by request """ am_url = os.environ["ARCHIVEMATICA_URL"] am_u...
POST json to the Archivematica API :param api_path: URL path to request (without hostname, e.g. /api/v2/location/) :param data: Dict of data to post :returns: dict of json data returned by request
POST json to the Archivematica API
[ "POST", "json", "to", "the", "Archivematica", "API" ]
def am_api_post_json(api_path, data): am_url = os.environ["ARCHIVEMATICA_URL"] am_user = os.environ["ARCHIVEMATICA_USERNAME"] am_api_key = os.environ["ARCHIVEMATICA_API_KEY"] am_headers = {"Authorization": f"ApiKey {am_user}:{am_api_key}"} url = f"{am_url}{api_path}" print(f"URL: {url}; Data: {d...
[ "def", "am_api_post_json", "(", "api_path", ",", "data", ")", ":", "am_url", "=", "os", ".", "environ", "[", "\"ARCHIVEMATICA_URL\"", "]", "am_user", "=", "os", ".", "environ", "[", "\"ARCHIVEMATICA_USERNAME\"", "]", "am_api_key", "=", "os", ".", "environ", ...
POST json to the Archivematica API
[ "POST", "json", "to", "the", "Archivematica", "API" ]
[ "\"\"\"\n POST json to the Archivematica API\n :param api_path: URL path to request (without hostname, e.g. /api/v2/location/)\n :param data: Dict of data to post\n :returns: dict of json data returned by request\n \"\"\"" ]
[ { "param": "api_path", "type": null }, { "param": "data", "type": null } ]
{ "returns": [ { "docstring": "dict of json data returned by request", "docstring_tokens": [ "dict", "of", "json", "data", "returned", "by", "request" ], "type": null } ], "raises": [], "params": [ { "identifier": ...
adf7855e807ed056f186c4509ce318820bffbb00
wellcomecollection/archivematica-infra
s3_start_transfer/src/archivematica.py
[ "MIT" ]
Python
ss_api_get
<not_specific>
def ss_api_get(api_path, params=None): """ GET request to the Archivematica storage service API :param api_path: URL path to request (without hostname, e.g. /api/v2/location/) :param params: Dict of params to include in the request :returns: dict of json data returned by request """ ss_url =...
GET request to the Archivematica storage service API :param api_path: URL path to request (without hostname, e.g. /api/v2/location/) :param params: Dict of params to include in the request :returns: dict of json data returned by request
GET request to the Archivematica storage service API
[ "GET", "request", "to", "the", "Archivematica", "storage", "service", "API" ]
def ss_api_get(api_path, params=None): ss_url = os.environ["ARCHIVEMATICA_SS_URL"] ss_user = os.environ["ARCHIVEMATICA_SS_USERNAME"] ss_api_key = os.environ["ARCHIVEMATICA_SS_API_KEY"] ss_headers = {"Authorization": f"ApiKey {ss_user}:{ss_api_key}"} params = params or {} url = f"{ss_url}{api_pat...
[ "def", "ss_api_get", "(", "api_path", ",", "params", "=", "None", ")", ":", "ss_url", "=", "os", ".", "environ", "[", "\"ARCHIVEMATICA_SS_URL\"", "]", "ss_user", "=", "os", ".", "environ", "[", "\"ARCHIVEMATICA_SS_USERNAME\"", "]", "ss_api_key", "=", "os", "...
GET request to the Archivematica storage service API
[ "GET", "request", "to", "the", "Archivematica", "storage", "service", "API" ]
[ "\"\"\"\n GET request to the Archivematica storage service API\n :param api_path: URL path to request (without hostname, e.g. /api/v2/location/)\n :param params: Dict of params to include in the request\n :returns: dict of json data returned by request\n \"\"\"" ]
[ { "param": "api_path", "type": null }, { "param": "params", "type": null } ]
{ "returns": [ { "docstring": "dict of json data returned by request", "docstring_tokens": [ "dict", "of", "json", "data", "returned", "by", "request" ], "type": null } ], "raises": [], "params": [ { "identifier": ...
adf7855e807ed056f186c4509ce318820bffbb00
wellcomecollection/archivematica-infra
s3_start_transfer/src/archivematica.py
[ "MIT" ]
Python
find_matching_path
<not_specific>
def find_matching_path(locations, bucket, directory, key): """ Match the given bucket and key to a location and return a path on the Archivematica storage service This takes the form `<location_uuid>:<target_path>` where: `location_uuid` is the UUID of an S3 transfer source `Location` on the ...
Match the given bucket and key to a location and return a path on the Archivematica storage service This takes the form `<location_uuid>:<target_path>` where: `location_uuid` is the UUID of an S3 transfer source `Location` on the Archivematica storage service which is configured with the s...
Match the given bucket and key to a location and return a path on the Archivematica storage service
[ "Match", "the", "given", "bucket", "and", "key", "to", "a", "location", "and", "return", "a", "path", "on", "the", "Archivematica", "storage", "service" ]
def find_matching_path(locations, bucket, directory, key): for location in locations: relative_path = location["relative_path"].strip("/") if relative_path == directory and location["s3_bucket"] == bucket: target_path = "/" + key return b"%s:%s" % (os.fsencode(location["uuid"...
[ "def", "find_matching_path", "(", "locations", ",", "bucket", ",", "directory", ",", "key", ")", ":", "for", "location", "in", "locations", ":", "relative_path", "=", "location", "[", "\"relative_path\"", "]", ".", "strip", "(", "\"/\"", ")", "if", "relative...
Match the given bucket and key to a location and return a path on the Archivematica storage service
[ "Match", "the", "given", "bucket", "and", "key", "to", "a", "location", "and", "return", "a", "path", "on", "the", "Archivematica", "storage", "service" ]
[ "\"\"\"\n Match the given bucket and key to a location and return a path on the\n Archivematica storage service\n\n This takes the form `<location_uuid>:<target_path>` where:\n `location_uuid` is the UUID of an S3 transfer source `Location` on the\n Archivematica storage service which is conf...
[ { "param": "locations", "type": null }, { "param": "bucket", "type": null }, { "param": "directory", "type": null }, { "param": "key", "type": null } ]
{ "returns": [ { "docstring": "bytestring identifying the path", "docstring_tokens": [ "bytestring", "identifying", "the", "path" ], "type": null } ], "raises": [], "params": [ { "identifier": "locations", "type": null, "docst...
adf7855e807ed056f186c4509ce318820bffbb00
wellcomecollection/archivematica-infra
s3_start_transfer/src/archivematica.py
[ "MIT" ]
Python
start_transfer
<not_specific>
def start_transfer(name, path, processing_config, accession_number=None): """ Start an Archivematica transfer using the automated workflow :param name: Name of transfer :param key: Path of transfer, of the form b'<location_uuid>:<target_path>' :returns: transfer uuid """ # Archivematica pr...
Start an Archivematica transfer using the automated workflow :param name: Name of transfer :param key: Path of transfer, of the form b'<location_uuid>:<target_path>' :returns: transfer uuid
Start an Archivematica transfer using the automated workflow
[ "Start", "an", "Archivematica", "transfer", "using", "the", "automated", "workflow" ]
def start_transfer(name, path, processing_config, accession_number=None): data = { "name": name, "type": "zipfile", "path": base64.b64encode(path).decode(), "processing_config": processing_config.replace("-", "_"), "auto_approve": True, } if accession_number is not No...
[ "def", "start_transfer", "(", "name", ",", "path", ",", "processing_config", ",", "accession_number", "=", "None", ")", ":", "data", "=", "{", "\"name\"", ":", "name", ",", "\"type\"", ":", "\"zipfile\"", ",", "\"path\"", ":", "base64", ".", "b64encode", "...
Start an Archivematica transfer using the automated workflow
[ "Start", "an", "Archivematica", "transfer", "using", "the", "automated", "workflow" ]
[ "\"\"\"\n Start an Archivematica transfer using the automated workflow\n\n :param name: Name of transfer\n :param key: Path of transfer, of the form b'<location_uuid>:<target_path>'\n\n :returns: transfer uuid\n \"\"\"", "# Archivematica processing configs don't support dashes, so replace with unde...
[ { "param": "name", "type": null }, { "param": "path", "type": null }, { "param": "processing_config", "type": null }, { "param": "accession_number", "type": null } ]
{ "returns": [ { "docstring": null, "docstring_tokens": [ "None" ], "type": null } ], "raises": [], "params": [ { "identifier": "name", "type": null, "docstring": "Name of transfer", "docstring_tokens": [ "Name", "of", "...
b257601fbbb64c995f7201c6b930588649982800
wellcomecollection/archivematica-infra
docker_run.py
[ "MIT" ]
Python
_aws_credentials_args
<not_specific>
def _aws_credentials_args(): """ Returns the arguments to add to ``docker run`` for sharing AWS credentials with the running container. """ # THE AWS_PROFILE environment allows you to run operations in a # non-default profile. If you have multiple profiles in your ~/.aws # config, use this ...
Returns the arguments to add to ``docker run`` for sharing AWS credentials with the running container.
Returns the arguments to add to ``docker run`` for sharing AWS credentials with the running container.
[ "Returns", "the", "arguments", "to", "add", "to", "`", "`", "docker", "run", "`", "`", "for", "sharing", "AWS", "credentials", "with", "the", "running", "container", "." ]
def _aws_credentials_args(): AWS_PROFILE=platform ./docker_run.py --aws -- ... For details: https://docs.aws.amazon.com/cli/latest/userguide/cli-multiple-profiles.html try: cmd = [ '--env', 'AWS_PROFILE=%s' % os.environ['AWS_PROFILE'], We need this environment varia...
[ "def", "_aws_credentials_args", "(", ")", ":", "try", ":", "cmd", "=", "[", "'--env'", ",", "'AWS_PROFILE=%s'", "%", "os", ".", "environ", "[", "'AWS_PROFILE'", "]", ",", "'--env'", ",", "'AWS_SDK_LOAD_CONFIG=1'", ",", "]", "except", "KeyError", ":", "cmd", ...
Returns the arguments to add to ``docker run`` for sharing AWS credentials with the running container.
[ "Returns", "the", "arguments", "to", "add", "to", "`", "`", "docker", "run", "`", "`", "for", "sharing", "AWS", "credentials", "with", "the", "running", "container", "." ]
[ "\"\"\"\n Returns the arguments to add to ``docker run`` for sharing AWS credentials\n with the running container.\n \"\"\"", "# THE AWS_PROFILE environment allows you to run operations in a", "# non-default profile. If you have multiple profiles in your ~/.aws", "# config, use this variable to choo...
[]
{ "returns": [], "raises": [], "params": [], "outlier_params": [], "others": [] }
214eb463134f1b027af0b580bf5ef3b703a5486a
datmellow/email-scrapper
email_scrapper/readers/base_reader.py
[ "MIT" ]
Python
_get_store_email
str
def _get_store_email(self, store: Stores) -> str: """ Parameters ---------- store :class:Stores Returns ------- the email of the store that the reader will filter by """ if self._email_mapping: email = self._email_mapping.get(store) ...
Parameters ---------- store :class:Stores Returns ------- the email of the store that the reader will filter by
Parameters store :class:Stores Returns the email of the store that the reader will filter by
[ "Parameters", "store", ":", "class", ":", "Stores", "Returns", "the", "email", "of", "the", "store", "that", "the", "reader", "will", "filter", "by" ]
def _get_store_email(self, store: Stores) -> str: if self._email_mapping: email = self._email_mapping.get(store) if email: return email else: return utils.get_store_email(store).value
[ "def", "_get_store_email", "(", "self", ",", "store", ":", "Stores", ")", "->", "str", ":", "if", "self", ".", "_email_mapping", ":", "email", "=", "self", ".", "_email_mapping", ".", "get", "(", "store", ")", "if", "email", ":", "return", "email", "el...
Parameters store :class:Stores
[ "Parameters", "store", ":", "class", ":", "Stores" ]
[ "\"\"\"\n\n Parameters\n ----------\n store :class:Stores\n\n Returns\n -------\n the email of the store that the reader will filter by\n\n \"\"\"" ]
[ { "param": "self", "type": null }, { "param": "store", "type": "Stores" } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "self", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null }, { "identifier": "store", "type": "Stores", "docstring": null, "docstring_token...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
bonusIssue
<not_specific>
def bonusIssue(symbol='', refid='', token='', version='', filter=''): '''Bonus Issue Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#bonus-issue Args: symbol (str...
Bonus Issue Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#bonus-issue Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid...
Bonus Issue Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Bonus", "Issue", "Obtain", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "da...
def bonusIssue(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_bonus/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_bonus/{}'.format(symbol), tok...
[ "def", "bonusIssue", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "_g...
Bonus Issue Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Bonus", "Issue", "Obtain", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Bonus Issue Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#bonus-issue\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that m...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
distribution
<not_specific>
def distribution(symbol='', refid='', token='', version='', filter=''): '''Distribution Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#distribution Args: symbol ...
Distribution Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#distribution Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the ref...
Distribution Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Distribution", "Obtain", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "daily"...
def distribution(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_distribution/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_distribution/{}'.for...
[ "def", "distribution", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "...
Distribution Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Distribution", "Obtain", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Distribution Obtain up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#distribution\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
returnOfCapital
<not_specific>
def returnOfCapital(symbol='', refid='', token='', version='', filter=''): '''Return of capital up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#return-of-capital Args: s...
Return of capital up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#return-of-capital Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the ...
Return of capital up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Return", "of", "capital", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "dai...
def returnOfCapital(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_return_of_capital/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_return_of_ca...
[ "def", "returnOfCapital", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", ...
Return of capital up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Return", "of", "capital", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Return of capital up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#return-of-capital\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id t...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
rightsIssue
<not_specific>
def rightsIssue(symbol='', refid='', token='', version='', filter=''): '''Rights issue up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#rights-issue Args: symbol (str): S...
Rights issue up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#rights-issue Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
Rights issue up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Rights", "issue", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "daily" ]
def rightsIssue(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_rights/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_rights/{}'.format(symbol), ...
[ "def", "rightsIssue", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "_...
Rights issue up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Rights", "issue", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Rights issue up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#rights-issue\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matche...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
rightToPurchase
<not_specific>
def rightToPurchase(symbol='', refid='', token='', version='', filter=''): '''Right to purchase up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#right-to-purchase Args: s...
Right to purchase up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#right-to-purchase Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the ...
Right to purchase up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Right", "to", "purchase", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "dai...
def rightToPurchase(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_right_to_purchase/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_right_to_pur...
[ "def", "rightToPurchase", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", ...
Right to purchase up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Right", "to", "purchase", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Right to purchase up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#right-to-purchase\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id t...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
securityReclassification
<not_specific>
def securityReclassification(symbol='', refid='', token='', version='', filter=''): '''Security reclassification up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#security-reclassifica...
Security reclassification up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#security-reclassification Args: symbol (str): Symbol to look up refid (str): Optional. Id t...
Security reclassification up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Security", "reclassification", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "...
def securityReclassification(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_security_reclassification/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/adva...
[ "def", "securityReclassification", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "...
Security reclassification up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Security", "reclassification", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Security reclassification up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#security-reclassification\n\n Args:\n symbol (str): Symbol to look up\n refid (str)...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
securitySwap
<not_specific>
def securitySwap(symbol='', refid='', token='', version='', filter=''): '''Security Swap up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#security-swap Args: symbol (str)...
Security Swap up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#security-swap Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fi...
Security Swap up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Security", "Swap", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "daily" ]
def securitySwap(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_security_swap/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_security_swap/{}'.f...
[ "def", "securitySwap", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "...
Security Swap up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Security", "Swap", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Security Swap up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#security-swap\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matc...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
spinoff
<not_specific>
def spinoff(symbol='', refid='', token='', version='', filter=''): '''Security spinoff up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#spinoff Args: symbol (str): Symbol...
Security spinoff up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#spinoff Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid field...
Security spinoff up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Security", "spinoff", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "daily" ]
def spinoff(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_spinoff/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_spinoff/{}'.format(symbol), to...
[ "def", "spinoff", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "_getJ...
Security spinoff up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Security", "spinoff", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Security spinoff up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#spinoff\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e6ae681e8454a01332d29100f0b1bb3cb51c5e08
vedsgit/pyEX
pyEX/stocks/corporateActions.py
[ "Apache-2.0" ]
Python
splits
<not_specific>
def splits(symbol='', refid='', token='', version='', filter=''): '''Security splits up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#splits Args: symbol (str): Symbol to...
Security splits up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily https://iexcloud.io/docs/api/#splits Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid field r...
Security splits up-to-date and detailed information on all new announcements, as well as 12+ years of historical records. Updated at 5am, 10am, 8pm UTC daily
[ "Security", "splits", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", ".", "Updated", "at", "5am", "10am", "8pm", "UTC", "daily" ]
def splits(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if refid and symbol: return _getJson('time-series/advanced_splits/{}/{}'.format(symbol, refid), token, version, filter) elif symbol: return _getJson('time-series/advanced_splits/{}'.format(symbol), token...
[ "def", "splits", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "refid", "and", "symbol", ":", "return", "_getJs...
Security splits up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.
[ "Security", "splits", "up", "-", "to", "-", "date", "and", "detailed", "information", "on", "all", "new", "announcements", "as", "well", "as", "12", "+", "years", "of", "historical", "records", "." ]
[ "'''Security splits up-to-date and detailed information on all new announcements, as well as 12+ years of historical records.\n\n Updated at 5am, 10am, 8pm UTC daily\n\n https://iexcloud.io/docs/api/#splits\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches t...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
a9d82b9998621ac3f6b5dbd669e9a26405b90db2
vedsgit/pyEX
pyEX/cryptocurrency/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoBook
<not_specific>
def cryptoBook(symbol, token='', version='', filter=''): '''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as ofte...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below: https://...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", ".", "For", "REST", "you", "will", "receive", "a", "current", "snapshot", "of", "the", "current", "book", "for", "the", "specific", "cryptocurrency",...
def cryptoBook(symbol, token='', version='', filter=''): return _getJson('/crypto/{symbol}/book'.format(symbol=symbol), token, version, filter)
[ "def", "cryptoBook", "(", "symbol", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "return", "_getJson", "(", "'/crypto/{symbol}/book'", ".", "format", "(", "symbol", "=", "symbol", ")", ",", "token", ",", "vers...
This returns a current snapshot of the book for a specified cryptocurrency.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below:\n\n ...
[ { "param": "symbol", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
a9d82b9998621ac3f6b5dbd669e9a26405b90db2
vedsgit/pyEX
pyEX/cryptocurrency/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoPrice
<not_specific>
def cryptoPrice(symbol, token='', version='', filter=''): '''This returns the price for a specified cryptocurrency. https://iexcloud.io/docs/api/#cryptocurrency-price continuous Args: symbol (str): cryptocurrency ticker token (str): Access token version (str): API version ...
This returns the price for a specified cryptocurrency. https://iexcloud.io/docs/api/#cryptocurrency-price continuous Args: symbol (str): cryptocurrency ticker token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#filter-re...
This returns the price for a specified cryptocurrency.
[ "This", "returns", "the", "price", "for", "a", "specified", "cryptocurrency", "." ]
def cryptoPrice(symbol, token='', version='', filter=''): return _getJson('/crypto/{symbol}/price'.format(symbol=symbol), token, version, filter)
[ "def", "cryptoPrice", "(", "symbol", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "return", "_getJson", "(", "'/crypto/{symbol}/price'", ".", "format", "(", "symbol", "=", "symbol", ")", ",", "token", ",", "ve...
This returns the price for a specified cryptocurrency.
[ "This", "returns", "the", "price", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns the price for a specified cryptocurrency.\n\n https://iexcloud.io/docs/api/#cryptocurrency-price\n continuous\n\n Args:\n symbol (str): cryptocurrency ticker\n token (str): Access token\n version (str): API version\n filter (str): filters: https://iexcloud.io/do...
[ { "param": "symbol", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
a9d82b9998621ac3f6b5dbd669e9a26405b90db2
vedsgit/pyEX
pyEX/cryptocurrency/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoQuote
<not_specific>
def cryptoQuote(symbol, token='', version='', filter=''): '''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote continuous Args: symbol (str): cryptocurrency ticker token (str): Acc...
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote continuous Args: symbol (str): cryptocurrency ticker token (str): Access token version (str): API version filter (str)...
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", ".", "Quotes", "are", "available", "via", "REST", "and", "SSE", "Streaming", "." ]
def cryptoQuote(symbol, token='', version='', filter=''): return _getJson('/crypto/{symbol}/price'.format(symbol=symbol), token, version, filter)
[ "def", "cryptoQuote", "(", "symbol", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "return", "_getJson", "(", "'/crypto/{symbol}/price'", ".", "format", "(", "symbol", "=", "symbol", ")", ",", "token", ",", "ve...
This returns the quote for a specified cryptocurrency.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.\n\n\n https://iexcloud.io/docs/api/#cryptocurrency-quote\n continuous\n\n Args:\n symbol (str): cryptocurrency ticker\n token (str): Access token\n version (str): API version\n ...
[ { "param": "symbol", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
29a9313871c9cc0aee0ccde05b9eb7b1c11b0c7e
vedsgit/pyEX
pyEX/points/points.py
[ "Apache-2.0" ]
Python
points
<not_specific>
def points(symbol='market', key='', token='', version='', filter=''): '''Data points are available per symbol and return individual plain text values. Retrieving individual data points is useful for Excel and Google Sheet users, and applications where a single, lightweight value is needed. We also provide u...
Data points are available per symbol and return individual plain text values. Retrieving individual data points is useful for Excel and Google Sheet users, and applications where a single, lightweight value is needed. We also provide update times for some endpoints which allow you to call an endpoint only once ...
Data points are available per symbol and return individual plain text values. Retrieving individual data points is useful for Excel and Google Sheet users, and applications where a single, lightweight value is needed. We also provide update times for some endpoints which allow you to call an endpoint only once it has n...
[ "Data", "points", "are", "available", "per", "symbol", "and", "return", "individual", "plain", "text", "values", ".", "Retrieving", "individual", "data", "points", "is", "useful", "for", "Excel", "and", "Google", "Sheet", "users", "and", "applications", "where",...
def points(symbol='market', key='', token='', version='', filter=''): _raiseIfNotStr(symbol) if key: return _getJson('data-points/{symbol}/{key}'.format(symbol=symbol, key=key), token, version, filter) return _getJson('data-points/{symbol}'.format(symbol=symbol), token, version, filter)
[ "def", "points", "(", "symbol", "=", "'market'", ",", "key", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "key", ":", "return", "_getJson", "(", "'dat...
Data points are available per symbol and return individual plain text values.
[ "Data", "points", "are", "available", "per", "symbol", "and", "return", "individual", "plain", "text", "values", "." ]
[ "'''Data points are available per symbol and return individual plain text values.\n Retrieving individual data points is useful for Excel and Google Sheet users, and applications where a single, lightweight value is needed.\n We also provide update times for some endpoints which allow you to call an endpoint ...
[ { "param": "symbol", "type": null }, { "param": "key", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
01f37185606d3cd7bf022963bacb36df819164dc
vedsgit/pyEX
pyEX/stocks/timeseries.py
[ "Apache-2.0" ]
Python
timeSeriesInventory
<not_specific>
def timeSeriesInventory(token='', version=''): '''Get inventory of available time series endpoints Returns: result (dict) ''' return _getJson('time-series/', token, version)
Get inventory of available time series endpoints Returns: result (dict)
Get inventory of available time series endpoints
[ "Get", "inventory", "of", "available", "time", "series", "endpoints" ]
def timeSeriesInventory(token='', version=''): return _getJson('time-series/', token, version)
[ "def", "timeSeriesInventory", "(", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_getJson", "(", "'time-series/'", ",", "token", ",", "version", ")" ]
Get inventory of available time series endpoints
[ "Get", "inventory", "of", "available", "time", "series", "endpoints" ]
[ "'''Get inventory of available time series endpoints\n Returns:\n result (dict)\n '''" ]
[ { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [ { "docstring": null, "docstring_tokens": [ "None" ], "type": null } ], "raises": [], "params": [ { "identifier": "token", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null ...
01f37185606d3cd7bf022963bacb36df819164dc
vedsgit/pyEX
pyEX/stocks/timeseries.py
[ "Apache-2.0" ]
Python
timeSeriesInventoryDF
<not_specific>
def timeSeriesInventoryDF(token='', version=''): '''Get inventory of available time series endpoints Returns: result (DataFrame) ''' return pd.io.json.json_normalize(timeSeriesInventory(token=token, version=version))
Get inventory of available time series endpoints Returns: result (DataFrame)
Get inventory of available time series endpoints
[ "Get", "inventory", "of", "available", "time", "series", "endpoints" ]
def timeSeriesInventoryDF(token='', version=''): return pd.io.json.json_normalize(timeSeriesInventory(token=token, version=version))
[ "def", "timeSeriesInventoryDF", "(", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "pd", ".", "io", ".", "json", ".", "json_normalize", "(", "timeSeriesInventory", "(", "token", "=", "token", ",", "version", "=", "version", ")", ")" ...
Get inventory of available time series endpoints
[ "Get", "inventory", "of", "available", "time", "series", "endpoints" ]
[ "'''Get inventory of available time series endpoints\n\n Returns:\n result (DataFrame)\n '''" ]
[ { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [ { "docstring": null, "docstring_tokens": [ "None" ], "type": null } ], "raises": [], "params": [ { "identifier": "token", "type": null, "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null ...
24a5b2040dff218d21ce9d77c47061073e9ab133
vedsgit/pyEX
pyEX/premium/stocktwits/__init__.py
[ "Apache-2.0" ]
Python
socialSentiment
<not_specific>
def socialSentiment(symbol, type='daily', date='', token='', version='', filter=''): '''This endpoint provides social sentiment data from StockTwits. Data can be viewed as a daily value, or by minute for a given date...
This endpoint provides social sentiment data from StockTwits. Data can be viewed as a daily value, or by minute for a given date. https://iexcloud.io/docs/api/#social-sentiment Args: symbol (str): Symbol to look up type (Optional[str]): Can only be daily or minute. Default is daily. da...
This endpoint provides social sentiment data from StockTwits. Data can be viewed as a daily value, or by minute for a given date.
[ "This", "endpoint", "provides", "social", "sentiment", "data", "from", "StockTwits", ".", "Data", "can", "be", "viewed", "as", "a", "daily", "value", "or", "by", "minute", "for", "a", "given", "date", "." ]
def socialSentiment(symbol, type='daily', date='', token='', version='', filter=''): _raiseIfNotStr(symbol) if type not in ('daily', 'minute'): raise PyEXception('`type` must be in (daily, minute). Got: {...
[ "def", "socialSentiment", "(", "symbol", ",", "type", "=", "'daily'", ",", "date", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "type", "not", "in", "...
This endpoint provides social sentiment data from StockTwits.
[ "This", "endpoint", "provides", "social", "sentiment", "data", "from", "StockTwits", "." ]
[ "'''This endpoint provides social sentiment data from StockTwits. Data can be viewed as a daily value, or by minute for a given date.\n\n https://iexcloud.io/docs/api/#social-sentiment\n\n Args:\n symbol (str): Symbol to look up\n type (Optional[str]): Can only be daily or minute. Default is dai...
[ { "param": "symbol", "type": null }, { "param": "type", "type": null }, { "param": "date", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
2fc244e0c43b0be787d8514182f7ae02030df077
vedsgit/pyEX
pyEX/marketdata/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoBookSSE
<not_specific>
def cryptoBookSSE(symbols=None, on_data=None, token='', version=''): '''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book upd...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below: https://...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", ".", "For", "REST", "you", "will", "receive", "a", "current", "snapshot", "of", "the", "current", "book", "for", "the", "specific", "cryptocurrency",...
def cryptoBookSSE(symbols=None, on_data=None, token='', version=''): return _runSSE('cryptoBook', symbols, on_data, token, version)
[ "def", "cryptoBookSSE", "(", "symbols", "=", "None", ",", "on_data", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_runSSE", "(", "'cryptoBook'", ",", "symbols", ",", "on_data", ",", "token", ",", "version", ")" ...
This returns a current snapshot of the book for a specified cryptocurrency.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below:\n\n ...
[ { "param": "symbols", "type": null }, { "param": "on_data", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "o...
2fc244e0c43b0be787d8514182f7ae02030df077
vedsgit/pyEX
pyEX/marketdata/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoBookSSEAsync
null
async def cryptoBookSSEAsync(symbols=None, token='', version=''): '''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book update...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below: https://...
This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", ".", "For", "REST", "you", "will", "receive", "a", "current", "snapshot", "of", "the", "current", "book", "for", "the", "specific", "cryptocurrency",...
async def cryptoBookSSEAsync(symbols=None, token='', version=''): async for item in _runSSEAsync('cryptoBook', symbols, token, version): yield item
[ "async", "def", "cryptoBookSSEAsync", "(", "symbols", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "async", "for", "item", "in", "_runSSEAsync", "(", "'cryptoBook'", ",", "symbols", ",", "token", ",", "version", ")", ":", ...
This returns a current snapshot of the book for a specified cryptocurrency.
[ "This", "returns", "a", "current", "snapshot", "of", "the", "book", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns a current snapshot of the book for a specified cryptocurrency. For REST, you will receive a current snapshot of the current book for the specific cryptocurrency. For SSE Streaming, you will get a full representation of the book updated as often as the book changes. Examples of each are below:\n\n ...
[ { "param": "symbols", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "t...
2fc244e0c43b0be787d8514182f7ae02030df077
vedsgit/pyEX
pyEX/marketdata/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoQuotesSSE
<not_specific>
def cryptoQuotesSSE(symbols=None, on_data=None, token='', version=''): '''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote Args: symbols (str): Tickers to request on_data (function): C...
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote Args: symbols (str): Tickers to request on_data (function): Callback on data token (str): Access token version (str): API v...
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", ".", "Quotes", "are", "available", "via", "REST", "and", "SSE", "Streaming", "." ]
def cryptoQuotesSSE(symbols=None, on_data=None, token='', version=''): return _runSSE('cryptoQuotes', symbols, on_data, token, version)
[ "def", "cryptoQuotesSSE", "(", "symbols", "=", "None", ",", "on_data", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_runSSE", "(", "'cryptoQuotes'", ",", "symbols", ",", "on_data", ",", "token", ",", "version", ...
This returns the quote for a specified cryptocurrency.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.\n\n https://iexcloud.io/docs/api/#cryptocurrency-quote\n\n Args:\n symbols (str): Tickers to request\n on_data (function): Callback on data\n token (str): Access token\n vers...
[ { "param": "symbols", "type": null }, { "param": "on_data", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "o...
2fc244e0c43b0be787d8514182f7ae02030df077
vedsgit/pyEX
pyEX/marketdata/cryptocurrency.py
[ "Apache-2.0" ]
Python
cryptoQuotesSSEAsync
null
async def cryptoQuotesSSEAsync(symbols=None, token='', version=''): '''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote Args: symbols (str): Tickers to request token (str): Access toke...
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming. https://iexcloud.io/docs/api/#cryptocurrency-quote Args: symbols (str): Tickers to request token (str): Access token version (str): API version
This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", ".", "Quotes", "are", "available", "via", "REST", "and", "SSE", "Streaming", "." ]
async def cryptoQuotesSSEAsync(symbols=None, token='', version=''): async for item in _runSSEAsync('cryptoQuotes', symbols, token, version): yield item
[ "async", "def", "cryptoQuotesSSEAsync", "(", "symbols", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "async", "for", "item", "in", "_runSSEAsync", "(", "'cryptoQuotes'", ",", "symbols", ",", "token", ",", "version", ")", ":"...
This returns the quote for a specified cryptocurrency.
[ "This", "returns", "the", "quote", "for", "a", "specified", "cryptocurrency", "." ]
[ "'''This returns the quote for a specified cryptocurrency. Quotes are available via REST and SSE Streaming.\n\n https://iexcloud.io/docs/api/#cryptocurrency-quote\n\n Args:\n symbols (str): Tickers to request\n token (str): Access token\n version (str): API version\n '''" ]
[ { "param": "symbols", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "t...
8d99b662dbf898cd26e4b3e979cdbb06af8e1977
vedsgit/pyEX
pyEX/marketdata/fx.py
[ "Apache-2.0" ]
Python
fxSSE
<not_specific>
def fxSSE(symbols=None, on_data=None, token='', version=''): '''This endpoint streams real-time foreign currency exchange rates. https://iexcloud.io/docs/api/#forex-currencies Args: symbols (str): Tickers to request on_data (function): Callback on data token (str): Access token ...
This endpoint streams real-time foreign currency exchange rates. https://iexcloud.io/docs/api/#forex-currencies Args: symbols (str): Tickers to request on_data (function): Callback on data token (str): Access token version (str): API version
This endpoint streams real-time foreign currency exchange rates.
[ "This", "endpoint", "streams", "real", "-", "time", "foreign", "currency", "exchange", "rates", "." ]
def fxSSE(symbols=None, on_data=None, token='', version=''): return _runSSE('forex', symbols, on_data, token, version)
[ "def", "fxSSE", "(", "symbols", "=", "None", ",", "on_data", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_runSSE", "(", "'forex'", ",", "symbols", ",", "on_data", ",", "token", ",", "version", ")" ]
This endpoint streams real-time foreign currency exchange rates.
[ "This", "endpoint", "streams", "real", "-", "time", "foreign", "currency", "exchange", "rates", "." ]
[ "'''This endpoint streams real-time foreign currency exchange rates.\n\n https://iexcloud.io/docs/api/#forex-currencies\n\n Args:\n symbols (str): Tickers to request\n on_data (function): Callback on data\n token (str): Access token\n version (str): API version\n\n '''" ]
[ { "param": "symbols", "type": null }, { "param": "on_data", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "o...
8d99b662dbf898cd26e4b3e979cdbb06af8e1977
vedsgit/pyEX
pyEX/marketdata/fx.py
[ "Apache-2.0" ]
Python
fxSSEAsync
null
async def fxSSEAsync(symbols=None, token='', version=''): '''This endpoint streams real-time foreign currency exchange rates. https://iexcloud.io/docs/api/#forex-currencies Args: symbols (str): Tickers to request token (str): Access token version (str): API version ''' asyn...
This endpoint streams real-time foreign currency exchange rates. https://iexcloud.io/docs/api/#forex-currencies Args: symbols (str): Tickers to request token (str): Access token version (str): API version
This endpoint streams real-time foreign currency exchange rates.
[ "This", "endpoint", "streams", "real", "-", "time", "foreign", "currency", "exchange", "rates", "." ]
async def fxSSEAsync(symbols=None, token='', version=''): async for item in _runSSEAsync('forex', symbols, token, version): yield item
[ "async", "def", "fxSSEAsync", "(", "symbols", "=", "None", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "async", "for", "item", "in", "_runSSEAsync", "(", "'forex'", ",", "symbols", ",", "token", ",", "version", ")", ":", "yield", "i...
This endpoint streams real-time foreign currency exchange rates.
[ "This", "endpoint", "streams", "real", "-", "time", "foreign", "currency", "exchange", "rates", "." ]
[ "'''This endpoint streams real-time foreign currency exchange rates.\n\n https://iexcloud.io/docs/api/#forex-currencies\n\n Args:\n symbols (str): Tickers to request\n token (str): Access token\n version (str): API version\n '''" ]
[ { "param": "symbols", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbols", "type": null, "docstring": "Tickers to request", "docstring_tokens": [ "Tickers", "to", "request" ], "default": null, "is_optional": false }, { "identifier": "t...
4963d0f82cd54e11c60cb3fc7cb4f506247184ef
vedsgit/pyEX
pyEX/rules/__init__.py
[ "Apache-2.0" ]
Python
pause
<not_specific>
def pause(ruleId, token='', version=''): '''You can control the output of rules by pausing and resume per rule id. Args: ruleId (str): The id of an existing rule to puase ''' return _postJson('rules/pause', json={"ruleId": ruleId, "token": token}, token=token, version=version, token_in_params=F...
You can control the output of rules by pausing and resume per rule id. Args: ruleId (str): The id of an existing rule to puase
You can control the output of rules by pausing and resume per rule id.
[ "You", "can", "control", "the", "output", "of", "rules", "by", "pausing", "and", "resume", "per", "rule", "id", "." ]
def pause(ruleId, token='', version=''): return _postJson('rules/pause', json={"ruleId": ruleId, "token": token}, token=token, version=version, token_in_params=False)
[ "def", "pause", "(", "ruleId", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_postJson", "(", "'rules/pause'", ",", "json", "=", "{", "\"ruleId\"", ":", "ruleId", ",", "\"token\"", ":", "token", "}", ",", "token", "=", "tok...
You can control the output of rules by pausing and resume per rule id.
[ "You", "can", "control", "the", "output", "of", "rules", "by", "pausing", "and", "resume", "per", "rule", "id", "." ]
[ "'''You can control the output of rules by pausing and resume per rule id.\n\n Args:\n ruleId (str): The id of an existing rule to puase\n '''" ]
[ { "param": "ruleId", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "ruleId", "type": null, "docstring": "The id of an existing rule to puase", "docstring_tokens": [ "The", "id", "of", "an", "existing", "rule", "to", "puase" ...
4963d0f82cd54e11c60cb3fc7cb4f506247184ef
vedsgit/pyEX
pyEX/rules/__init__.py
[ "Apache-2.0" ]
Python
resume
<not_specific>
def resume(ruleId, token='', version=''): '''You can control the output of rules by pausing and resume per rule id. Args: ruleId (str): The id of an existing rule to puase ''' return _postJson('rules/resume', json={"ruleId": ruleId, "token": token}, token=token, version=version, token_in_params...
You can control the output of rules by pausing and resume per rule id. Args: ruleId (str): The id of an existing rule to puase
You can control the output of rules by pausing and resume per rule id.
[ "You", "can", "control", "the", "output", "of", "rules", "by", "pausing", "and", "resume", "per", "rule", "id", "." ]
def resume(ruleId, token='', version=''): return _postJson('rules/resume', json={"ruleId": ruleId, "token": token}, token=token, version=version, token_in_params=False)
[ "def", "resume", "(", "ruleId", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_postJson", "(", "'rules/resume'", ",", "json", "=", "{", "\"ruleId\"", ":", "ruleId", ",", "\"token\"", ":", "token", "}", ",", "token", "=", "t...
You can control the output of rules by pausing and resume per rule id.
[ "You", "can", "control", "the", "output", "of", "rules", "by", "pausing", "and", "resume", "per", "rule", "id", "." ]
[ "'''You can control the output of rules by pausing and resume per rule id.\n\n Args:\n ruleId (str): The id of an existing rule to puase\n '''" ]
[ { "param": "ruleId", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "ruleId", "type": null, "docstring": "The id of an existing rule to puase", "docstring_tokens": [ "The", "id", "of", "an", "existing", "rule", "to", "puase" ...
4963d0f82cd54e11c60cb3fc7cb4f506247184ef
vedsgit/pyEX
pyEX/rules/__init__.py
[ "Apache-2.0" ]
Python
delete
<not_specific>
def delete(ruleId, token='', version=''): '''You can delete a rule by using an __HTTP DELETE__ request. This will stop rule executions and delete the rule from your dashboard. If you only want to temporarily stop a rule, use the pause/resume functionality instead. Args: ruleId (str): The id of an exist...
You can delete a rule by using an __HTTP DELETE__ request. This will stop rule executions and delete the rule from your dashboard. If you only want to temporarily stop a rule, use the pause/resume functionality instead. Args: ruleId (str): The id of an existing rule to puase
You can delete a rule by using an __HTTP DELETE__ request. This will stop rule executions and delete the rule from your dashboard. If you only want to temporarily stop a rule, use the pause/resume functionality instead.
[ "You", "can", "delete", "a", "rule", "by", "using", "an", "__HTTP", "DELETE__", "request", ".", "This", "will", "stop", "rule", "executions", "and", "delete", "the", "rule", "from", "your", "dashboard", ".", "If", "you", "only", "want", "to", "temporarily"...
def delete(ruleId, token='', version=''): return _deleteJson('rules/{}'.format(ruleId), token=token, version=version)
[ "def", "delete", "(", "ruleId", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_deleteJson", "(", "'rules/{}'", ".", "format", "(", "ruleId", ")", ",", "token", "=", "token", ",", "version", "=", "version", ")" ]
You can delete a rule by using an __HTTP DELETE__ request.
[ "You", "can", "delete", "a", "rule", "by", "using", "an", "__HTTP", "DELETE__", "request", "." ]
[ "'''You can delete a rule by using an __HTTP DELETE__ request. This will stop rule executions and delete the rule from your dashboard. If you only want to temporarily stop a rule, use the pause/resume functionality instead.\n\n Args:\n ruleId (str): The id of an existing rule to puase\n '''" ]
[ { "param": "ruleId", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "ruleId", "type": null, "docstring": "The id of an existing rule to puase", "docstring_tokens": [ "The", "id", "of", "an", "existing", "rule", "to", "puase" ...
4963d0f82cd54e11c60cb3fc7cb4f506247184ef
vedsgit/pyEX
pyEX/rules/__init__.py
[ "Apache-2.0" ]
Python
rule
<not_specific>
def rule(ruleId, token='', version=''): '''Rule information such as the current rule status and execution statistics. Args: ruleId (str): The id of an existing rule to puase ''' return _getJson('rules/info/{}'.format(ruleId), token=token, version=version)
Rule information such as the current rule status and execution statistics. Args: ruleId (str): The id of an existing rule to puase
Rule information such as the current rule status and execution statistics.
[ "Rule", "information", "such", "as", "the", "current", "rule", "status", "and", "execution", "statistics", "." ]
def rule(ruleId, token='', version=''): return _getJson('rules/info/{}'.format(ruleId), token=token, version=version)
[ "def", "rule", "(", "ruleId", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_getJson", "(", "'rules/info/{}'", ".", "format", "(", "ruleId", ")", ",", "token", "=", "token", ",", "version", "=", "version", ")" ]
Rule information such as the current rule status and execution statistics.
[ "Rule", "information", "such", "as", "the", "current", "rule", "status", "and", "execution", "statistics", "." ]
[ "'''Rule information such as the current rule status and execution statistics.\n\n Args:\n ruleId (str): The id of an existing rule to puase\n '''" ]
[ { "param": "ruleId", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "ruleId", "type": null, "docstring": "The id of an existing rule to puase", "docstring_tokens": [ "The", "id", "of", "an", "existing", "rule", "to", "puase" ...
4963d0f82cd54e11c60cb3fc7cb4f506247184ef
vedsgit/pyEX
pyEX/rules/__init__.py
[ "Apache-2.0" ]
Python
output
<not_specific>
def output(ruleId, token='', version=''): '''If you choose `logs` as your rule output method, IEX Cloud will save the output objects on our server. You can use this method to retrieve those data objects. Args: ruleId (str): The id of an existing rule to puase ''' return _getJson('rules/output/{...
If you choose `logs` as your rule output method, IEX Cloud will save the output objects on our server. You can use this method to retrieve those data objects. Args: ruleId (str): The id of an existing rule to puase
If you choose `logs` as your rule output method, IEX Cloud will save the output objects on our server. You can use this method to retrieve those data objects.
[ "If", "you", "choose", "`", "logs", "`", "as", "your", "rule", "output", "method", "IEX", "Cloud", "will", "save", "the", "output", "objects", "on", "our", "server", ".", "You", "can", "use", "this", "method", "to", "retrieve", "those", "data", "objects"...
def output(ruleId, token='', version=''): return _getJson('rules/output/{}'.format(ruleId), token=token, version=version)
[ "def", "output", "(", "ruleId", ",", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_getJson", "(", "'rules/output/{}'", ".", "format", "(", "ruleId", ")", ",", "token", "=", "token", ",", "version", "=", "version", ")" ]
If you choose `logs` as your rule output method, IEX Cloud will save the output objects on our server.
[ "If", "you", "choose", "`", "logs", "`", "as", "your", "rule", "output", "method", "IEX", "Cloud", "will", "save", "the", "output", "objects", "on", "our", "server", "." ]
[ "'''If you choose `logs` as your rule output method, IEX Cloud will save the output objects on our server. You can use this method to retrieve those data objects.\n\n Args:\n ruleId (str): The id of an existing rule to puase\n '''" ]
[ { "param": "ruleId", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "ruleId", "type": null, "docstring": "The id of an existing rule to puase", "docstring_tokens": [ "The", "id", "of", "an", "existing", "rule", "to", "puase" ...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
marketVolume
<not_specific>
def marketVolume(token='', version='', filter=''): '''This endpoint returns real time traded volume on U.S. markets. https://iexcloud.io/docs/api/#market-volume-u-s 7:45am-5:15pm ET Mon-Fri Args: token (str): Access token version (str): API version filter (str): filters: https:...
This endpoint returns real time traded volume on U.S. markets. https://iexcloud.io/docs/api/#market-volume-u-s 7:45am-5:15pm ET Mon-Fri Args: token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#filter-results Returns: ...
This endpoint returns real time traded volume on U.S. markets.
[ "This", "endpoint", "returns", "real", "time", "traded", "volume", "on", "U", ".", "S", ".", "markets", "." ]
def marketVolume(token='', version='', filter=''): return _getJson('market/', token, version, filter)
[ "def", "marketVolume", "(", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "return", "_getJson", "(", "'market/'", ",", "token", ",", "version", ",", "filter", ")" ]
This endpoint returns real time traded volume on U.S. markets.
[ "This", "endpoint", "returns", "real", "time", "traded", "volume", "on", "U", ".", "S", ".", "markets", "." ]
[ "'''This endpoint returns real time traded volume on U.S. markets.\n\n https://iexcloud.io/docs/api/#market-volume-u-s\n 7:45am-5:15pm ET Mon-Fri\n\n Args:\n token (str): Access token\n version (str): API version\n filter (str): filters: https://iexcloud.io/docs/api/#filter-results\n\n...
[ { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "token", "type": null, "docstring...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
upcomingEvents
<not_specific>
def upcomingEvents(symbol='', refid='', token='', version='', filter=''): '''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str)...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", ".", "If", "market", "is", "passed", "for", "the", "symbol", "IPOs", "will", "also", "be", "included", "." ]
def upcomingEvents(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if symbol: return _getJson('stock/' + symbol + '/upcoming-events', token, version, filter) return _getJson('stock/market/upcoming-events', token, version, filter)
[ "def", "upcomingEvents", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "symbol", ":", "return", "_getJson", "(", ...
This will return all upcoming estimates, dividends, splits for a given symbol or the market.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", "." ]
[ "'''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.\n\n https://iexcloud.io/docs/api/#upcoming-events\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches ...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
upcomingEarnings
<not_specific>
def upcomingEarnings(symbol='', refid='', token='', version='', filter=''): '''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (st...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", ".", "If", "market", "is", "passed", "for", "the", "symbol", "IPOs", "will", "also", "be", "included", "." ]
def upcomingEarnings(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if symbol: return _getJson('stock/' + symbol + '/upcoming-earnings', token, version, filter) return _getJson('stock/market/upcoming-earnings', token, version, filter)
[ "def", "upcomingEarnings", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "symbol", ":", "return", "_getJson", "("...
This will return all upcoming estimates, dividends, splits for a given symbol or the market.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", "." ]
[ "'''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.\n\n https://iexcloud.io/docs/api/#upcoming-events\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches ...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
upcomingDividends
<not_specific>
def upcomingDividends(symbol='', refid='', token='', version='', filter=''): '''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (s...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", ".", "If", "market", "is", "passed", "for", "the", "symbol", "IPOs", "will", "also", "be", "included", "." ]
def upcomingDividends(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if symbol: return _getJson('stock/' + symbol + '/upcoming-dividends', token, version, filter) return _getJson('stock/market/upcoming-dividends', token, version, filter)
[ "def", "upcomingDividends", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "symbol", ":", "return", "_getJson", "(...
This will return all upcoming estimates, dividends, splits for a given symbol or the market.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", "." ]
[ "'''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.\n\n https://iexcloud.io/docs/api/#upcoming-events\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches ...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
upcomingSplits
<not_specific>
def upcomingSplits(symbol='', refid='', token='', version='', filter=''): '''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str)...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", ".", "If", "market", "is", "passed", "for", "the", "symbol", "IPOs", "will", "also", "be", "included", "." ]
def upcomingSplits(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if symbol: return _getJson('stock/' + symbol + '/upcoming-splits', token, version, filter) return _getJson('stock/market/upcoming-splits', token, version, filter)
[ "def", "upcomingSplits", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "symbol", ":", "return", "_getJson", "(", ...
This will return all upcoming estimates, dividends, splits for a given symbol or the market.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", "." ]
[ "'''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.\n\n https://iexcloud.io/docs/api/#upcoming-events\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches ...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
e74b06e0c2fe71ab36416f89746cdb1cf7a3fa62
vedsgit/pyEX
pyEX/stocks/marketInfo.py
[ "Apache-2.0" ]
Python
upcomingIPOs
<not_specific>
def upcomingIPOs(symbol='', refid='', token='', version='', filter=''): '''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): ...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included. https://iexcloud.io/docs/api/#upcoming-events Args: symbol (str): Symbol to look up refid (str): Optional. Id that matches the refid fiel...
This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", ".", "If", "market", "is", "passed", "for", "the", "symbol", "IPOs", "will", "also", "be", "included", "." ]
def upcomingIPOs(symbol='', refid='', token='', version='', filter=''): _raiseIfNotStr(symbol) if symbol: return _getJson('stock/' + symbol + '/upcoming-ipos', token, version, filter) return _getJson('stock/market/upcoming-ipos', token, version, filter)
[ "def", "upcomingIPOs", "(", "symbol", "=", "''", ",", "refid", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "if", "symbol", ":", "return", "_getJson", "(", ...
This will return all upcoming estimates, dividends, splits for a given symbol or the market.
[ "This", "will", "return", "all", "upcoming", "estimates", "dividends", "splits", "for", "a", "given", "symbol", "or", "the", "market", "." ]
[ "'''This will return all upcoming estimates, dividends, splits for a given symbol or the market. If market is passed for the symbol, IPOs will also be included.\n\n https://iexcloud.io/docs/api/#upcoming-events\n\n Args:\n symbol (str): Symbol to look up\n refid (str): Optional. Id that matches ...
[ { "param": "symbol", "type": null }, { "param": "refid", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
45effae0473a413d3c1941311800f5eb19b922fc
vedsgit/pyEX
pyEX/stocks/prices.py
[ "Apache-2.0" ]
Python
largestTrades
<not_specific>
def largestTrades(symbol, token='', version='', filter=''): '''This returns 15 minute delayed, last sale eligible trades. https://iexcloud.io/docs/api/#largest-trades 9:30-4pm ET M-F during regular market hours Args: symbol (str): Ticker to request token (str): Access token ver...
This returns 15 minute delayed, last sale eligible trades. https://iexcloud.io/docs/api/#largest-trades 9:30-4pm ET M-F during regular market hours Args: symbol (str): Ticker to request token (str): Access token version (str): API version filter (str): filters: https://iexc...
This returns 15 minute delayed, last sale eligible trades.
[ "This", "returns", "15", "minute", "delayed", "last", "sale", "eligible", "trades", "." ]
def largestTrades(symbol, token='', version='', filter=''): _raiseIfNotStr(symbol) return _getJson('stock/' + symbol + '/largest-trades', token, version, filter)
[ "def", "largestTrades", "(", "symbol", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "return", "_getJson", "(", "'stock/'", "+", "symbol", "+", "'/largest-trades'", ",", "tok...
This returns 15 minute delayed, last sale eligible trades.
[ "This", "returns", "15", "minute", "delayed", "last", "sale", "eligible", "trades", "." ]
[ "'''This returns 15 minute delayed, last sale eligible trades.\n\n https://iexcloud.io/docs/api/#largest-trades\n 9:30-4pm ET M-F during regular market hours\n\n Args:\n symbol (str): Ticker to request\n token (str): Access token\n version (str): API version\n filter (str): filt...
[ { "param": "symbol", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
dd2efe376ce981325011d5121d8e5aa7f34830f3
vedsgit/pyEX
pyEX/refdata/symbols.py
[ "Apache-2.0" ]
Python
mutualFundSymbols
<not_specific>
def mutualFundSymbols(token='', version='', filter=''): '''This call returns an array of mutual fund symbols that IEX Cloud supports for API calls. https://iexcloud.io/docs/api/#mutual-fund-symbols 8am, 9am, 12pm, 1pm UTC daily Args: token (str): Access token version (str): API version...
This call returns an array of mutual fund symbols that IEX Cloud supports for API calls. https://iexcloud.io/docs/api/#mutual-fund-symbols 8am, 9am, 12pm, 1pm UTC daily Args: token (str): Access token version (str): API version filter (str): filters: https://iexcloud.io/docs/api/#f...
This call returns an array of mutual fund symbols that IEX Cloud supports for API calls.
[ "This", "call", "returns", "an", "array", "of", "mutual", "fund", "symbols", "that", "IEX", "Cloud", "supports", "for", "API", "calls", "." ]
def mutualFundSymbols(token='', version='', filter=''): return _getJson('ref-data/mutual-funds/symbols', token, version, filter)
[ "def", "mutualFundSymbols", "(", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "return", "_getJson", "(", "'ref-data/mutual-funds/symbols'", ",", "token", ",", "version", ",", "filter", ")" ]
This call returns an array of mutual fund symbols that IEX Cloud supports for API calls.
[ "This", "call", "returns", "an", "array", "of", "mutual", "fund", "symbols", "that", "IEX", "Cloud", "supports", "for", "API", "calls", "." ]
[ "'''This call returns an array of mutual fund symbols that IEX Cloud supports for API calls.\n\n https://iexcloud.io/docs/api/#mutual-fund-symbols\n 8am, 9am, 12pm, 1pm UTC daily\n\n Args:\n token (str): Access token\n version (str): API version\n filter (str): filters: https://iexclou...
[ { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame or list: result", "docstring_tokens": [ "dict", "or", "DataFrame", "or", "list", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "token"...
dd2efe376ce981325011d5121d8e5aa7f34830f3
vedsgit/pyEX
pyEX/refdata/symbols.py
[ "Apache-2.0" ]
Python
internationalSymbols
<not_specific>
def internationalSymbols(region='', exchange='', token='', version='', filter=''): '''This call returns an array of international symbols that IEX Cloud supports for API calls. https://iexcloud.io/docs/api/#international-symbols 8am, 9am, 12pm, 1pm UTC daily Args: region (str): region, 2 lette...
This call returns an array of international symbols that IEX Cloud supports for API calls. https://iexcloud.io/docs/api/#international-symbols 8am, 9am, 12pm, 1pm UTC daily Args: region (str): region, 2 letter case insensitive string of country codes using ISO 3166-1 alpha-2 exchange (str)...
This call returns an array of international symbols that IEX Cloud supports for API calls.
[ "This", "call", "returns", "an", "array", "of", "international", "symbols", "that", "IEX", "Cloud", "supports", "for", "API", "calls", "." ]
def internationalSymbols(region='', exchange='', token='', version='', filter=''): if region: return _getJson('ref-data/region/{region}/symbols'.format(region=region), token, version, filter) elif exchange: return _getJson('ref-data/exchange/{exchange}/symbols'.format(exchange=exchange), token, ...
[ "def", "internationalSymbols", "(", "region", "=", "''", ",", "exchange", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "if", "region", ":", "return", "_getJson", "(", "'ref-data/region/{region}/symbols'...
This call returns an array of international symbols that IEX Cloud supports for API calls.
[ "This", "call", "returns", "an", "array", "of", "international", "symbols", "that", "IEX", "Cloud", "supports", "for", "API", "calls", "." ]
[ "'''This call returns an array of international symbols that IEX Cloud supports for API calls.\n\n https://iexcloud.io/docs/api/#international-symbols\n 8am, 9am, 12pm, 1pm UTC daily\n\n Args:\n region (str): region, 2 letter case insensitive string of country codes using ISO 3166-1 alpha-2\n ...
[ { "param": "region", "type": null }, { "param": "exchange", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame or list: result", "docstring_tokens": [ "dict", "or", "DataFrame", "or", "list", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "region...
dd2efe376ce981325011d5121d8e5aa7f34830f3
vedsgit/pyEX
pyEX/refdata/symbols.py
[ "Apache-2.0" ]
Python
fxSymbols
<not_specific>
def fxSymbols(token='', version=''): '''This call returns a list of supported currencies and currency pairs. https://iexcloud.io/docs/api/#fx-symbols 7am, 9am, UTC daily Args: token (str): Access token version (str): API version Returns: dict or DataFrame or list: result ...
This call returns a list of supported currencies and currency pairs. https://iexcloud.io/docs/api/#fx-symbols 7am, 9am, UTC daily Args: token (str): Access token version (str): API version Returns: dict or DataFrame or list: result
This call returns a list of supported currencies and currency pairs.
[ "This", "call", "returns", "a", "list", "of", "supported", "currencies", "and", "currency", "pairs", "." ]
def fxSymbols(token='', version=''): return _getJson('ref-data/fx/symbols', token, version)
[ "def", "fxSymbols", "(", "token", "=", "''", ",", "version", "=", "''", ")", ":", "return", "_getJson", "(", "'ref-data/fx/symbols'", ",", "token", ",", "version", ")" ]
This call returns a list of supported currencies and currency pairs.
[ "This", "call", "returns", "a", "list", "of", "supported", "currencies", "and", "currency", "pairs", "." ]
[ "'''This call returns a list of supported currencies and currency pairs.\n\n https://iexcloud.io/docs/api/#fx-symbols\n 7am, 9am, UTC daily\n\n Args:\n token (str): Access token\n version (str): API version\n\n Returns:\n dict or DataFrame or list: result\n '''" ]
[ { "param": "token", "type": null }, { "param": "version", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame or list: result", "docstring_tokens": [ "dict", "or", "DataFrame", "or", "list", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "token"...
f9d2e5e1b4f7917daf65986a9162b2c2d192ad44
vedsgit/pyEX
pyEX/premium/fraudfactors/__init__.py
[ "Apache-2.0" ]
Python
nonTimelyFilings
<not_specific>
def nonTimelyFilings(symbol='', **kwargs): '''The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the i...
The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclosures on t...
The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclosures on time ...
[ "The", "data", "set", "records", "the", "date", "in", "which", "a", "firm", "files", "a", "Non", "-", "Timely", "notification", "with", "the", "SEC", ".", "Companies", "regulated", "by", "the", "SEC", "are", "required", "to", "file", "a", "Non", "-", "...
def nonTimelyFilings(symbol='', **kwargs): return _base(id='PREMIUM_FRAUD_FACTORS_NON_TIMELY_FILINGS', symbol=symbol, **kwargs)
[ "def", "nonTimelyFilings", "(", "symbol", "=", "''", ",", "**", "kwargs", ")", ":", "return", "_base", "(", "id", "=", "'PREMIUM_FRAUD_FACTORS_NON_TIMELY_FILINGS'", ",", "symbol", "=", "symbol", ",", "**", "kwargs", ")" ]
The data set records the date in which a firm files a Non-Timely notification with the SEC.
[ "The", "data", "set", "records", "the", "date", "in", "which", "a", "firm", "files", "a", "Non", "-", "Timely", "notification", "with", "the", "SEC", "." ]
[ "'''The data set records the date in which a firm files a Non-Timely notification with the SEC.\n Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclos...
[ { "param": "symbol", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstring": "symbol to use", "docstring_tokens": [ "symbol", "to", "use" ], "default": null, "is_optional": false } ], "outlier_params": [], "others":...
f9d2e5e1b4f7917daf65986a9162b2c2d192ad44
vedsgit/pyEX
pyEX/premium/fraudfactors/__init__.py
[ "Apache-2.0" ]
Python
nonTimelyFilingsDF
<not_specific>
def nonTimelyFilingsDF(symbol='', **kwargs): '''The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the...
The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclosures on t...
The data set records the date in which a firm files a Non-Timely notification with the SEC. Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclosures on time ...
[ "The", "data", "set", "records", "the", "date", "in", "which", "a", "firm", "files", "a", "Non", "-", "Timely", "notification", "with", "the", "SEC", ".", "Companies", "regulated", "by", "the", "SEC", "are", "required", "to", "file", "a", "Non", "-", "...
def nonTimelyFilingsDF(symbol='', **kwargs): return _baseDF(id='PREMIUM_FRAUD_FACTORS_NON_TIMELY_FILINGS', symbol=symbol, **kwargs)
[ "def", "nonTimelyFilingsDF", "(", "symbol", "=", "''", ",", "**", "kwargs", ")", ":", "return", "_baseDF", "(", "id", "=", "'PREMIUM_FRAUD_FACTORS_NON_TIMELY_FILINGS'", ",", "symbol", "=", "symbol", ",", "**", "kwargs", ")" ]
The data set records the date in which a firm files a Non-Timely notification with the SEC.
[ "The", "data", "set", "records", "the", "date", "in", "which", "a", "firm", "files", "a", "Non", "-", "Timely", "notification", "with", "the", "SEC", "." ]
[ "'''The data set records the date in which a firm files a Non-Timely notification with the SEC.\n Companies regulated by the SEC are required to file a Non-Timely notification when they are unable to file their annual or quarterly disclosures on time. In most cases, the inability to file annual/quarterly disclos...
[ { "param": "symbol", "type": null } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstring": "symbol to use", "docstring_tokens": [ "symbol", "to", "use" ], "default": null, "is_optional": false } ], "outlier_params": [], "others":...
96f1e5ffb4b3f02630626bb303abe4be769aa598
vedsgit/pyEX
pyEX/stocks/fundamentals.py
[ "Apache-2.0" ]
Python
cashFlow
<not_specific>
def cashFlow(symbol, period='quarter', last=1, token='', version='', filter=''): '''Pulls cash flow data. Available quarterly (4 quarters) or annually (4 years). https://iexcloud.io/docs/api/#cash-flow Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request period (str): P...
Pulls cash flow data. Available quarterly (4 quarters) or annually (4 years). https://iexcloud.io/docs/api/#cash-flow Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request period (str): Period, either 'annual' or 'quarter' last (int): Number of records to fetch, up t...
Pulls cash flow data. Available quarterly (4 quarters) or annually (4 years).
[ "Pulls", "cash", "flow", "data", ".", "Available", "quarterly", "(", "4", "quarters", ")", "or", "annually", "(", "4", "years", ")", "." ]
def cashFlow(symbol, period='quarter', last=1, token='', version='', filter=''): _raiseIfNotStr(symbol) _checkPeriodLast(period, last) return _getJson('stock/{}/cash-flow?period={}&last={}'.format(symbol, period, last), token, version, filter)
[ "def", "cashFlow", "(", "symbol", ",", "period", "=", "'quarter'", ",", "last", "=", "1", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "_checkPeriodLast", "(", "period", ...
Pulls cash flow data.
[ "Pulls", "cash", "flow", "data", "." ]
[ "'''Pulls cash flow data. Available quarterly (4 quarters) or annually (4 years).\n\n https://iexcloud.io/docs/api/#cash-flow\n Updates at 8am, 9am UTC daily\n\n\n Args:\n symbol (str): Ticker to request\n period (str): Period, either 'annual' or 'quarter'\n last (int): Number of recor...
[ { "param": "symbol", "type": null }, { "param": "period", "type": null }, { "param": "last", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
96f1e5ffb4b3f02630626bb303abe4be769aa598
vedsgit/pyEX
pyEX/stocks/fundamentals.py
[ "Apache-2.0" ]
Python
earnings
<not_specific>
def earnings(symbol, period='quarter', last=1, field='', token='', version='', filter=''): '''Earnings data for a given company including the actual EPS, consensus, and fiscal period. Earnings are available quarterly (last 4 quarters) and annually (last 4 years). https://iexcloud.io/docs/api/#earnings Upda...
Earnings data for a given company including the actual EPS, consensus, and fiscal period. Earnings are available quarterly (last 4 quarters) and annually (last 4 years). https://iexcloud.io/docs/api/#earnings Updates at 9am, 11am, 12pm UTC every day Args: symbol (str): Ticker to request pe...
Earnings data for a given company including the actual EPS, consensus, and fiscal period. Earnings are available quarterly (last 4 quarters) and annually (last 4 years).
[ "Earnings", "data", "for", "a", "given", "company", "including", "the", "actual", "EPS", "consensus", "and", "fiscal", "period", ".", "Earnings", "are", "available", "quarterly", "(", "last", "4", "quarters", ")", "and", "annually", "(", "last", "4", "years"...
def earnings(symbol, period='quarter', last=1, field='', token='', version='', filter=''): _raiseIfNotStr(symbol) _checkPeriodLast(period, last) if not field: return _getJson('stock/{}/earnings?period={}&last={}'.format(symbol, period, last), token, version, filter) return _getJson('stock/{}/ear...
[ "def", "earnings", "(", "symbol", ",", "period", "=", "'quarter'", ",", "last", "=", "1", ",", "field", "=", "''", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "_check...
Earnings data for a given company including the actual EPS, consensus, and fiscal period.
[ "Earnings", "data", "for", "a", "given", "company", "including", "the", "actual", "EPS", "consensus", "and", "fiscal", "period", "." ]
[ "'''Earnings data for a given company including the actual EPS, consensus, and fiscal period. Earnings are available quarterly (last 4 quarters) and annually (last 4 years).\n\n https://iexcloud.io/docs/api/#earnings\n Updates at 9am, 11am, 12pm UTC every day\n\n Args:\n symbol (str): Ticker to requ...
[ { "param": "symbol", "type": null }, { "param": "period", "type": null }, { "param": "last", "type": null }, { "param": "field", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", ...
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
96f1e5ffb4b3f02630626bb303abe4be769aa598
vedsgit/pyEX
pyEX/stocks/fundamentals.py
[ "Apache-2.0" ]
Python
financials
<not_specific>
def financials(symbol, period='quarter', token='', version='', filter=''): '''Pulls income statement, balance sheet, and cash flow data from the four most recent reported quarters. https://iexcloud.io/docs/api/#financials Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request ...
Pulls income statement, balance sheet, and cash flow data from the four most recent reported quarters. https://iexcloud.io/docs/api/#financials Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request period (str): Period, either 'annual' or 'quarter' token (str): Access...
Pulls income statement, balance sheet, and cash flow data from the four most recent reported quarters.
[ "Pulls", "income", "statement", "balance", "sheet", "and", "cash", "flow", "data", "from", "the", "four", "most", "recent", "reported", "quarters", "." ]
def financials(symbol, period='quarter', token='', version='', filter=''): _raiseIfNotStr(symbol) _checkPeriodLast(period, 1) return _getJson('stock/{}/financials?period={}'.format(symbol, period), token, version, filter)
[ "def", "financials", "(", "symbol", ",", "period", "=", "'quarter'", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "_checkPeriodLast", "(", "period", ",", "1", ")", "return...
Pulls income statement, balance sheet, and cash flow data from the four most recent reported quarters.
[ "Pulls", "income", "statement", "balance", "sheet", "and", "cash", "flow", "data", "from", "the", "four", "most", "recent", "reported", "quarters", "." ]
[ "'''Pulls income statement, balance sheet, and cash flow data from the four most recent reported quarters.\n\n https://iexcloud.io/docs/api/#financials\n Updates at 8am, 9am UTC daily\n\n Args:\n symbol (str): Ticker to request\n period (str): Period, either 'annual' or 'quarter'\n tok...
[ { "param": "symbol", "type": null }, { "param": "period", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
96f1e5ffb4b3f02630626bb303abe4be769aa598
vedsgit/pyEX
pyEX/stocks/fundamentals.py
[ "Apache-2.0" ]
Python
incomeStatement
<not_specific>
def incomeStatement(symbol, period='quarter', last=1, token='', version='', filter=''): '''Pulls income statement data. Available quarterly (4 quarters) or annually (4 years). https://iexcloud.io/docs/api/#income-statement Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request ...
Pulls income statement data. Available quarterly (4 quarters) or annually (4 years). https://iexcloud.io/docs/api/#income-statement Updates at 8am, 9am UTC daily Args: symbol (str): Ticker to request period (str): Period, either 'annual' or 'quarter' last (int): Number of records t...
Pulls income statement data. Available quarterly (4 quarters) or annually (4 years).
[ "Pulls", "income", "statement", "data", ".", "Available", "quarterly", "(", "4", "quarters", ")", "or", "annually", "(", "4", "years", ")", "." ]
def incomeStatement(symbol, period='quarter', last=1, token='', version='', filter=''): _raiseIfNotStr(symbol) _checkPeriodLast(period, last) return _getJson('stock/{}/income?period={}&last={}'.format(symbol, period, last), token, version, filter)
[ "def", "incomeStatement", "(", "symbol", ",", "period", "=", "'quarter'", ",", "last", "=", "1", ",", "token", "=", "''", ",", "version", "=", "''", ",", "filter", "=", "''", ")", ":", "_raiseIfNotStr", "(", "symbol", ")", "_checkPeriodLast", "(", "per...
Pulls income statement data.
[ "Pulls", "income", "statement", "data", "." ]
[ "'''Pulls income statement data. Available quarterly (4 quarters) or annually (4 years).\n\n https://iexcloud.io/docs/api/#income-statement\n Updates at 8am, 9am UTC daily\n\n Args:\n symbol (str): Ticker to request\n period (str): Period, either 'annual' or 'quarter'\n last (int): Num...
[ { "param": "symbol", "type": null }, { "param": "period", "type": null }, { "param": "last", "type": null }, { "param": "token", "type": null }, { "param": "version", "type": null }, { "param": "filter", "type": null } ]
{ "returns": [ { "docstring": "dict or DataFrame: result", "docstring_tokens": [ "dict", "or", "DataFrame", ":", "result" ], "type": null } ], "raises": [], "params": [ { "identifier": "symbol", "type": null, "docstrin...
891deae5beb4137a9daa6b8bd41e3b9aa9f19ad2
seanbreckenridge/piazza-scraper
piazza_scraper/__main__.py
[ "MIT" ]
Python
scrape
None
def scrape(courseid: str) -> None: "Run the piazza scraper for COURSEID" from .scraper import Scraper s = Scraper(courseid) s.parse() s.write()
Run the piazza scraper for COURSEID
Run the piazza scraper for COURSEID
[ "Run", "the", "piazza", "scraper", "for", "COURSEID" ]
def scrape(courseid: str) -> None: from .scraper import Scraper s = Scraper(courseid) s.parse() s.write()
[ "def", "scrape", "(", "courseid", ":", "str", ")", "->", "None", ":", "from", ".", "scraper", "import", "Scraper", "s", "=", "Scraper", "(", "courseid", ")", "s", ".", "parse", "(", ")", "s", ".", "write", "(", ")" ]
Run the piazza scraper for COURSEID
[ "Run", "the", "piazza", "scraper", "for", "COURSEID" ]
[ "\"Run the piazza scraper for COURSEID\"" ]
[ { "param": "courseid", "type": "str" } ]
{ "returns": [], "raises": [], "params": [ { "identifier": "courseid", "type": "str", "docstring": null, "docstring_tokens": [], "default": null, "is_optional": null } ], "outlier_params": [], "others": [] }