repository_name stringlengths 7 55 | func_path_in_repository stringlengths 4 223 | func_name stringlengths 1 134 | whole_func_string stringlengths 75 104k | language stringclasses 1
value | func_code_string stringlengths 75 104k | func_code_tokens listlengths 19 28.4k | func_documentation_string stringlengths 1 46.9k | func_documentation_tokens listlengths 1 1.97k | split_name stringclasses 1
value | func_code_url stringlengths 87 315 |
|---|---|---|---|---|---|---|---|---|---|---|
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_down | def do_down(self, arg):
"""d(own) [count]
Move the current frame count (default one) levels down in the
stack trace (to a newer frame).
"""
if self.curindex + 1 == len(self.stack):
self.error('Newest frame')
return
try:
count = int(arg ... | python | def do_down(self, arg):
"""d(own) [count]
Move the current frame count (default one) levels down in the
stack trace (to a newer frame).
"""
if self.curindex + 1 == len(self.stack):
self.error('Newest frame')
return
try:
count = int(arg ... | [
"def",
"do_down",
"(",
"self",
",",
"arg",
")",
":",
"if",
"self",
".",
"curindex",
"+",
"1",
"==",
"len",
"(",
"self",
".",
"stack",
")",
":",
"self",
".",
"error",
"(",
"'Newest frame'",
")",
"return",
"try",
":",
"count",
"=",
"int",
"(",
"arg... | d(own) [count]
Move the current frame count (default one) levels down in the
stack trace (to a newer frame). | [
"d",
"(",
"own",
")",
"[",
"count",
"]",
"Move",
"the",
"current",
"frame",
"count",
"(",
"default",
"one",
")",
"levels",
"down",
"in",
"the",
"stack",
"trace",
"(",
"to",
"a",
"newer",
"frame",
")",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1191-L1208 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_until | def do_until(self, arg):
"""unt(il) [lineno]
Without argument, continue execution until the line with a
number greater than the current one is reached. With a line
number, continue execution until a line with a number greater
or equal to that is reached. In both cases, also sto... | python | def do_until(self, arg):
"""unt(il) [lineno]
Without argument, continue execution until the line with a
number greater than the current one is reached. With a line
number, continue execution until a line with a number greater
or equal to that is reached. In both cases, also sto... | [
"def",
"do_until",
"(",
"self",
",",
"arg",
")",
":",
"if",
"arg",
":",
"try",
":",
"lineno",
"=",
"int",
"(",
"arg",
")",
"except",
"ValueError",
":",
"self",
".",
"error",
"(",
"'Error in argument: %r'",
"%",
"arg",
")",
"return",
"if",
"lineno",
"... | unt(il) [lineno]
Without argument, continue execution until the line with a
number greater than the current one is reached. With a line
number, continue execution until a line with a number greater
or equal to that is reached. In both cases, also stop when
the current frame ret... | [
"unt",
"(",
"il",
")",
"[",
"lineno",
"]",
"Without",
"argument",
"continue",
"execution",
"until",
"the",
"line",
"with",
"a",
"number",
"greater",
"than",
"the",
"current",
"one",
"is",
"reached",
".",
"With",
"a",
"line",
"number",
"continue",
"executio... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1211-L1233 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_run | def do_run(self, arg):
"""run [args...]
Restart the debugged python program. If a string is supplied
it is splitted with "shlex", and the result is used as the new
sys.argv. History, breakpoints, actions and debugger options
are preserved. "restart" is an alias for "run".
... | python | def do_run(self, arg):
"""run [args...]
Restart the debugged python program. If a string is supplied
it is splitted with "shlex", and the result is used as the new
sys.argv. History, breakpoints, actions and debugger options
are preserved. "restart" is an alias for "run".
... | [
"def",
"do_run",
"(",
"self",
",",
"arg",
")",
":",
"if",
"arg",
":",
"argv0",
"=",
"sys",
".",
"argv",
"[",
"0",
":",
"1",
"]",
"sys",
".",
"argv",
"=",
"shlex",
".",
"split",
"(",
"arg",
")",
"sys",
".",
"argv",
"[",
":",
"0",
"]",
"=",
... | run [args...]
Restart the debugged python program. If a string is supplied
it is splitted with "shlex", and the result is used as the new
sys.argv. History, breakpoints, actions and debugger options
are preserved. "restart" is an alias for "run". | [
"run",
"[",
"args",
"...",
"]",
"Restart",
"the",
"debugged",
"python",
"program",
".",
"If",
"a",
"string",
"is",
"supplied",
"it",
"is",
"splitted",
"with",
"shlex",
"and",
"the",
"result",
"is",
"used",
"as",
"the",
"new",
"sys",
".",
"argv",
".",
... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1257-L1269 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_jump | def do_jump(self, arg):
"""j(ump) lineno
Set the next line that will be executed. Only available in
the bottom-most frame. This lets you jump back and execute
code again, or jump forward to skip code that you don't want
to run.
It should be noted that not all jumps are... | python | def do_jump(self, arg):
"""j(ump) lineno
Set the next line that will be executed. Only available in
the bottom-most frame. This lets you jump back and execute
code again, or jump forward to skip code that you don't want
to run.
It should be noted that not all jumps are... | [
"def",
"do_jump",
"(",
"self",
",",
"arg",
")",
":",
"if",
"self",
".",
"curindex",
"+",
"1",
"!=",
"len",
"(",
"self",
".",
"stack",
")",
":",
"self",
".",
"error",
"(",
"'You can only jump within the bottom frame'",
")",
"return",
"try",
":",
"arg",
... | j(ump) lineno
Set the next line that will be executed. Only available in
the bottom-most frame. This lets you jump back and execute
code again, or jump forward to skip code that you don't want
to run.
It should be noted that not all jumps are allowed -- for
instance it... | [
"j",
"(",
"ump",
")",
"lineno",
"Set",
"the",
"next",
"line",
"that",
"will",
"be",
"executed",
".",
"Only",
"available",
"in",
"the",
"bottom",
"-",
"most",
"frame",
".",
"This",
"lets",
"you",
"jump",
"back",
"and",
"execute",
"code",
"again",
"or",
... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1291-L1317 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_debug | def do_debug(self, arg):
"""debug code
Enter a recursive debugger that steps through the code
argument (which is an arbitrary expression or statement to be
executed in the current environment).
"""
self.settrace(False)
globals = self.curframe.f_globals
loc... | python | def do_debug(self, arg):
"""debug code
Enter a recursive debugger that steps through the code
argument (which is an arbitrary expression or statement to be
executed in the current environment).
"""
self.settrace(False)
globals = self.curframe.f_globals
loc... | [
"def",
"do_debug",
"(",
"self",
",",
"arg",
")",
":",
"self",
".",
"settrace",
"(",
"False",
")",
"globals",
"=",
"self",
".",
"curframe",
".",
"f_globals",
"locals",
"=",
"self",
".",
"get_locals",
"(",
"self",
".",
"curframe",
")",
"p",
"=",
"Pdb",... | debug code
Enter a recursive debugger that steps through the code
argument (which is an arbitrary expression or statement to be
executed in the current environment). | [
"debug",
"code",
"Enter",
"a",
"recursive",
"debugger",
"that",
"steps",
"through",
"the",
"code",
"argument",
"(",
"which",
"is",
"an",
"arbitrary",
"expression",
"or",
"statement",
"to",
"be",
"executed",
"in",
"the",
"current",
"environment",
")",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1320-L1335 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_quit | def do_quit(self, arg):
"""q(uit)\nexit
Quit from the debugger. The program being executed is aborted.
"""
if isinstance(self.stdin, RemoteSocket) and not self.is_debug_instance:
return self.do_detach(arg)
self._user_requested_quit = True
self.set_quit()
... | python | def do_quit(self, arg):
"""q(uit)\nexit
Quit from the debugger. The program being executed is aborted.
"""
if isinstance(self.stdin, RemoteSocket) and not self.is_debug_instance:
return self.do_detach(arg)
self._user_requested_quit = True
self.set_quit()
... | [
"def",
"do_quit",
"(",
"self",
",",
"arg",
")",
":",
"if",
"isinstance",
"(",
"self",
".",
"stdin",
",",
"RemoteSocket",
")",
"and",
"not",
"self",
".",
"is_debug_instance",
":",
"return",
"self",
".",
"do_detach",
"(",
"arg",
")",
"self",
".",
"_user_... | q(uit)\nexit
Quit from the debugger. The program being executed is aborted. | [
"q",
"(",
"uit",
")",
"\\",
"nexit",
"Quit",
"from",
"the",
"debugger",
".",
"The",
"program",
"being",
"executed",
"is",
"aborted",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1349-L1357 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_args | def do_args(self, arg):
"""a(rgs)
Print the argument list of the current function.
"""
co = self.curframe.f_code
dict = self.get_locals(self.curframe)
n = co.co_argcount
if co.co_flags & 4: n = n+1
if co.co_flags & 8: n = n+1
for i in range(n):
... | python | def do_args(self, arg):
"""a(rgs)
Print the argument list of the current function.
"""
co = self.curframe.f_code
dict = self.get_locals(self.curframe)
n = co.co_argcount
if co.co_flags & 4: n = n+1
if co.co_flags & 8: n = n+1
for i in range(n):
... | [
"def",
"do_args",
"(",
"self",
",",
"arg",
")",
":",
"co",
"=",
"self",
".",
"curframe",
".",
"f_code",
"dict",
"=",
"self",
".",
"get_locals",
"(",
"self",
".",
"curframe",
")",
"n",
"=",
"co",
".",
"co_argcount",
"if",
"co",
".",
"co_flags",
"&",... | a(rgs)
Print the argument list of the current function. | [
"a",
"(",
"rgs",
")",
"Print",
"the",
"argument",
"list",
"of",
"the",
"current",
"function",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1369-L1383 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_retval | def do_retval(self, arg):
"""retval
Print the return value for the last return of a function.
"""
locals = self.get_locals(self.curframe)
if '__return__' in locals:
self.message(bdb.safe_repr(locals['__return__']))
else:
self.error('Not yet returne... | python | def do_retval(self, arg):
"""retval
Print the return value for the last return of a function.
"""
locals = self.get_locals(self.curframe)
if '__return__' in locals:
self.message(bdb.safe_repr(locals['__return__']))
else:
self.error('Not yet returne... | [
"def",
"do_retval",
"(",
"self",
",",
"arg",
")",
":",
"locals",
"=",
"self",
".",
"get_locals",
"(",
"self",
".",
"curframe",
")",
"if",
"'__return__'",
"in",
"locals",
":",
"self",
".",
"message",
"(",
"bdb",
".",
"safe_repr",
"(",
"locals",
"[",
"... | retval
Print the return value for the last return of a function. | [
"retval",
"Print",
"the",
"return",
"value",
"for",
"the",
"last",
"return",
"of",
"a",
"function",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1386-L1394 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_p | def do_p(self, arg):
"""p expression
Print the value of the expression.
"""
try:
self.message(bdb.safe_repr(self._getval(arg)))
except Exception:
pass | python | def do_p(self, arg):
"""p expression
Print the value of the expression.
"""
try:
self.message(bdb.safe_repr(self._getval(arg)))
except Exception:
pass | [
"def",
"do_p",
"(",
"self",
",",
"arg",
")",
":",
"try",
":",
"self",
".",
"message",
"(",
"bdb",
".",
"safe_repr",
"(",
"self",
".",
"_getval",
"(",
"arg",
")",
")",
")",
"except",
"Exception",
":",
"pass"
] | p expression
Print the value of the expression. | [
"p",
"expression",
"Print",
"the",
"value",
"of",
"the",
"expression",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1418-L1425 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_pp | def do_pp(self, arg):
"""pp expression
Pretty-print the value of the expression.
"""
obj = self._getval(arg)
try:
repr(obj)
except Exception:
self.message(bdb.safe_repr(obj))
else:
self.message(pprint.pformat(obj)) | python | def do_pp(self, arg):
"""pp expression
Pretty-print the value of the expression.
"""
obj = self._getval(arg)
try:
repr(obj)
except Exception:
self.message(bdb.safe_repr(obj))
else:
self.message(pprint.pformat(obj)) | [
"def",
"do_pp",
"(",
"self",
",",
"arg",
")",
":",
"obj",
"=",
"self",
".",
"_getval",
"(",
"arg",
")",
"try",
":",
"repr",
"(",
"obj",
")",
"except",
"Exception",
":",
"self",
".",
"message",
"(",
"bdb",
".",
"safe_repr",
"(",
"obj",
")",
")",
... | pp expression
Pretty-print the value of the expression. | [
"pp",
"expression",
"Pretty",
"-",
"print",
"the",
"value",
"of",
"the",
"expression",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1427-L1437 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_list | def do_list(self, arg):
"""l(ist) [first [,last] | .]
List source code for the current file. Without arguments,
list 11 lines around the current line or continue the previous
listing. With . as argument, list 11 lines around the current
line. With one argument, list 11 lines ... | python | def do_list(self, arg):
"""l(ist) [first [,last] | .]
List source code for the current file. Without arguments,
list 11 lines around the current line or continue the previous
listing. With . as argument, list 11 lines around the current
line. With one argument, list 11 lines ... | [
"def",
"do_list",
"(",
"self",
",",
"arg",
")",
":",
"self",
".",
"lastcmd",
"=",
"'list'",
"last",
"=",
"None",
"if",
"arg",
"and",
"arg",
"!=",
"'.'",
":",
"try",
":",
"if",
"','",
"in",
"arg",
":",
"first",
",",
"last",
"=",
"arg",
".",
"spl... | l(ist) [first [,last] | .]
List source code for the current file. Without arguments,
list 11 lines around the current line or continue the previous
listing. With . as argument, list 11 lines around the current
line. With one argument, list 11 lines starting at that line.
With... | [
"l",
"(",
"ist",
")",
"[",
"first",
"[",
"last",
"]",
"|",
".",
"]"
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1443-L1491 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_longlist | def do_longlist(self, arg):
"""longlist | ll
List the whole source code for the current function or frame.
"""
filename = self.curframe.f_code.co_filename
breaklist = self.get_file_breaks(filename)
try:
lines, lineno = getsourcelines(self.curframe,
... | python | def do_longlist(self, arg):
"""longlist | ll
List the whole source code for the current function or frame.
"""
filename = self.curframe.f_code.co_filename
breaklist = self.get_file_breaks(filename)
try:
lines, lineno = getsourcelines(self.curframe,
... | [
"def",
"do_longlist",
"(",
"self",
",",
"arg",
")",
":",
"filename",
"=",
"self",
".",
"curframe",
".",
"f_code",
".",
"co_filename",
"breaklist",
"=",
"self",
".",
"get_file_breaks",
"(",
"filename",
")",
"try",
":",
"lines",
",",
"lineno",
"=",
"getsou... | longlist | ll
List the whole source code for the current function or frame. | [
"longlist",
"|",
"ll",
"List",
"the",
"whole",
"source",
"code",
"for",
"the",
"current",
"function",
"or",
"frame",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1494-L1506 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_source | def do_source(self, arg):
"""source expression
Try to get source code for the given object and display it.
"""
try:
obj = self._getval(arg)
except Exception:
return
try:
lines, lineno = getsourcelines(obj, self.get_locals(self.curframe)... | python | def do_source(self, arg):
"""source expression
Try to get source code for the given object and display it.
"""
try:
obj = self._getval(arg)
except Exception:
return
try:
lines, lineno = getsourcelines(obj, self.get_locals(self.curframe)... | [
"def",
"do_source",
"(",
"self",
",",
"arg",
")",
":",
"try",
":",
"obj",
"=",
"self",
".",
"_getval",
"(",
"arg",
")",
"except",
"Exception",
":",
"return",
"try",
":",
"lines",
",",
"lineno",
"=",
"getsourcelines",
"(",
"obj",
",",
"self",
".",
"... | source expression
Try to get source code for the given object and display it. | [
"source",
"expression",
"Try",
"to",
"get",
"source",
"code",
"for",
"the",
"given",
"object",
"and",
"display",
"it",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1509-L1522 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb._print_lines | def _print_lines(self, lines, start, breaks=(), frame=None):
"""Print a range of lines."""
if frame:
current_lineno = frame.f_lineno
exc_lineno = self.tb_lineno.get(frame, -1)
else:
current_lineno = exc_lineno = -1
for lineno, line in enumerate(lines, ... | python | def _print_lines(self, lines, start, breaks=(), frame=None):
"""Print a range of lines."""
if frame:
current_lineno = frame.f_lineno
exc_lineno = self.tb_lineno.get(frame, -1)
else:
current_lineno = exc_lineno = -1
for lineno, line in enumerate(lines, ... | [
"def",
"_print_lines",
"(",
"self",
",",
"lines",
",",
"start",
",",
"breaks",
"=",
"(",
")",
",",
"frame",
"=",
"None",
")",
":",
"if",
"frame",
":",
"current_lineno",
"=",
"frame",
".",
"f_lineno",
"exc_lineno",
"=",
"self",
".",
"tb_lineno",
".",
... | Print a range of lines. | [
"Print",
"a",
"range",
"of",
"lines",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1526-L1545 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_whatis | def do_whatis(self, arg):
"""whatis arg
Print the type of the argument.
"""
try:
value = self._getval(arg)
except Exception:
# _getval() already printed the error
return
code = None
# Is it a function?
try:
c... | python | def do_whatis(self, arg):
"""whatis arg
Print the type of the argument.
"""
try:
value = self._getval(arg)
except Exception:
# _getval() already printed the error
return
code = None
# Is it a function?
try:
c... | [
"def",
"do_whatis",
"(",
"self",
",",
"arg",
")",
":",
"try",
":",
"value",
"=",
"self",
".",
"_getval",
"(",
"arg",
")",
"except",
"Exception",
":",
"# _getval() already printed the error",
"return",
"code",
"=",
"None",
"# Is it a function?",
"try",
":",
"... | whatis arg
Print the type of the argument. | [
"whatis",
"arg",
"Print",
"the",
"type",
"of",
"the",
"argument",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1547-L1578 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_display | def do_display(self, arg):
"""display [expression]
Display the value of the expression if it changed, each time execution
stops in the current frame.
Without expression, list all display expressions for the current frame.
"""
if not arg:
self.message('Curren... | python | def do_display(self, arg):
"""display [expression]
Display the value of the expression if it changed, each time execution
stops in the current frame.
Without expression, list all display expressions for the current frame.
"""
if not arg:
self.message('Curren... | [
"def",
"do_display",
"(",
"self",
",",
"arg",
")",
":",
"if",
"not",
"arg",
":",
"self",
".",
"message",
"(",
"'Currently displaying:'",
")",
"for",
"item",
"in",
"self",
".",
"displaying",
".",
"get",
"(",
"self",
".",
"curframe",
",",
"{",
"}",
")"... | display [expression]
Display the value of the expression if it changed, each time execution
stops in the current frame.
Without expression, list all display expressions for the current frame. | [
"display",
"[",
"expression",
"]"
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1582-L1597 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_undisplay | def do_undisplay(self, arg):
"""undisplay [expression]
Do not display the expression any more in the current frame.
Without expression, clear all display expressions for the current frame.
"""
if arg:
try:
del self.displaying.get(self.curframe, {})[a... | python | def do_undisplay(self, arg):
"""undisplay [expression]
Do not display the expression any more in the current frame.
Without expression, clear all display expressions for the current frame.
"""
if arg:
try:
del self.displaying.get(self.curframe, {})[a... | [
"def",
"do_undisplay",
"(",
"self",
",",
"arg",
")",
":",
"if",
"arg",
":",
"try",
":",
"del",
"self",
".",
"displaying",
".",
"get",
"(",
"self",
".",
"curframe",
",",
"{",
"}",
")",
"[",
"arg",
"]",
"except",
"KeyError",
":",
"self",
".",
"erro... | undisplay [expression]
Do not display the expression any more in the current frame.
Without expression, clear all display expressions for the current frame. | [
"undisplay",
"[",
"expression",
"]"
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1601-L1614 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_interact | def do_interact(self, arg):
"""interact
Start an interative interpreter whose global namespace
contains all the (global and local) names found in the current scope.
"""
def readfunc(prompt):
self.stdout.write(prompt)
self.stdout.flush()
line =... | python | def do_interact(self, arg):
"""interact
Start an interative interpreter whose global namespace
contains all the (global and local) names found in the current scope.
"""
def readfunc(prompt):
self.stdout.write(prompt)
self.stdout.flush()
line =... | [
"def",
"do_interact",
"(",
"self",
",",
"arg",
")",
":",
"def",
"readfunc",
"(",
"prompt",
")",
":",
"self",
".",
"stdout",
".",
"write",
"(",
"prompt",
")",
"self",
".",
"stdout",
".",
"flush",
"(",
")",
"line",
"=",
"self",
".",
"stdin",
".",
"... | interact
Start an interative interpreter whose global namespace
contains all the (global and local) names found in the current scope. | [
"interact"
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1620-L1648 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_alias | def do_alias(self, arg):
"""alias [name [command [parameter parameter ...] ]]
Create an alias called 'name' that executes 'command'. The
command must *not* be enclosed in quotes. Replaceable
parameters can be indicated by %1, %2, and so on, while %* is
replaced by all the param... | python | def do_alias(self, arg):
"""alias [name [command [parameter parameter ...] ]]
Create an alias called 'name' that executes 'command'. The
command must *not* be enclosed in quotes. Replaceable
parameters can be indicated by %1, %2, and so on, while %* is
replaced by all the param... | [
"def",
"do_alias",
"(",
"self",
",",
"arg",
")",
":",
"args",
"=",
"arg",
".",
"split",
"(",
")",
"if",
"len",
"(",
"args",
")",
"==",
"0",
":",
"keys",
"=",
"sorted",
"(",
"self",
".",
"aliases",
".",
"keys",
"(",
")",
")",
"for",
"alias",
"... | alias [name [command [parameter parameter ...] ]]
Create an alias called 'name' that executes 'command'. The
command must *not* be enclosed in quotes. Replaceable
parameters can be indicated by %1, %2, and so on, while %* is
replaced by all the parameters. If no command is given, the
... | [
"alias",
"[",
"name",
"[",
"command",
"[",
"parameter",
"parameter",
"...",
"]",
"]]",
"Create",
"an",
"alias",
"called",
"name",
"that",
"executes",
"command",
".",
"The",
"command",
"must",
"*",
"not",
"*",
"be",
"enclosed",
"in",
"quotes",
".",
"Repla... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1650-L1683 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_unalias | def do_unalias(self, arg):
"""unalias name
Delete the specified alias.
"""
args = arg.split()
if len(args) == 0: return
if args[0] in self.aliases:
del self.aliases[args[0]] | python | def do_unalias(self, arg):
"""unalias name
Delete the specified alias.
"""
args = arg.split()
if len(args) == 0: return
if args[0] in self.aliases:
del self.aliases[args[0]] | [
"def",
"do_unalias",
"(",
"self",
",",
"arg",
")",
":",
"args",
"=",
"arg",
".",
"split",
"(",
")",
"if",
"len",
"(",
"args",
")",
"==",
"0",
":",
"return",
"if",
"args",
"[",
"0",
"]",
"in",
"self",
".",
"aliases",
":",
"del",
"self",
".",
"... | unalias name
Delete the specified alias. | [
"unalias",
"name",
"Delete",
"the",
"specified",
"alias",
"."
] | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1685-L1692 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_thread | def do_thread(self, arg):
"""th(read) [threadnumber]
Without argument, display a summary of all active threads.
The summary prints for each thread:
1. the thread number assigned by pdb
2. the thread name
3. the python thread identifier
4. the current s... | python | def do_thread(self, arg):
"""th(read) [threadnumber]
Without argument, display a summary of all active threads.
The summary prints for each thread:
1. the thread number assigned by pdb
2. the thread name
3. the python thread identifier
4. the current s... | [
"def",
"do_thread",
"(",
"self",
",",
"arg",
")",
":",
"# Import the threading module in the main interpreter to get an",
"# enumeration of the main interpreter threads.",
"if",
"PY3",
":",
"try",
":",
"import",
"threading",
"except",
"ImportError",
":",
"import",
"dummy_th... | th(read) [threadnumber]
Without argument, display a summary of all active threads.
The summary prints for each thread:
1. the thread number assigned by pdb
2. the thread name
3. the python thread identifier
4. the current stack frame summary for that thread
... | [
"th",
"(",
"read",
")",
"[",
"threadnumber",
"]",
"Without",
"argument",
"display",
"a",
"summary",
"of",
"all",
"active",
"threads",
".",
"The",
"summary",
"prints",
"for",
"each",
"thread",
":",
"1",
".",
"the",
"thread",
"number",
"assigned",
"by",
"p... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1740-L1790 |
corpusops/pdbclone | lib/pdb_clone/pdb.py | Pdb.do_help | def do_help(self, arg):
"""h(elp)
Without argument, print the list of available commands.
With a command name as argument, print help about that command.
"help pdb" shows the full pdb documentation.
"help exec" gives help on the ! command.
"""
if not arg:
... | python | def do_help(self, arg):
"""h(elp)
Without argument, print the list of available commands.
With a command name as argument, print help about that command.
"help pdb" shows the full pdb documentation.
"help exec" gives help on the ! command.
"""
if not arg:
... | [
"def",
"do_help",
"(",
"self",
",",
"arg",
")",
":",
"if",
"not",
"arg",
":",
"return",
"cmd",
".",
"Cmd",
".",
"do_help",
"(",
"self",
",",
"arg",
")",
"try",
":",
"try",
":",
"topic",
"=",
"getattr",
"(",
"self",
",",
"'help_'",
"+",
"arg",
"... | h(elp)
Without argument, print the list of available commands.
With a command name as argument, print help about that command.
"help pdb" shows the full pdb documentation.
"help exec" gives help on the ! command. | [
"h",
"(",
"elp",
")",
"Without",
"argument",
"print",
"the",
"list",
"of",
"available",
"commands",
".",
"With",
"a",
"command",
"name",
"as",
"argument",
"print",
"help",
"about",
"that",
"command",
".",
"help",
"pdb",
"shows",
"the",
"full",
"pdb",
"do... | train | https://github.com/corpusops/pdbclone/blob/f781537c243a4874b246d43dbdef8c4279f0094d/lib/pdb_clone/pdb.py#L1825-L1847 |
MediaFire/mediafire-python-open-sdk | mediafire/subsetio.py | SubsetIO.read | def read(self, limit=-1):
"""Read content. See file.read"""
remaining = self.len - self.parent_fd.tell() + self.offset
if limit > remaining or limit == -1:
limit = remaining
return self.parent_fd.read(limit) | python | def read(self, limit=-1):
"""Read content. See file.read"""
remaining = self.len - self.parent_fd.tell() + self.offset
if limit > remaining or limit == -1:
limit = remaining
return self.parent_fd.read(limit) | [
"def",
"read",
"(",
"self",
",",
"limit",
"=",
"-",
"1",
")",
":",
"remaining",
"=",
"self",
".",
"len",
"-",
"self",
".",
"parent_fd",
".",
"tell",
"(",
")",
"+",
"self",
".",
"offset",
"if",
"limit",
">",
"remaining",
"or",
"limit",
"==",
"-",
... | Read content. See file.read | [
"Read",
"content",
".",
"See",
"file",
".",
"read"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/subsetio.py#L48-L55 |
MediaFire/mediafire-python-open-sdk | mediafire/subsetio.py | SubsetIO.seek | def seek(self, offset, whence=os.SEEK_SET):
"""Seek to position in stream, see file.seek"""
pos = None
if whence == os.SEEK_SET:
pos = self.offset + offset
elif whence == os.SEEK_CUR:
pos = self.tell() + offset
elif whence == os.SEEK_END:
pos ... | python | def seek(self, offset, whence=os.SEEK_SET):
"""Seek to position in stream, see file.seek"""
pos = None
if whence == os.SEEK_SET:
pos = self.offset + offset
elif whence == os.SEEK_CUR:
pos = self.tell() + offset
elif whence == os.SEEK_END:
pos ... | [
"def",
"seek",
"(",
"self",
",",
"offset",
",",
"whence",
"=",
"os",
".",
"SEEK_SET",
")",
":",
"pos",
"=",
"None",
"if",
"whence",
"==",
"os",
".",
"SEEK_SET",
":",
"pos",
"=",
"self",
".",
"offset",
"+",
"offset",
"elif",
"whence",
"==",
"os",
... | Seek to position in stream, see file.seek | [
"Seek",
"to",
"position",
"in",
"stream",
"see",
"file",
".",
"seek"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/subsetio.py#L57-L73 |
MediaFire/mediafire-python-open-sdk | mediafire/subsetio.py | SubsetIO.close | def close(self):
"""Close file, see file.close"""
try:
self.parent_fd.fileno()
except io.UnsupportedOperation:
logger.debug("Not closing parent_fd - reusing existing")
else:
self.parent_fd.close() | python | def close(self):
"""Close file, see file.close"""
try:
self.parent_fd.fileno()
except io.UnsupportedOperation:
logger.debug("Not closing parent_fd - reusing existing")
else:
self.parent_fd.close() | [
"def",
"close",
"(",
"self",
")",
":",
"try",
":",
"self",
".",
"parent_fd",
".",
"fileno",
"(",
")",
"except",
"io",
".",
"UnsupportedOperation",
":",
"logger",
".",
"debug",
"(",
"\"Not closing parent_fd - reusing existing\"",
")",
"else",
":",
"self",
"."... | Close file, see file.close | [
"Close",
"file",
"see",
"file",
".",
"close"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/subsetio.py#L80-L87 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi._build_query | def _build_query(self, uri, params=None, action_token_type=None):
"""Prepare query string"""
if params is None:
params = QueryParams()
params['response_format'] = 'json'
session_token = None
if action_token_type in self._action_tokens:
# Favor action t... | python | def _build_query(self, uri, params=None, action_token_type=None):
"""Prepare query string"""
if params is None:
params = QueryParams()
params['response_format'] = 'json'
session_token = None
if action_token_type in self._action_tokens:
# Favor action t... | [
"def",
"_build_query",
"(",
"self",
",",
"uri",
",",
"params",
"=",
"None",
",",
"action_token_type",
"=",
"None",
")",
":",
"if",
"params",
"is",
"None",
":",
"params",
"=",
"QueryParams",
"(",
")",
"params",
"[",
"'response_format'",
"]",
"=",
"'json'"... | Prepare query string | [
"Prepare",
"query",
"string"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L97-L134 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.request | def request(self, action, params=None, action_token_type=None,
upload_info=None, headers=None):
"""Perform request to MediaFire API
action -- "category/name" of method to call
params -- dict of parameters or query string
action_token_type -- action token to use: None, "u... | python | def request(self, action, params=None, action_token_type=None,
upload_info=None, headers=None):
"""Perform request to MediaFire API
action -- "category/name" of method to call
params -- dict of parameters or query string
action_token_type -- action token to use: None, "u... | [
"def",
"request",
"(",
"self",
",",
"action",
",",
"params",
"=",
"None",
",",
"action_token_type",
"=",
"None",
",",
"upload_info",
"=",
"None",
",",
"headers",
"=",
"None",
")",
":",
"uri",
"=",
"self",
".",
"_build_uri",
"(",
"action",
")",
"if",
... | Perform request to MediaFire API
action -- "category/name" of method to call
params -- dict of parameters or query string
action_token_type -- action token to use: None, "upload", "image"
upload_info -- in case of upload, dict of "fd" and "filename"
headers -- additional headers... | [
"Perform",
"request",
"to",
"MediaFire",
"API"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L136-L197 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi._process_response | def _process_response(self, response):
"""Parse response"""
forward_raw = False
content_type = response.headers['Content-Type']
if content_type != 'application/json':
logger.debug("headers: %s", response.headers)
# API BUG: text/xml content-type with json payload... | python | def _process_response(self, response):
"""Parse response"""
forward_raw = False
content_type = response.headers['Content-Type']
if content_type != 'application/json':
logger.debug("headers: %s", response.headers)
# API BUG: text/xml content-type with json payload... | [
"def",
"_process_response",
"(",
"self",
",",
"response",
")",
":",
"forward_raw",
"=",
"False",
"content_type",
"=",
"response",
".",
"headers",
"[",
"'Content-Type'",
"]",
"if",
"content_type",
"!=",
"'application/json'",
":",
"logger",
".",
"debug",
"(",
"\... | Parse response | [
"Parse",
"response"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L199-L238 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi._regenerate_secret_key | def _regenerate_secret_key(self):
"""Regenerate secret key
http://www.mediafire.com/developers/core_api/1.3/getting_started/#call_signature
"""
# Don't regenerate the key if we have none
if self._session and 'secret_key' in self._session:
self._session['secret_key'] ... | python | def _regenerate_secret_key(self):
"""Regenerate secret key
http://www.mediafire.com/developers/core_api/1.3/getting_started/#call_signature
"""
# Don't regenerate the key if we have none
if self._session and 'secret_key' in self._session:
self._session['secret_key'] ... | [
"def",
"_regenerate_secret_key",
"(",
"self",
")",
":",
"# Don't regenerate the key if we have none",
"if",
"self",
".",
"_session",
"and",
"'secret_key'",
"in",
"self",
".",
"_session",
":",
"self",
".",
"_session",
"[",
"'secret_key'",
"]",
"=",
"(",
"int",
"(... | Regenerate secret key
http://www.mediafire.com/developers/core_api/1.3/getting_started/#call_signature | [
"Regenerate",
"secret",
"key"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L240-L248 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.session | def session(self, value):
"""Set session token
value -- dict returned by user/get_session_token"""
# unset session token
if value is None:
self._session = None
return
if not isinstance(value, dict):
raise ValueError("session info is required... | python | def session(self, value):
"""Set session token
value -- dict returned by user/get_session_token"""
# unset session token
if value is None:
self._session = None
return
if not isinstance(value, dict):
raise ValueError("session info is required... | [
"def",
"session",
"(",
"self",
",",
"value",
")",
":",
"# unset session token",
"if",
"value",
"is",
"None",
":",
"self",
".",
"_session",
"=",
"None",
"return",
"if",
"not",
"isinstance",
"(",
"value",
",",
"dict",
")",
":",
"raise",
"ValueError",
"(",
... | Set session token
value -- dict returned by user/get_session_token | [
"Set",
"session",
"token"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L256-L281 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.set_action_token | def set_action_token(self, type_=None, action_token=None):
"""Set action tokens
type_ -- either "upload" or "image"
action_token -- string obtained from user/get_action_token,
set None to remove the token
"""
if action_token is None:
del self.... | python | def set_action_token(self, type_=None, action_token=None):
"""Set action tokens
type_ -- either "upload" or "image"
action_token -- string obtained from user/get_action_token,
set None to remove the token
"""
if action_token is None:
del self.... | [
"def",
"set_action_token",
"(",
"self",
",",
"type_",
"=",
"None",
",",
"action_token",
"=",
"None",
")",
":",
"if",
"action_token",
"is",
"None",
":",
"del",
"self",
".",
"_action_tokens",
"[",
"type_",
"]",
"else",
":",
"self",
".",
"_action_tokens",
"... | Set action tokens
type_ -- either "upload" or "image"
action_token -- string obtained from user/get_action_token,
set None to remove the token | [
"Set",
"action",
"tokens"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L288-L298 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.user_get_session_token | def user_get_session_token(self, app_id=None, email=None, password=None,
ekey=None, fb_access_token=None,
tw_oauth_token=None,
tw_oauth_token_secret=None, api_key=None):
"""user/get_session_token
http://www.med... | python | def user_get_session_token(self, app_id=None, email=None, password=None,
ekey=None, fb_access_token=None,
tw_oauth_token=None,
tw_oauth_token_secret=None, api_key=None):
"""user/get_session_token
http://www.med... | [
"def",
"user_get_session_token",
"(",
"self",
",",
"app_id",
"=",
"None",
",",
"email",
"=",
"None",
",",
"password",
"=",
"None",
",",
"ekey",
"=",
"None",
",",
"fb_access_token",
"=",
"None",
",",
"tw_oauth_token",
"=",
"None",
",",
"tw_oauth_token_secret"... | user/get_session_token
http://www.mediafire.com/developers/core_api/1.3/user/#get_session_token | [
"user",
"/",
"get_session_token"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L318-L374 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.user_set_avatar | def user_set_avatar(self, action=None, quick_key=None, url=None):
"""user/set_avatar
http://www.mediafire.com/developers/core_api/1.3/user/#set_avatar
"""
return self.request("user/set_avatar", QueryParams({
"action": action,
"quick_key": quick_key,
"... | python | def user_set_avatar(self, action=None, quick_key=None, url=None):
"""user/set_avatar
http://www.mediafire.com/developers/core_api/1.3/user/#set_avatar
"""
return self.request("user/set_avatar", QueryParams({
"action": action,
"quick_key": quick_key,
"... | [
"def",
"user_set_avatar",
"(",
"self",
",",
"action",
"=",
"None",
",",
"quick_key",
"=",
"None",
",",
"url",
"=",
"None",
")",
":",
"return",
"self",
".",
"request",
"(",
"\"user/set_avatar\"",
",",
"QueryParams",
"(",
"{",
"\"action\"",
":",
"action",
... | user/set_avatar
http://www.mediafire.com/developers/core_api/1.3/user/#set_avatar | [
"user",
"/",
"set_avatar"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L430-L439 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.user_update | def user_update(self, display_name=None, first_name=None, last_name=None,
email=None, password=None, current_password=None,
birth_date=None, gender=None, website=None, subdomain=None,
location=None, newsletter=None, primary_usage=None,
time... | python | def user_update(self, display_name=None, first_name=None, last_name=None,
email=None, password=None, current_password=None,
birth_date=None, gender=None, website=None, subdomain=None,
location=None, newsletter=None, primary_usage=None,
time... | [
"def",
"user_update",
"(",
"self",
",",
"display_name",
"=",
"None",
",",
"first_name",
"=",
"None",
",",
"last_name",
"=",
"None",
",",
"email",
"=",
"None",
",",
"password",
"=",
"None",
",",
"current_password",
"=",
"None",
",",
"birth_date",
"=",
"No... | user/update
http://www.mediafire.com/developers/core_api/1.3/user/#update | [
"user",
"/",
"update"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L441-L466 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.folder_get_info | def folder_get_info(self, folder_key=None, device_id=None, details=None):
"""folder/get_info
http://www.mediafire.com/developers/core_api/1.3/folder/#get_info
"""
return self.request('folder/get_info', QueryParams({
'folder_key': folder_key,
'device_id': device_i... | python | def folder_get_info(self, folder_key=None, device_id=None, details=None):
"""folder/get_info
http://www.mediafire.com/developers/core_api/1.3/folder/#get_info
"""
return self.request('folder/get_info', QueryParams({
'folder_key': folder_key,
'device_id': device_i... | [
"def",
"folder_get_info",
"(",
"self",
",",
"folder_key",
"=",
"None",
",",
"device_id",
"=",
"None",
",",
"details",
"=",
"None",
")",
":",
"return",
"self",
".",
"request",
"(",
"'folder/get_info'",
",",
"QueryParams",
"(",
"{",
"'folder_key'",
":",
"fol... | folder/get_info
http://www.mediafire.com/developers/core_api/1.3/folder/#get_info | [
"folder",
"/",
"get_info"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L468-L477 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.folder_get_content | def folder_get_content(self, folder_key=None, content_type=None,
filter_=None, device_id=None, order_by=None,
order_direction=None, chunk=None, details=None,
chunk_size=None):
"""folder/get_content
http://www.mediafire.com... | python | def folder_get_content(self, folder_key=None, content_type=None,
filter_=None, device_id=None, order_by=None,
order_direction=None, chunk=None, details=None,
chunk_size=None):
"""folder/get_content
http://www.mediafire.com... | [
"def",
"folder_get_content",
"(",
"self",
",",
"folder_key",
"=",
"None",
",",
"content_type",
"=",
"None",
",",
"filter_",
"=",
"None",
",",
"device_id",
"=",
"None",
",",
"order_by",
"=",
"None",
",",
"order_direction",
"=",
"None",
",",
"chunk",
"=",
... | folder/get_content
http://www.mediafire.com/developers/core_api/1.3/folder/#get_content | [
"folder",
"/",
"get_content"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L479-L497 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.folder_update | def folder_update(self, folder_key, foldername=None, description=None,
privacy=None, privacy_recursive=None, mtime=None):
"""folder/update
http://www.mediafire.com/developers/core_api/1.3/folder/#update
"""
return self.request('folder/update', QueryParams({
... | python | def folder_update(self, folder_key, foldername=None, description=None,
privacy=None, privacy_recursive=None, mtime=None):
"""folder/update
http://www.mediafire.com/developers/core_api/1.3/folder/#update
"""
return self.request('folder/update', QueryParams({
... | [
"def",
"folder_update",
"(",
"self",
",",
"folder_key",
",",
"foldername",
"=",
"None",
",",
"description",
"=",
"None",
",",
"privacy",
"=",
"None",
",",
"privacy_recursive",
"=",
"None",
",",
"mtime",
"=",
"None",
")",
":",
"return",
"self",
".",
"requ... | folder/update
http://www.mediafire.com/developers/core_api/1.3/folder/#update | [
"folder",
"/",
"update"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L499-L512 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.folder_create | def folder_create(self, foldername=None, parent_key=None,
action_on_duplicate=None, mtime=None):
"""folder/create
http://www.mediafire.com/developers/core_api/1.3/folder/#create
"""
return self.request('folder/create', QueryParams({
'foldername': folder... | python | def folder_create(self, foldername=None, parent_key=None,
action_on_duplicate=None, mtime=None):
"""folder/create
http://www.mediafire.com/developers/core_api/1.3/folder/#create
"""
return self.request('folder/create', QueryParams({
'foldername': folder... | [
"def",
"folder_create",
"(",
"self",
",",
"foldername",
"=",
"None",
",",
"parent_key",
"=",
"None",
",",
"action_on_duplicate",
"=",
"None",
",",
"mtime",
"=",
"None",
")",
":",
"return",
"self",
".",
"request",
"(",
"'folder/create'",
",",
"QueryParams",
... | folder/create
http://www.mediafire.com/developers/core_api/1.3/folder/#create | [
"folder",
"/",
"create"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L514-L525 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.upload_check | def upload_check(self, filename=None, folder_key=None, filedrop_key=None,
size=None, hash_=None, path=None, resumable=None):
"""upload/check
http://www.mediafire.com/developers/core_api/1.3/upload/#check
"""
return self.request('upload/check', QueryParams({
... | python | def upload_check(self, filename=None, folder_key=None, filedrop_key=None,
size=None, hash_=None, path=None, resumable=None):
"""upload/check
http://www.mediafire.com/developers/core_api/1.3/upload/#check
"""
return self.request('upload/check', QueryParams({
... | [
"def",
"upload_check",
"(",
"self",
",",
"filename",
"=",
"None",
",",
"folder_key",
"=",
"None",
",",
"filedrop_key",
"=",
"None",
",",
"size",
"=",
"None",
",",
"hash_",
"=",
"None",
",",
"path",
"=",
"None",
",",
"resumable",
"=",
"None",
")",
":"... | upload/check
http://www.mediafire.com/developers/core_api/1.3/upload/#check | [
"upload",
"/",
"check"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L555-L569 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.upload_simple | def upload_simple(self, fd, filename, folder_key=None, path=None,
filedrop_key=None, action_on_duplicate=None,
mtime=None, file_size=None, file_hash=None):
"""upload/simple
http://www.mediafire.com/developers/core_api/1.3/upload/#simple
"""
ac... | python | def upload_simple(self, fd, filename, folder_key=None, path=None,
filedrop_key=None, action_on_duplicate=None,
mtime=None, file_size=None, file_hash=None):
"""upload/simple
http://www.mediafire.com/developers/core_api/1.3/upload/#simple
"""
ac... | [
"def",
"upload_simple",
"(",
"self",
",",
"fd",
",",
"filename",
",",
"folder_key",
"=",
"None",
",",
"path",
"=",
"None",
",",
"filedrop_key",
"=",
"None",
",",
"action_on_duplicate",
"=",
"None",
",",
"mtime",
"=",
"None",
",",
"file_size",
"=",
"None"... | upload/simple
http://www.mediafire.com/developers/core_api/1.3/upload/#simple | [
"upload",
"/",
"simple"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L571-L599 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.upload_resumable | def upload_resumable(self, fd, filesize, filehash, unit_hash, unit_id,
unit_size, quick_key=None, action_on_duplicate=None,
mtime=None, version_control=None, folder_key=None,
filedrop_key=None, path=None, previous_hash=None):
"""upload/r... | python | def upload_resumable(self, fd, filesize, filehash, unit_hash, unit_id,
unit_size, quick_key=None, action_on_duplicate=None,
mtime=None, version_control=None, folder_key=None,
filedrop_key=None, path=None, previous_hash=None):
"""upload/r... | [
"def",
"upload_resumable",
"(",
"self",
",",
"fd",
",",
"filesize",
",",
"filehash",
",",
"unit_hash",
",",
"unit_id",
",",
"unit_size",
",",
"quick_key",
"=",
"None",
",",
"action_on_duplicate",
"=",
"None",
",",
"mtime",
"=",
"None",
",",
"version_control"... | upload/resumable
http://www.mediafire.com/developers/core_api/1.3/upload/#resumable | [
"upload",
"/",
"resumable"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L603-L638 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.upload_instant | def upload_instant(self, filename, size, hash_, quick_key=None,
folder_key=None, filedrop_key=None, path=None,
action_on_duplicate=None, mtime=None,
version_control=None, previous_hash=None):
"""upload/instant
http://www.mediafire.com... | python | def upload_instant(self, filename, size, hash_, quick_key=None,
folder_key=None, filedrop_key=None, path=None,
action_on_duplicate=None, mtime=None,
version_control=None, previous_hash=None):
"""upload/instant
http://www.mediafire.com... | [
"def",
"upload_instant",
"(",
"self",
",",
"filename",
",",
"size",
",",
"hash_",
",",
"quick_key",
"=",
"None",
",",
"folder_key",
"=",
"None",
",",
"filedrop_key",
"=",
"None",
",",
"path",
"=",
"None",
",",
"action_on_duplicate",
"=",
"None",
",",
"mt... | upload/instant
http://www.mediafire.com/developers/core_api/1.3/upload/#instant | [
"upload",
"/",
"instant"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L641-L661 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.file_update | def file_update(self, quick_key, filename=None, description=None,
mtime=None, privacy=None):
"""file/update
http://www.mediafire.com/developers/core_api/1.3/file/#update
"""
return self.request('file/update', QueryParams({
'quick_key': quick_key,
... | python | def file_update(self, quick_key, filename=None, description=None,
mtime=None, privacy=None):
"""file/update
http://www.mediafire.com/developers/core_api/1.3/file/#update
"""
return self.request('file/update', QueryParams({
'quick_key': quick_key,
... | [
"def",
"file_update",
"(",
"self",
",",
"quick_key",
",",
"filename",
"=",
"None",
",",
"description",
"=",
"None",
",",
"mtime",
"=",
"None",
",",
"privacy",
"=",
"None",
")",
":",
"return",
"self",
".",
"request",
"(",
"'file/update'",
",",
"QueryParam... | file/update
http://www.mediafire.com/developers/core_api/1.3/file/#update | [
"file",
"/",
"update"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L691-L703 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.file_update_file | def file_update_file(self, quick_key, file_extension=None, filename=None,
description=None, mtime=None, privacy=None,
timezone=None):
"""file/update_file
http://www.mediafire.com/developers/core_api/1.3/file/#update_file
"""
return self.... | python | def file_update_file(self, quick_key, file_extension=None, filename=None,
description=None, mtime=None, privacy=None,
timezone=None):
"""file/update_file
http://www.mediafire.com/developers/core_api/1.3/file/#update_file
"""
return self.... | [
"def",
"file_update_file",
"(",
"self",
",",
"quick_key",
",",
"file_extension",
"=",
"None",
",",
"filename",
"=",
"None",
",",
"description",
"=",
"None",
",",
"mtime",
"=",
"None",
",",
"privacy",
"=",
"None",
",",
"timezone",
"=",
"None",
")",
":",
... | file/update_file
http://www.mediafire.com/developers/core_api/1.3/file/#update_file | [
"file",
"/",
"update_file"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L705-L720 |
MediaFire/mediafire-python-open-sdk | mediafire/api.py | MediaFireApi.file_zip | def file_zip(self, keys, confirm_download=None, meta_only=None):
"""file/zip
http://www.mediafire.com/developers/core_api/1.3/file/#zip
"""
return self.request('file/zip', QueryParams({
'keys': keys,
'confirm_download': confirm_download,
'meta_only': ... | python | def file_zip(self, keys, confirm_download=None, meta_only=None):
"""file/zip
http://www.mediafire.com/developers/core_api/1.3/file/#zip
"""
return self.request('file/zip', QueryParams({
'keys': keys,
'confirm_download': confirm_download,
'meta_only': ... | [
"def",
"file_zip",
"(",
"self",
",",
"keys",
",",
"confirm_download",
"=",
"None",
",",
"meta_only",
"=",
"None",
")",
":",
"return",
"self",
".",
"request",
"(",
"'file/zip'",
",",
"QueryParams",
"(",
"{",
"'keys'",
":",
"keys",
",",
"'confirm_download'",... | file/zip
http://www.mediafire.com/developers/core_api/1.3/file/#zip | [
"file",
"/",
"zip"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/mediafire/api.py#L750-L759 |
dlecocq/nsq-py | nsq/connection.py | Connection._reset | def _reset(self):
'''Reset all of our stateful variables'''
self._socket = None
# The pending messages we have to send, and the current buffer we're
# sending
self._pending = deque()
self._out_buffer = ''
# Our read buffer
self._buffer = ''
# The i... | python | def _reset(self):
'''Reset all of our stateful variables'''
self._socket = None
# The pending messages we have to send, and the current buffer we're
# sending
self._pending = deque()
self._out_buffer = ''
# Our read buffer
self._buffer = ''
# The i... | [
"def",
"_reset",
"(",
"self",
")",
":",
"self",
".",
"_socket",
"=",
"None",
"# The pending messages we have to send, and the current buffer we're",
"# sending",
"self",
".",
"_pending",
"=",
"deque",
"(",
")",
"self",
".",
"_out_buffer",
"=",
"''",
"# Our read buff... | Reset all of our stateful variables | [
"Reset",
"all",
"of",
"our",
"stateful",
"variables"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L91-L104 |
dlecocq/nsq-py | nsq/connection.py | Connection.connect | def connect(self, force=False):
'''Establish a connection'''
# Don't re-establish existing connections
if not force and self.alive():
return True
self._reset()
# Otherwise, try to connect
with self._socket_lock:
try:
logger.info('... | python | def connect(self, force=False):
'''Establish a connection'''
# Don't re-establish existing connections
if not force and self.alive():
return True
self._reset()
# Otherwise, try to connect
with self._socket_lock:
try:
logger.info('... | [
"def",
"connect",
"(",
"self",
",",
"force",
"=",
"False",
")",
":",
"# Don't re-establish existing connections",
"if",
"not",
"force",
"and",
"self",
".",
"alive",
"(",
")",
":",
"return",
"True",
"self",
".",
"_reset",
"(",
")",
"# Otherwise, try to connect"... | Establish a connection | [
"Establish",
"a",
"connection"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L106-L151 |
dlecocq/nsq-py | nsq/connection.py | Connection.close | def close(self):
'''Close our connection'''
# Flush any unsent message
try:
while self.pending():
self.flush()
except socket.error:
pass
with self._socket_lock:
try:
if self._socket:
self._soc... | python | def close(self):
'''Close our connection'''
# Flush any unsent message
try:
while self.pending():
self.flush()
except socket.error:
pass
with self._socket_lock:
try:
if self._socket:
self._soc... | [
"def",
"close",
"(",
"self",
")",
":",
"# Flush any unsent message",
"try",
":",
"while",
"self",
".",
"pending",
"(",
")",
":",
"self",
".",
"flush",
"(",
")",
"except",
"socket",
".",
"error",
":",
"pass",
"with",
"self",
".",
"_socket_lock",
":",
"t... | Close our connection | [
"Close",
"our",
"connection"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L153-L166 |
dlecocq/nsq-py | nsq/connection.py | Connection.socket | def socket(self, blocking=True):
'''Blockingly yield the socket'''
# If the socket is available, then yield it. Otherwise, yield nothing
if self._socket_lock.acquire(blocking):
try:
yield self._socket
finally:
self._socket_lock.release() | python | def socket(self, blocking=True):
'''Blockingly yield the socket'''
# If the socket is available, then yield it. Otherwise, yield nothing
if self._socket_lock.acquire(blocking):
try:
yield self._socket
finally:
self._socket_lock.release() | [
"def",
"socket",
"(",
"self",
",",
"blocking",
"=",
"True",
")",
":",
"# If the socket is available, then yield it. Otherwise, yield nothing",
"if",
"self",
".",
"_socket_lock",
".",
"acquire",
"(",
"blocking",
")",
":",
"try",
":",
"yield",
"self",
".",
"_socket"... | Blockingly yield the socket | [
"Blockingly",
"yield",
"the",
"socket"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L168-L175 |
dlecocq/nsq-py | nsq/connection.py | Connection.identified | def identified(self, res):
'''Handle a response to our 'identify' command. Returns response'''
# If they support it, they should give us a JSON blob which we should
# inspect.
try:
res.data = json.loads(res.data)
self._identify_response = res.data
logg... | python | def identified(self, res):
'''Handle a response to our 'identify' command. Returns response'''
# If they support it, they should give us a JSON blob which we should
# inspect.
try:
res.data = json.loads(res.data)
self._identify_response = res.data
logg... | [
"def",
"identified",
"(",
"self",
",",
"res",
")",
":",
"# If they support it, they should give us a JSON blob which we should",
"# inspect.",
"try",
":",
"res",
".",
"data",
"=",
"json",
".",
"loads",
"(",
"res",
".",
"data",
")",
"self",
".",
"_identify_response... | Handle a response to our 'identify' command. Returns response | [
"Handle",
"a",
"response",
"to",
"our",
"identify",
"command",
".",
"Returns",
"response"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L177-L211 |
dlecocq/nsq-py | nsq/connection.py | Connection.setblocking | def setblocking(self, blocking):
'''Set whether or not this message is blocking'''
for sock in self.socket():
sock.setblocking(blocking)
self._blocking = blocking | python | def setblocking(self, blocking):
'''Set whether or not this message is blocking'''
for sock in self.socket():
sock.setblocking(blocking)
self._blocking = blocking | [
"def",
"setblocking",
"(",
"self",
",",
"blocking",
")",
":",
"for",
"sock",
"in",
"self",
".",
"socket",
"(",
")",
":",
"sock",
".",
"setblocking",
"(",
"blocking",
")",
"self",
".",
"_blocking",
"=",
"blocking"
] | Set whether or not this message is blocking | [
"Set",
"whether",
"or",
"not",
"this",
"message",
"is",
"blocking"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L217-L221 |
dlecocq/nsq-py | nsq/connection.py | Connection.flush | def flush(self):
'''Flush some of the waiting messages, returns count written'''
# When profiling, we found that while there was some efficiency to be
# gained elsewhere, the big performance hit is sending lots of small
# messages at a time. In particular, consumers send many 'FIN' messa... | python | def flush(self):
'''Flush some of the waiting messages, returns count written'''
# When profiling, we found that while there was some efficiency to be
# gained elsewhere, the big performance hit is sending lots of small
# messages at a time. In particular, consumers send many 'FIN' messa... | [
"def",
"flush",
"(",
"self",
")",
":",
"# When profiling, we found that while there was some efficiency to be",
"# gained elsewhere, the big performance hit is sending lots of small",
"# messages at a time. In particular, consumers send many 'FIN' messages",
"# which are very small indeed and the ... | Flush some of the waiting messages, returns count written | [
"Flush",
"some",
"of",
"the",
"waiting",
"messages",
"returns",
"count",
"written"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L234-L266 |
dlecocq/nsq-py | nsq/connection.py | Connection.send | def send(self, command, message=None):
'''Send a command over the socket with length endcoded'''
if message:
joined = command + constants.NL + util.pack(message)
else:
joined = command + constants.NL
if self._blocking:
for sock in self.socket():
... | python | def send(self, command, message=None):
'''Send a command over the socket with length endcoded'''
if message:
joined = command + constants.NL + util.pack(message)
else:
joined = command + constants.NL
if self._blocking:
for sock in self.socket():
... | [
"def",
"send",
"(",
"self",
",",
"command",
",",
"message",
"=",
"None",
")",
":",
"if",
"message",
":",
"joined",
"=",
"command",
"+",
"constants",
".",
"NL",
"+",
"util",
".",
"pack",
"(",
"message",
")",
"else",
":",
"joined",
"=",
"command",
"+... | Send a command over the socket with length endcoded | [
"Send",
"a",
"command",
"over",
"the",
"socket",
"with",
"length",
"endcoded"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L268-L278 |
dlecocq/nsq-py | nsq/connection.py | Connection.identify | def identify(self, data):
'''Send an identification message'''
return self.send(constants.IDENTIFY, json.dumps(data)) | python | def identify(self, data):
'''Send an identification message'''
return self.send(constants.IDENTIFY, json.dumps(data)) | [
"def",
"identify",
"(",
"self",
",",
"data",
")",
":",
"return",
"self",
".",
"send",
"(",
"constants",
".",
"IDENTIFY",
",",
"json",
".",
"dumps",
"(",
"data",
")",
")"
] | Send an identification message | [
"Send",
"an",
"identification",
"message"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L280-L282 |
dlecocq/nsq-py | nsq/connection.py | Connection.sub | def sub(self, topic, channel):
'''Subscribe to a topic/channel'''
return self.send(' '.join((constants.SUB, topic, channel))) | python | def sub(self, topic, channel):
'''Subscribe to a topic/channel'''
return self.send(' '.join((constants.SUB, topic, channel))) | [
"def",
"sub",
"(",
"self",
",",
"topic",
",",
"channel",
")",
":",
"return",
"self",
".",
"send",
"(",
"' '",
".",
"join",
"(",
"(",
"constants",
".",
"SUB",
",",
"topic",
",",
"channel",
")",
")",
")"
] | Subscribe to a topic/channel | [
"Subscribe",
"to",
"a",
"topic",
"/",
"channel"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L288-L290 |
dlecocq/nsq-py | nsq/connection.py | Connection.pub | def pub(self, topic, message):
'''Publish to a topic'''
return self.send(' '.join((constants.PUB, topic)), message) | python | def pub(self, topic, message):
'''Publish to a topic'''
return self.send(' '.join((constants.PUB, topic)), message) | [
"def",
"pub",
"(",
"self",
",",
"topic",
",",
"message",
")",
":",
"return",
"self",
".",
"send",
"(",
"' '",
".",
"join",
"(",
"(",
"constants",
".",
"PUB",
",",
"topic",
")",
")",
",",
"message",
")"
] | Publish to a topic | [
"Publish",
"to",
"a",
"topic"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L292-L294 |
dlecocq/nsq-py | nsq/connection.py | Connection.mpub | def mpub(self, topic, *messages):
'''Publish multiple messages to a topic'''
return self.send(constants.MPUB + ' ' + topic, messages) | python | def mpub(self, topic, *messages):
'''Publish multiple messages to a topic'''
return self.send(constants.MPUB + ' ' + topic, messages) | [
"def",
"mpub",
"(",
"self",
",",
"topic",
",",
"*",
"messages",
")",
":",
"return",
"self",
".",
"send",
"(",
"constants",
".",
"MPUB",
"+",
"' '",
"+",
"topic",
",",
"messages",
")"
] | Publish multiple messages to a topic | [
"Publish",
"multiple",
"messages",
"to",
"a",
"topic"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L296-L298 |
dlecocq/nsq-py | nsq/connection.py | Connection.rdy | def rdy(self, count):
'''Indicate that you're ready to receive'''
self.ready = count
self.last_ready_sent = count
return self.send(constants.RDY + ' ' + str(count)) | python | def rdy(self, count):
'''Indicate that you're ready to receive'''
self.ready = count
self.last_ready_sent = count
return self.send(constants.RDY + ' ' + str(count)) | [
"def",
"rdy",
"(",
"self",
",",
"count",
")",
":",
"self",
".",
"ready",
"=",
"count",
"self",
".",
"last_ready_sent",
"=",
"count",
"return",
"self",
".",
"send",
"(",
"constants",
".",
"RDY",
"+",
"' '",
"+",
"str",
"(",
"count",
")",
")"
] | Indicate that you're ready to receive | [
"Indicate",
"that",
"you",
"re",
"ready",
"to",
"receive"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L300-L304 |
dlecocq/nsq-py | nsq/connection.py | Connection.req | def req(self, message_id, timeout):
'''Re-queue a message'''
return self.send(constants.REQ + ' ' + message_id + ' ' + str(timeout)) | python | def req(self, message_id, timeout):
'''Re-queue a message'''
return self.send(constants.REQ + ' ' + message_id + ' ' + str(timeout)) | [
"def",
"req",
"(",
"self",
",",
"message_id",
",",
"timeout",
")",
":",
"return",
"self",
".",
"send",
"(",
"constants",
".",
"REQ",
"+",
"' '",
"+",
"message_id",
"+",
"' '",
"+",
"str",
"(",
"timeout",
")",
")"
] | Re-queue a message | [
"Re",
"-",
"queue",
"a",
"message"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L310-L312 |
dlecocq/nsq-py | nsq/connection.py | Connection._read | def _read(self, limit=1000):
'''Return all the responses read'''
# It's important to know that it may return no responses or multiple
# responses. It depends on how the buffering works out. First, read from
# the socket
for sock in self.socket():
if sock is None:
... | python | def _read(self, limit=1000):
'''Return all the responses read'''
# It's important to know that it may return no responses or multiple
# responses. It depends on how the buffering works out. First, read from
# the socket
for sock in self.socket():
if sock is None:
... | [
"def",
"_read",
"(",
"self",
",",
"limit",
"=",
"1000",
")",
":",
"# It's important to know that it may return no responses or multiple",
"# responses. It depends on how the buffering works out. First, read from",
"# the socket",
"for",
"sock",
"in",
"self",
".",
"socket",
"(",... | Return all the responses read | [
"Return",
"all",
"the",
"responses",
"read"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L330-L371 |
dlecocq/nsq-py | nsq/connection.py | Connection.read | def read(self):
'''Responses from an established socket'''
responses = self._read()
# Determine the number of messages in here and decrement our ready
# count appropriately
self.ready -= sum(
map(int, (r.frame_type == Message.FRAME_TYPE for r in responses)))
r... | python | def read(self):
'''Responses from an established socket'''
responses = self._read()
# Determine the number of messages in here and decrement our ready
# count appropriately
self.ready -= sum(
map(int, (r.frame_type == Message.FRAME_TYPE for r in responses)))
r... | [
"def",
"read",
"(",
"self",
")",
":",
"responses",
"=",
"self",
".",
"_read",
"(",
")",
"# Determine the number of messages in here and decrement our ready",
"# count appropriately",
"self",
".",
"ready",
"-=",
"sum",
"(",
"map",
"(",
"int",
",",
"(",
"r",
".",
... | Responses from an established socket | [
"Responses",
"from",
"an",
"established",
"socket"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/connection.py#L373-L380 |
dlecocq/nsq-py | nsq/client.py | Client.discover | def discover(self, topic):
'''Run the discovery mechanism'''
logger.info('Discovering on topic %s', topic)
producers = []
for lookupd in self._lookupd:
logger.info('Discovering on %s', lookupd)
try:
# Find all the current producers on this instance... | python | def discover(self, topic):
'''Run the discovery mechanism'''
logger.info('Discovering on topic %s', topic)
producers = []
for lookupd in self._lookupd:
logger.info('Discovering on %s', lookupd)
try:
# Find all the current producers on this instance... | [
"def",
"discover",
"(",
"self",
",",
"topic",
")",
":",
"logger",
".",
"info",
"(",
"'Discovering on topic %s'",
",",
"topic",
")",
"producers",
"=",
"[",
"]",
"for",
"lookupd",
"in",
"self",
".",
"_lookupd",
":",
"logger",
".",
"info",
"(",
"'Discoverin... | Run the discovery mechanism | [
"Run",
"the",
"discovery",
"mechanism"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L59-L89 |
dlecocq/nsq-py | nsq/client.py | Client.check_connections | def check_connections(self):
'''Connect to all the appropriate instances'''
logger.info('Checking connections')
if self._lookupd:
self.discover(self._topic)
# Make sure we're connected to all the prescribed hosts
for hostspec in self._nsqd_tcp_addresses:
... | python | def check_connections(self):
'''Connect to all the appropriate instances'''
logger.info('Checking connections')
if self._lookupd:
self.discover(self._topic)
# Make sure we're connected to all the prescribed hosts
for hostspec in self._nsqd_tcp_addresses:
... | [
"def",
"check_connections",
"(",
"self",
")",
":",
"logger",
".",
"info",
"(",
"'Checking connections'",
")",
"if",
"self",
".",
"_lookupd",
":",
"self",
".",
"discover",
"(",
"self",
".",
"_topic",
")",
"# Make sure we're connected to all the prescribed hosts",
"... | Connect to all the appropriate instances | [
"Connect",
"to",
"all",
"the",
"appropriate",
"instances"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L91-L125 |
dlecocq/nsq-py | nsq/client.py | Client.connection_checker | def connection_checker(self):
'''Run periodic reconnection checks'''
thread = ConnectionChecker(self)
logger.info('Starting connection-checker thread')
thread.start()
try:
yield thread
finally:
logger.info('Stopping connection-checker')
... | python | def connection_checker(self):
'''Run periodic reconnection checks'''
thread = ConnectionChecker(self)
logger.info('Starting connection-checker thread')
thread.start()
try:
yield thread
finally:
logger.info('Stopping connection-checker')
... | [
"def",
"connection_checker",
"(",
"self",
")",
":",
"thread",
"=",
"ConnectionChecker",
"(",
"self",
")",
"logger",
".",
"info",
"(",
"'Starting connection-checker thread'",
")",
"thread",
".",
"start",
"(",
")",
"try",
":",
"yield",
"thread",
"finally",
":",
... | Run periodic reconnection checks | [
"Run",
"periodic",
"reconnection",
"checks"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L128-L139 |
dlecocq/nsq-py | nsq/client.py | Client.connect | def connect(self, host, port):
'''Connect to the provided host, port'''
conn = connection.Connection(host, port,
reconnection_backoff=self._reconnection_backoff,
auth_secret=self._auth_secret,
timeout=self._connect_timeout,
**self._identify_options)
... | python | def connect(self, host, port):
'''Connect to the provided host, port'''
conn = connection.Connection(host, port,
reconnection_backoff=self._reconnection_backoff,
auth_secret=self._auth_secret,
timeout=self._connect_timeout,
**self._identify_options)
... | [
"def",
"connect",
"(",
"self",
",",
"host",
",",
"port",
")",
":",
"conn",
"=",
"connection",
".",
"Connection",
"(",
"host",
",",
"port",
",",
"reconnection_backoff",
"=",
"self",
".",
"_reconnection_backoff",
",",
"auth_secret",
"=",
"self",
".",
"_auth_... | Connect to the provided host, port | [
"Connect",
"to",
"the",
"provided",
"host",
"port"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L141-L151 |
dlecocq/nsq-py | nsq/client.py | Client.add | def add(self, connection):
'''Add a connection'''
key = (connection.host, connection.port)
with self._lock:
if key not in self._connections:
self._connections[key] = connection
self.added(connection)
return connection
else:
... | python | def add(self, connection):
'''Add a connection'''
key = (connection.host, connection.port)
with self._lock:
if key not in self._connections:
self._connections[key] = connection
self.added(connection)
return connection
else:
... | [
"def",
"add",
"(",
"self",
",",
"connection",
")",
":",
"key",
"=",
"(",
"connection",
".",
"host",
",",
"connection",
".",
"port",
")",
"with",
"self",
".",
"_lock",
":",
"if",
"key",
"not",
"in",
"self",
".",
"_connections",
":",
"self",
".",
"_c... | Add a connection | [
"Add",
"a",
"connection"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L164-L173 |
dlecocq/nsq-py | nsq/client.py | Client.remove | def remove(self, connection):
'''Remove a connection'''
key = (connection.host, connection.port)
with self._lock:
found = self._connections.pop(key, None)
try:
self.close_connection(found)
except Exception as exc:
logger.warn('Failed to close %... | python | def remove(self, connection):
'''Remove a connection'''
key = (connection.host, connection.port)
with self._lock:
found = self._connections.pop(key, None)
try:
self.close_connection(found)
except Exception as exc:
logger.warn('Failed to close %... | [
"def",
"remove",
"(",
"self",
",",
"connection",
")",
":",
"key",
"=",
"(",
"connection",
".",
"host",
",",
"connection",
".",
"port",
")",
"with",
"self",
".",
"_lock",
":",
"found",
"=",
"self",
".",
"_connections",
".",
"pop",
"(",
"key",
",",
"... | Remove a connection | [
"Remove",
"a",
"connection"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L175-L184 |
dlecocq/nsq-py | nsq/client.py | Client.read | def read(self):
'''Read from any of the connections that need it'''
# We'll check all living connections
connections = [c for c in self.connections() if c.alive()]
if not connections:
# If there are no connections, obviously we return no messages, but
# we should... | python | def read(self):
'''Read from any of the connections that need it'''
# We'll check all living connections
connections = [c for c in self.connections() if c.alive()]
if not connections:
# If there are no connections, obviously we return no messages, but
# we should... | [
"def",
"read",
"(",
"self",
")",
":",
"# We'll check all living connections",
"connections",
"=",
"[",
"c",
"for",
"c",
"in",
"self",
".",
"connections",
"(",
")",
"if",
"c",
".",
"alive",
"(",
")",
"]",
"if",
"not",
"connections",
":",
"# If there are no ... | Read from any of the connections that need it | [
"Read",
"from",
"any",
"of",
"the",
"connections",
"that",
"need",
"it"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L194-L270 |
dlecocq/nsq-py | nsq/client.py | Client.random_connection | def random_connection(self):
'''Pick a random living connection'''
# While at the moment there's no need for this to be a context manager
# per se, I would like to use that interface since I anticipate
# adding some wrapping around it at some point.
yield random.choice(
... | python | def random_connection(self):
'''Pick a random living connection'''
# While at the moment there's no need for this to be a context manager
# per se, I would like to use that interface since I anticipate
# adding some wrapping around it at some point.
yield random.choice(
... | [
"def",
"random_connection",
"(",
"self",
")",
":",
"# While at the moment there's no need for this to be a context manager",
"# per se, I would like to use that interface since I anticipate",
"# adding some wrapping around it at some point.",
"yield",
"random",
".",
"choice",
"(",
"[",
... | Pick a random living connection | [
"Pick",
"a",
"random",
"living",
"connection"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L273-L279 |
dlecocq/nsq-py | nsq/client.py | Client.wait_response | def wait_response(self):
'''Wait for a response'''
responses = self.read()
while not responses:
responses = self.read()
return responses | python | def wait_response(self):
'''Wait for a response'''
responses = self.read()
while not responses:
responses = self.read()
return responses | [
"def",
"wait_response",
"(",
"self",
")",
":",
"responses",
"=",
"self",
".",
"read",
"(",
")",
"while",
"not",
"responses",
":",
"responses",
"=",
"self",
".",
"read",
"(",
")",
"return",
"responses"
] | Wait for a response | [
"Wait",
"for",
"a",
"response"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L281-L286 |
dlecocq/nsq-py | nsq/client.py | Client.pub | def pub(self, topic, message):
'''Publish the provided message to the provided topic'''
with self.random_connection() as client:
client.pub(topic, message)
return self.wait_response() | python | def pub(self, topic, message):
'''Publish the provided message to the provided topic'''
with self.random_connection() as client:
client.pub(topic, message)
return self.wait_response() | [
"def",
"pub",
"(",
"self",
",",
"topic",
",",
"message",
")",
":",
"with",
"self",
".",
"random_connection",
"(",
")",
"as",
"client",
":",
"client",
".",
"pub",
"(",
"topic",
",",
"message",
")",
"return",
"self",
".",
"wait_response",
"(",
")"
] | Publish the provided message to the provided topic | [
"Publish",
"the",
"provided",
"message",
"to",
"the",
"provided",
"topic"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L293-L297 |
dlecocq/nsq-py | nsq/client.py | Client.mpub | def mpub(self, topic, *messages):
'''Publish messages to a topic'''
with self.random_connection() as client:
client.mpub(topic, *messages)
return self.wait_response() | python | def mpub(self, topic, *messages):
'''Publish messages to a topic'''
with self.random_connection() as client:
client.mpub(topic, *messages)
return self.wait_response() | [
"def",
"mpub",
"(",
"self",
",",
"topic",
",",
"*",
"messages",
")",
":",
"with",
"self",
".",
"random_connection",
"(",
")",
"as",
"client",
":",
"client",
".",
"mpub",
"(",
"topic",
",",
"*",
"messages",
")",
"return",
"self",
".",
"wait_response",
... | Publish messages to a topic | [
"Publish",
"messages",
"to",
"a",
"topic"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/client.py#L299-L303 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.create_socket | def create_socket(self):
"""Create a socket for the daemon, depending on the directory location.
Args:
config_dir (str): The absolute path to the config directory used by the daemon.
Returns:
socket.socket: The daemon socket. Clients connect to this socket.
"""... | python | def create_socket(self):
"""Create a socket for the daemon, depending on the directory location.
Args:
config_dir (str): The absolute path to the config directory used by the daemon.
Returns:
socket.socket: The daemon socket. Clients connect to this socket.
"""... | [
"def",
"create_socket",
"(",
"self",
")",
":",
"socket_path",
"=",
"os",
".",
"path",
".",
"join",
"(",
"self",
".",
"config_dir",
",",
"'pueue.sock'",
")",
"# Create Socket and exit with 1, if socket can't be created",
"try",
":",
"if",
"os",
".",
"path",
".",
... | Create a socket for the daemon, depending on the directory location.
Args:
config_dir (str): The absolute path to the config directory used by the daemon.
Returns:
socket.socket: The daemon socket. Clients connect to this socket. | [
"Create",
"a",
"socket",
"for",
"the",
"daemon",
"depending",
"on",
"the",
"directory",
"location",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L82-L109 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.initialize_directories | def initialize_directories(self, root_dir):
"""Create all directories needed for logs and configs."""
if not root_dir:
root_dir = os.path.expanduser('~')
# Create config directory, if it doesn't exist
self.config_dir = os.path.join(root_dir, '.config/pueue')
if not o... | python | def initialize_directories(self, root_dir):
"""Create all directories needed for logs and configs."""
if not root_dir:
root_dir = os.path.expanduser('~')
# Create config directory, if it doesn't exist
self.config_dir = os.path.join(root_dir, '.config/pueue')
if not o... | [
"def",
"initialize_directories",
"(",
"self",
",",
"root_dir",
")",
":",
"if",
"not",
"root_dir",
":",
"root_dir",
"=",
"os",
".",
"path",
".",
"expanduser",
"(",
"'~'",
")",
"# Create config directory, if it doesn't exist",
"self",
".",
"config_dir",
"=",
"os",... | Create all directories needed for logs and configs. | [
"Create",
"all",
"directories",
"needed",
"for",
"logs",
"and",
"configs",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L111-L119 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.respond_client | def respond_client(self, answer, socket):
"""Send an answer to the client."""
response = pickle.dumps(answer, -1)
socket.sendall(response)
self.read_list.remove(socket)
socket.close() | python | def respond_client(self, answer, socket):
"""Send an answer to the client."""
response = pickle.dumps(answer, -1)
socket.sendall(response)
self.read_list.remove(socket)
socket.close() | [
"def",
"respond_client",
"(",
"self",
",",
"answer",
",",
"socket",
")",
":",
"response",
"=",
"pickle",
".",
"dumps",
"(",
"answer",
",",
"-",
"1",
")",
"socket",
".",
"sendall",
"(",
"response",
")",
"self",
".",
"read_list",
".",
"remove",
"(",
"s... | Send an answer to the client. | [
"Send",
"an",
"answer",
"to",
"the",
"client",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L121-L126 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.read_config | def read_config(self):
"""Read a previous configuration file or create a new with default values."""
config_file = os.path.join(self.config_dir, 'pueue.ini')
self.config = configparser.ConfigParser()
# Try to get configuration file and return it
# If this doesn't work, a new defa... | python | def read_config(self):
"""Read a previous configuration file or create a new with default values."""
config_file = os.path.join(self.config_dir, 'pueue.ini')
self.config = configparser.ConfigParser()
# Try to get configuration file and return it
# If this doesn't work, a new defa... | [
"def",
"read_config",
"(",
"self",
")",
":",
"config_file",
"=",
"os",
".",
"path",
".",
"join",
"(",
"self",
".",
"config_dir",
",",
"'pueue.ini'",
")",
"self",
".",
"config",
"=",
"configparser",
".",
"ConfigParser",
"(",
")",
"# Try to get configuration f... | Read a previous configuration file or create a new with default values. | [
"Read",
"a",
"previous",
"configuration",
"file",
"or",
"create",
"a",
"new",
"with",
"default",
"values",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L128-L150 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.write_config | def write_config(self):
"""Write the current configuration to the config file."""
config_file = os.path.join(self.config_dir, 'pueue.ini')
with open(config_file, 'w') as file_descriptor:
self.config.write(file_descriptor) | python | def write_config(self):
"""Write the current configuration to the config file."""
config_file = os.path.join(self.config_dir, 'pueue.ini')
with open(config_file, 'w') as file_descriptor:
self.config.write(file_descriptor) | [
"def",
"write_config",
"(",
"self",
")",
":",
"config_file",
"=",
"os",
".",
"path",
".",
"join",
"(",
"self",
".",
"config_dir",
",",
"'pueue.ini'",
")",
"with",
"open",
"(",
"config_file",
",",
"'w'",
")",
"as",
"file_descriptor",
":",
"self",
".",
"... | Write the current configuration to the config file. | [
"Write",
"the",
"current",
"configuration",
"to",
"the",
"config",
"file",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L152-L156 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.main | def main(self):
"""The main function containing the loop for communication and process management.
This function is the heart of the daemon.
It is responsible for:
- Client communication
- Executing commands from clients
- Update the status of processes by polling the Pr... | python | def main(self):
"""The main function containing the loop for communication and process management.
This function is the heart of the daemon.
It is responsible for:
- Client communication
- Executing commands from clients
- Update the status of processes by polling the Pr... | [
"def",
"main",
"(",
"self",
")",
":",
"try",
":",
"while",
"self",
".",
"running",
":",
"# Trigger the processing of finished processes by the ProcessHandler.",
"# If there are finished processes we write the log to keep it up to date.",
"if",
"self",
".",
"process_handler",
".... | The main function containing the loop for communication and process management.
This function is the heart of the daemon.
It is responsible for:
- Client communication
- Executing commands from clients
- Update the status of processes by polling the ProcessHandler.
- Log... | [
"The",
"main",
"function",
"containing",
"the",
"loop",
"for",
"communication",
"and",
"process",
"management",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L158-L273 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.stop_daemon | def stop_daemon(self, payload=None):
"""Kill current processes and initiate daemon shutdown.
The daemon will shut down after a last check on all killed processes.
"""
kill_signal = signals['9']
self.process_handler.kill_all(kill_signal, True)
self.running = False
... | python | def stop_daemon(self, payload=None):
"""Kill current processes and initiate daemon shutdown.
The daemon will shut down after a last check on all killed processes.
"""
kill_signal = signals['9']
self.process_handler.kill_all(kill_signal, True)
self.running = False
... | [
"def",
"stop_daemon",
"(",
"self",
",",
"payload",
"=",
"None",
")",
":",
"kill_signal",
"=",
"signals",
"[",
"'9'",
"]",
"self",
".",
"process_handler",
".",
"kill_all",
"(",
"kill_signal",
",",
"True",
")",
"self",
".",
"running",
"=",
"False",
"return... | Kill current processes and initiate daemon shutdown.
The daemon will shut down after a last check on all killed processes. | [
"Kill",
"current",
"processes",
"and",
"initiate",
"daemon",
"shutdown",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L275-L285 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.set_config | def set_config(self, payload):
"""Update the current config depending on the payload and save it."""
self.config['default'][payload['option']] = str(payload['value'])
if payload['option'] == 'maxProcesses':
self.process_handler.set_max(payload['value'])
if payload['option'] ... | python | def set_config(self, payload):
"""Update the current config depending on the payload and save it."""
self.config['default'][payload['option']] = str(payload['value'])
if payload['option'] == 'maxProcesses':
self.process_handler.set_max(payload['value'])
if payload['option'] ... | [
"def",
"set_config",
"(",
"self",
",",
"payload",
")",
":",
"self",
".",
"config",
"[",
"'default'",
"]",
"[",
"payload",
"[",
"'option'",
"]",
"]",
"=",
"str",
"(",
"payload",
"[",
"'value'",
"]",
")",
"if",
"payload",
"[",
"'option'",
"]",
"==",
... | Update the current config depending on the payload and save it. | [
"Update",
"the",
"current",
"config",
"depending",
"on",
"the",
"payload",
"and",
"save",
"it",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L287-L306 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.pipe_to_process | def pipe_to_process(self, payload):
"""Send something to stdin of a specific process."""
message = payload['input']
key = payload['key']
if not self.process_handler.is_running(key):
return {'message': 'No running process for this key',
'status': 'error'}
... | python | def pipe_to_process(self, payload):
"""Send something to stdin of a specific process."""
message = payload['input']
key = payload['key']
if not self.process_handler.is_running(key):
return {'message': 'No running process for this key',
'status': 'error'}
... | [
"def",
"pipe_to_process",
"(",
"self",
",",
"payload",
")",
":",
"message",
"=",
"payload",
"[",
"'input'",
"]",
"key",
"=",
"payload",
"[",
"'key'",
"]",
"if",
"not",
"self",
".",
"process_handler",
".",
"is_running",
"(",
"key",
")",
":",
"return",
"... | Send something to stdin of a specific process. | [
"Send",
"something",
"to",
"stdin",
"of",
"a",
"specific",
"process",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L308-L317 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.send_status | def send_status(self, payload):
"""Send the daemon status and the current queue for displaying."""
answer = {}
data = []
# Get daemon status
if self.paused:
answer['status'] = 'paused'
else:
answer['status'] = 'running'
# Add current queue... | python | def send_status(self, payload):
"""Send the daemon status and the current queue for displaying."""
answer = {}
data = []
# Get daemon status
if self.paused:
answer['status'] = 'paused'
else:
answer['status'] = 'running'
# Add current queue... | [
"def",
"send_status",
"(",
"self",
",",
"payload",
")",
":",
"answer",
"=",
"{",
"}",
"data",
"=",
"[",
"]",
"# Get daemon status",
"if",
"self",
".",
"paused",
":",
"answer",
"[",
"'status'",
"]",
"=",
"'paused'",
"else",
":",
"answer",
"[",
"'status'... | Send the daemon status and the current queue for displaying. | [
"Send",
"the",
"daemon",
"status",
"and",
"the",
"current",
"queue",
"for",
"displaying",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L319-L344 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.reset_everything | def reset_everything(self, payload):
"""Kill all processes, delete the queue and clean everything up."""
kill_signal = signals['9']
self.process_handler.kill_all(kill_signal, True)
self.process_handler.wait_for_finish()
self.reset = True
answer = {'message': 'Resetting c... | python | def reset_everything(self, payload):
"""Kill all processes, delete the queue and clean everything up."""
kill_signal = signals['9']
self.process_handler.kill_all(kill_signal, True)
self.process_handler.wait_for_finish()
self.reset = True
answer = {'message': 'Resetting c... | [
"def",
"reset_everything",
"(",
"self",
",",
"payload",
")",
":",
"kill_signal",
"=",
"signals",
"[",
"'9'",
"]",
"self",
".",
"process_handler",
".",
"kill_all",
"(",
"kill_signal",
",",
"True",
")",
"self",
".",
"process_handler",
".",
"wait_for_finish",
"... | Kill all processes, delete the queue and clean everything up. | [
"Kill",
"all",
"processes",
"delete",
"the",
"queue",
"and",
"clean",
"everything",
"up",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L346-L354 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.clear | def clear(self, payload):
"""Clear queue from any `done` or `failed` entries.
The log will be rotated once. Otherwise we would loose all logs from
thoes finished processes.
"""
self.logger.rotate(self.queue)
self.queue.clear()
self.logger.write(self.queue)
... | python | def clear(self, payload):
"""Clear queue from any `done` or `failed` entries.
The log will be rotated once. Otherwise we would loose all logs from
thoes finished processes.
"""
self.logger.rotate(self.queue)
self.queue.clear()
self.logger.write(self.queue)
... | [
"def",
"clear",
"(",
"self",
",",
"payload",
")",
":",
"self",
".",
"logger",
".",
"rotate",
"(",
"self",
".",
"queue",
")",
"self",
".",
"queue",
".",
"clear",
"(",
")",
"self",
".",
"logger",
".",
"write",
"(",
"self",
".",
"queue",
")",
"answe... | Clear queue from any `done` or `failed` entries.
The log will be rotated once. Otherwise we would loose all logs from
thoes finished processes. | [
"Clear",
"queue",
"from",
"any",
"done",
"or",
"failed",
"entries",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L356-L367 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.start | def start(self, payload):
"""Start the daemon and all processes or only specific processes."""
# Start specific processes, if `keys` is given in the payload
if payload.get('keys'):
succeeded = []
failed = []
for key in payload.get('keys'):
succ... | python | def start(self, payload):
"""Start the daemon and all processes or only specific processes."""
# Start specific processes, if `keys` is given in the payload
if payload.get('keys'):
succeeded = []
failed = []
for key in payload.get('keys'):
succ... | [
"def",
"start",
"(",
"self",
",",
"payload",
")",
":",
"# Start specific processes, if `keys` is given in the payload",
"if",
"payload",
".",
"get",
"(",
"'keys'",
")",
":",
"succeeded",
"=",
"[",
"]",
"failed",
"=",
"[",
"]",
"for",
"key",
"in",
"payload",
... | Start the daemon and all processes or only specific processes. | [
"Start",
"the",
"daemon",
"and",
"all",
"processes",
"or",
"only",
"specific",
"processes",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L369-L402 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.pause | def pause(self, payload):
"""Start the daemon and all processes or only specific processes."""
# Pause specific processes, if `keys` is given in the payload
if payload.get('keys'):
succeeded = []
failed = []
for key in payload.get('keys'):
succ... | python | def pause(self, payload):
"""Start the daemon and all processes or only specific processes."""
# Pause specific processes, if `keys` is given in the payload
if payload.get('keys'):
succeeded = []
failed = []
for key in payload.get('keys'):
succ... | [
"def",
"pause",
"(",
"self",
",",
"payload",
")",
":",
"# Pause specific processes, if `keys` is given in the payload",
"if",
"payload",
".",
"get",
"(",
"'keys'",
")",
":",
"succeeded",
"=",
"[",
"]",
"failed",
"=",
"[",
"]",
"for",
"key",
"in",
"payload",
... | Start the daemon and all processes or only specific processes. | [
"Start",
"the",
"daemon",
"and",
"all",
"processes",
"or",
"only",
"specific",
"processes",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L404-L443 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.edit_command | def edit_command(self, payload):
"""Edit the command of a specific entry."""
key = payload['key']
command = payload['command']
if self.queue[key]:
if self.queue[key]['status'] in ['queued', 'stashed']:
self.queue[key]['command'] = command
answe... | python | def edit_command(self, payload):
"""Edit the command of a specific entry."""
key = payload['key']
command = payload['command']
if self.queue[key]:
if self.queue[key]['status'] in ['queued', 'stashed']:
self.queue[key]['command'] = command
answe... | [
"def",
"edit_command",
"(",
"self",
",",
"payload",
")",
":",
"key",
"=",
"payload",
"[",
"'key'",
"]",
"command",
"=",
"payload",
"[",
"'command'",
"]",
"if",
"self",
".",
"queue",
"[",
"key",
"]",
":",
"if",
"self",
".",
"queue",
"[",
"key",
"]",... | Edit the command of a specific entry. | [
"Edit",
"the",
"command",
"of",
"a",
"specific",
"entry",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L445-L460 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.stash | def stash(self, payload):
"""Stash the specified processes."""
succeeded = []
failed = []
for key in payload['keys']:
if self.queue.get(key) is not None:
if self.queue[key]['status'] == 'queued':
self.queue[key]['status'] = 'stashed'
... | python | def stash(self, payload):
"""Stash the specified processes."""
succeeded = []
failed = []
for key in payload['keys']:
if self.queue.get(key) is not None:
if self.queue[key]['status'] == 'queued':
self.queue[key]['status'] = 'stashed'
... | [
"def",
"stash",
"(",
"self",
",",
"payload",
")",
":",
"succeeded",
"=",
"[",
"]",
"failed",
"=",
"[",
"]",
"for",
"key",
"in",
"payload",
"[",
"'keys'",
"]",
":",
"if",
"self",
".",
"queue",
".",
"get",
"(",
"key",
")",
"is",
"not",
"None",
":... | Stash the specified processes. | [
"Stash",
"the",
"specified",
"processes",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L462-L486 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.kill_process | def kill_process(self, payload):
"""Pause the daemon and kill all processes or kill a specific process."""
# Kill specific processes, if `keys` is given in the payload
kill_signal = signals[payload['signal'].lower()]
kill_shell = payload.get('all', False)
if payload.get('keys'):
... | python | def kill_process(self, payload):
"""Pause the daemon and kill all processes or kill a specific process."""
# Kill specific processes, if `keys` is given in the payload
kill_signal = signals[payload['signal'].lower()]
kill_shell = payload.get('all', False)
if payload.get('keys'):
... | [
"def",
"kill_process",
"(",
"self",
",",
"payload",
")",
":",
"# Kill specific processes, if `keys` is given in the payload",
"kill_signal",
"=",
"signals",
"[",
"payload",
"[",
"'signal'",
"]",
".",
"lower",
"(",
")",
"]",
"kill_shell",
"=",
"payload",
".",
"get"... | Pause the daemon and kill all processes or kill a specific process. | [
"Pause",
"the",
"daemon",
"and",
"kill",
"all",
"processes",
"or",
"kill",
"a",
"specific",
"process",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L514-L548 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.remove | def remove(self, payload):
"""Remove specified entries from the queue."""
succeeded = []
failed = []
for key in payload['keys']:
running = self.process_handler.is_running(key)
if not running:
removed = self.queue.remove(key)
if remo... | python | def remove(self, payload):
"""Remove specified entries from the queue."""
succeeded = []
failed = []
for key in payload['keys']:
running = self.process_handler.is_running(key)
if not running:
removed = self.queue.remove(key)
if remo... | [
"def",
"remove",
"(",
"self",
",",
"payload",
")",
":",
"succeeded",
"=",
"[",
"]",
"failed",
"=",
"[",
"]",
"for",
"key",
"in",
"payload",
"[",
"'keys'",
"]",
":",
"running",
"=",
"self",
".",
"process_handler",
".",
"is_running",
"(",
"key",
")",
... | Remove specified entries from the queue. | [
"Remove",
"specified",
"entries",
"from",
"the",
"queue",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L555-L580 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.switch | def switch(self, payload):
"""Switch the two specified entry positions in the queue."""
first = payload['first']
second = payload['second']
running = self.process_handler.is_running(first) or self.process_handler.is_running(second)
if running:
answer = {
... | python | def switch(self, payload):
"""Switch the two specified entry positions in the queue."""
first = payload['first']
second = payload['second']
running = self.process_handler.is_running(first) or self.process_handler.is_running(second)
if running:
answer = {
... | [
"def",
"switch",
"(",
"self",
",",
"payload",
")",
":",
"first",
"=",
"payload",
"[",
"'first'",
"]",
"second",
"=",
"payload",
"[",
"'second'",
"]",
"running",
"=",
"self",
".",
"process_handler",
".",
"is_running",
"(",
"first",
")",
"or",
"self",
".... | Switch the two specified entry positions in the queue. | [
"Switch",
"the",
"two",
"specified",
"entry",
"positions",
"in",
"the",
"queue",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L582-L604 |
Nukesor/pueue | pueue/daemon/daemon.py | Daemon.restart | def restart(self, payload):
"""Restart the specified entries."""
succeeded = []
failed = []
for key in payload['keys']:
restarted = self.queue.restart(key)
if restarted:
succeeded.append(str(key))
else:
failed.append(str... | python | def restart(self, payload):
"""Restart the specified entries."""
succeeded = []
failed = []
for key in payload['keys']:
restarted = self.queue.restart(key)
if restarted:
succeeded.append(str(key))
else:
failed.append(str... | [
"def",
"restart",
"(",
"self",
",",
"payload",
")",
":",
"succeeded",
"=",
"[",
"]",
"failed",
"=",
"[",
"]",
"for",
"key",
"in",
"payload",
"[",
"'keys'",
"]",
":",
"restarted",
"=",
"self",
".",
"queue",
".",
"restart",
"(",
"key",
")",
"if",
"... | Restart the specified entries. | [
"Restart",
"the",
"specified",
"entries",
"."
] | train | https://github.com/Nukesor/pueue/blob/f1d276360454d4dd2738658a13df1e20caa4b926/pueue/daemon/daemon.py#L606-L626 |
dlecocq/nsq-py | nsq/sockets/base.py | SocketWrapper.sendall | def sendall(self, data, flags=0):
'''Same as socket.sendall'''
count = len(data)
while count:
sent = self.send(data, flags)
# This could probably be a buffer object
data = data[sent:]
count -= sent | python | def sendall(self, data, flags=0):
'''Same as socket.sendall'''
count = len(data)
while count:
sent = self.send(data, flags)
# This could probably be a buffer object
data = data[sent:]
count -= sent | [
"def",
"sendall",
"(",
"self",
",",
"data",
",",
"flags",
"=",
"0",
")",
":",
"count",
"=",
"len",
"(",
"data",
")",
"while",
"count",
":",
"sent",
"=",
"self",
".",
"send",
"(",
"data",
",",
"flags",
")",
"# This could probably be a buffer object",
"d... | Same as socket.sendall | [
"Same",
"as",
"socket",
".",
"sendall"
] | train | https://github.com/dlecocq/nsq-py/blob/3ecacf6ab7719d38031179277113d875554a0c16/nsq/sockets/base.py#L31-L38 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_ls | def do_ls(client, args):
"""List directory"""
for item in client.get_folder_contents_iter(args.uri):
# privacy flag
if item['privacy'] == 'public':
item['pf'] = '@'
else:
item['pf'] = '-'
if isinstance(item, Folder):
# type flag
i... | python | def do_ls(client, args):
"""List directory"""
for item in client.get_folder_contents_iter(args.uri):
# privacy flag
if item['privacy'] == 'public':
item['pf'] = '@'
else:
item['pf'] = '-'
if isinstance(item, Folder):
# type flag
i... | [
"def",
"do_ls",
"(",
"client",
",",
"args",
")",
":",
"for",
"item",
"in",
"client",
".",
"get_folder_contents_iter",
"(",
"args",
".",
"uri",
")",
":",
"# privacy flag",
"if",
"item",
"[",
"'privacy'",
"]",
"==",
"'public'",
":",
"item",
"[",
"'pf'",
... | List directory | [
"List",
"directory"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L28-L50 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_file_upload | def do_file_upload(client, args):
"""Upload files"""
# Sanity check
if len(args.paths) > 1:
# destination must be a directory
try:
resource = client.get_resource_by_uri(args.dest_uri)
except ResourceNotFoundError:
resource = None
if resource and not ... | python | def do_file_upload(client, args):
"""Upload files"""
# Sanity check
if len(args.paths) > 1:
# destination must be a directory
try:
resource = client.get_resource_by_uri(args.dest_uri)
except ResourceNotFoundError:
resource = None
if resource and not ... | [
"def",
"do_file_upload",
"(",
"client",
",",
"args",
")",
":",
"# Sanity check",
"if",
"len",
"(",
"args",
".",
"paths",
")",
">",
"1",
":",
"# destination must be a directory",
"try",
":",
"resource",
"=",
"client",
".",
"get_resource_by_uri",
"(",
"args",
... | Upload files | [
"Upload",
"files"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L53-L76 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_file_download | def do_file_download(client, args):
"""Download file"""
# Sanity check
if not os.path.isdir(args.dest_path) and not args.dest_path.endswith('/'):
print("file-download: "
"target '{}' is not a directory".format(args.dest_path))
if not os.path.exists(args.dest_path):
... | python | def do_file_download(client, args):
"""Download file"""
# Sanity check
if not os.path.isdir(args.dest_path) and not args.dest_path.endswith('/'):
print("file-download: "
"target '{}' is not a directory".format(args.dest_path))
if not os.path.exists(args.dest_path):
... | [
"def",
"do_file_download",
"(",
"client",
",",
"args",
")",
":",
"# Sanity check",
"if",
"not",
"os",
".",
"path",
".",
"isdir",
"(",
"args",
".",
"dest_path",
")",
"and",
"not",
"args",
".",
"dest_path",
".",
"endswith",
"(",
"'/'",
")",
":",
"print",... | Download file | [
"Download",
"file"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L79-L95 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_file_show | def do_file_show(client, args):
"""Output file contents to stdout"""
for src_uri in args.uris:
client.download_file(src_uri, sys.stdout.buffer)
return True | python | def do_file_show(client, args):
"""Output file contents to stdout"""
for src_uri in args.uris:
client.download_file(src_uri, sys.stdout.buffer)
return True | [
"def",
"do_file_show",
"(",
"client",
",",
"args",
")",
":",
"for",
"src_uri",
"in",
"args",
".",
"uris",
":",
"client",
".",
"download_file",
"(",
"src_uri",
",",
"sys",
".",
"stdout",
".",
"buffer",
")",
"return",
"True"
] | Output file contents to stdout | [
"Output",
"file",
"contents",
"to",
"stdout"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L98-L103 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_folder_create | def do_folder_create(client, args):
"""Create directory"""
for folder_uri in args.uris:
client.create_folder(folder_uri, recursive=True)
return True | python | def do_folder_create(client, args):
"""Create directory"""
for folder_uri in args.uris:
client.create_folder(folder_uri, recursive=True)
return True | [
"def",
"do_folder_create",
"(",
"client",
",",
"args",
")",
":",
"for",
"folder_uri",
"in",
"args",
".",
"uris",
":",
"client",
".",
"create_folder",
"(",
"folder_uri",
",",
"recursive",
"=",
"True",
")",
"return",
"True"
] | Create directory | [
"Create",
"directory"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L106-L110 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_resource_delete | def do_resource_delete(client, args):
"""Remove resource"""
for resource_uri in args.uris:
client.delete_resource(resource_uri, purge=args.purge)
print("Deleted {}".format(resource_uri))
return True | python | def do_resource_delete(client, args):
"""Remove resource"""
for resource_uri in args.uris:
client.delete_resource(resource_uri, purge=args.purge)
print("Deleted {}".format(resource_uri))
return True | [
"def",
"do_resource_delete",
"(",
"client",
",",
"args",
")",
":",
"for",
"resource_uri",
"in",
"args",
".",
"uris",
":",
"client",
".",
"delete_resource",
"(",
"resource_uri",
",",
"purge",
"=",
"args",
".",
"purge",
")",
"print",
"(",
"\"Deleted {}\"",
"... | Remove resource | [
"Remove",
"resource"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L113-L118 |
MediaFire/mediafire-python-open-sdk | examples/mediafire-cli.py | do_file_update_metadata | def do_file_update_metadata(client, args):
"""Update file metadata"""
client.update_file_metadata(args.uri, filename=args.filename,
description=args.description, mtime=args.mtime,
privacy=args.privacy)
return True | python | def do_file_update_metadata(client, args):
"""Update file metadata"""
client.update_file_metadata(args.uri, filename=args.filename,
description=args.description, mtime=args.mtime,
privacy=args.privacy)
return True | [
"def",
"do_file_update_metadata",
"(",
"client",
",",
"args",
")",
":",
"client",
".",
"update_file_metadata",
"(",
"args",
".",
"uri",
",",
"filename",
"=",
"args",
".",
"filename",
",",
"description",
"=",
"args",
".",
"description",
",",
"mtime",
"=",
"... | Update file metadata | [
"Update",
"file",
"metadata"
] | train | https://github.com/MediaFire/mediafire-python-open-sdk/blob/8f1f23db1b16f16e026f5c6777aec32d00baa05f/examples/mediafire-cli.py#L121-L126 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.