repo stringlengths 7 55 | path stringlengths 4 127 | func_name stringlengths 1 88 | original_string stringlengths 75 19.8k | language stringclasses 1
value | code stringlengths 75 19.8k | code_tokens list | docstring stringlengths 3 17.3k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 87 242 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
pedrotgn/pyactor | pyactor/context.py | Host.load_transport | def load_transport(self, url):
'''
For remote communication. Sets the communication dispatcher of the host
at the address and port specified.
The scheme must be http if using a XMLRPC dispatcher.
amqp for RabbitMQ communications.
This methos is internal. Automatically c... | python | def load_transport(self, url):
'''
For remote communication. Sets the communication dispatcher of the host
at the address and port specified.
The scheme must be http if using a XMLRPC dispatcher.
amqp for RabbitMQ communications.
This methos is internal. Automatically c... | [
"def",
"load_transport",
"(",
"self",
",",
"url",
")",
":",
"aurl",
"=",
"urlparse",
"(",
"url",
")",
"addrl",
"=",
"aurl",
".",
"netloc",
".",
"split",
"(",
"':'",
")",
"self",
".",
"addr",
"=",
"addrl",
"[",
"0",
"]",
",",
"addrl",
"[",
"1",
... | For remote communication. Sets the communication dispatcher of the host
at the address and port specified.
The scheme must be http if using a XMLRPC dispatcher.
amqp for RabbitMQ communications.
This methos is internal. Automatically called when creating the host.
:param str. ... | [
"For",
"remote",
"communication",
".",
"Sets",
"the",
"communication",
"dispatcher",
"of",
"the",
"host",
"at",
"the",
"address",
"and",
"port",
"specified",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L152-L176 | train |
pedrotgn/pyactor | pyactor/context.py | Host.has_actor | def has_actor(self, aid):
'''
Checks if the given id is used in the host by some actor.
:param str. aid: identifier of the actor to check.
:return: True if the id is used within the host.
'''
url = '%s://%s/%s' % (self.transport, self.host_url.netloc, aid)
return... | python | def has_actor(self, aid):
'''
Checks if the given id is used in the host by some actor.
:param str. aid: identifier of the actor to check.
:return: True if the id is used within the host.
'''
url = '%s://%s/%s' % (self.transport, self.host_url.netloc, aid)
return... | [
"def",
"has_actor",
"(",
"self",
",",
"aid",
")",
":",
"url",
"=",
"'%s://%s/%s'",
"%",
"(",
"self",
".",
"transport",
",",
"self",
".",
"host_url",
".",
"netloc",
",",
"aid",
")",
"return",
"url",
"in",
"self",
".",
"actors",
".",
"keys",
"(",
")"... | Checks if the given id is used in the host by some actor.
:param str. aid: identifier of the actor to check.
:return: True if the id is used within the host. | [
"Checks",
"if",
"the",
"given",
"id",
"is",
"used",
"in",
"the",
"host",
"by",
"some",
"actor",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L235-L243 | train |
pedrotgn/pyactor | pyactor/context.py | Host.stop_actor | def stop_actor(self, aid):
'''
This method removes one actor from the Host, stoping it and deleting
all its references.
:param str. aid: identifier of the actor you want to stop.
'''
url = '%s://%s/%s' % (self.transport, self.host_url.netloc, aid)
if url != self.... | python | def stop_actor(self, aid):
'''
This method removes one actor from the Host, stoping it and deleting
all its references.
:param str. aid: identifier of the actor you want to stop.
'''
url = '%s://%s/%s' % (self.transport, self.host_url.netloc, aid)
if url != self.... | [
"def",
"stop_actor",
"(",
"self",
",",
"aid",
")",
":",
"url",
"=",
"'%s://%s/%s'",
"%",
"(",
"self",
".",
"transport",
",",
"self",
".",
"host_url",
".",
"netloc",
",",
"aid",
")",
"if",
"url",
"!=",
"self",
".",
"url",
":",
"actor",
"=",
"self",
... | This method removes one actor from the Host, stoping it and deleting
all its references.
:param str. aid: identifier of the actor you want to stop. | [
"This",
"method",
"removes",
"one",
"actor",
"from",
"the",
"Host",
"stoping",
"it",
"and",
"deleting",
"all",
"its",
"references",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L304-L317 | train |
pedrotgn/pyactor | pyactor/context.py | Host.lookup_url | def lookup_url(self, url, klass, module=None):
'''
Gets a proxy reference to the actor indicated by the URL in the
parameters. It can be a local reference or a remote direction to
another host.
This method can be called remotely synchronously.
:param srt. url: address t... | python | def lookup_url(self, url, klass, module=None):
'''
Gets a proxy reference to the actor indicated by the URL in the
parameters. It can be a local reference or a remote direction to
another host.
This method can be called remotely synchronously.
:param srt. url: address t... | [
"def",
"lookup_url",
"(",
"self",
",",
"url",
",",
"klass",
",",
"module",
"=",
"None",
")",
":",
"if",
"not",
"self",
".",
"alive",
":",
"raise",
"HostDownError",
"(",
")",
"aurl",
"=",
"urlparse",
"(",
"url",
")",
"if",
"self",
".",
"is_local",
"... | Gets a proxy reference to the actor indicated by the URL in the
parameters. It can be a local reference or a remote direction to
another host.
This method can be called remotely synchronously.
:param srt. url: address that identifies an actor.
:param class klass: the class of t... | [
"Gets",
"a",
"proxy",
"reference",
"to",
"the",
"actor",
"indicated",
"by",
"the",
"URL",
"in",
"the",
"parameters",
".",
"It",
"can",
"be",
"a",
"local",
"reference",
"or",
"a",
"remote",
"direction",
"to",
"another",
"host",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L319-L373 | train |
pedrotgn/pyactor | pyactor/context.py | Host.dumps | def dumps(self, param):
'''
Checks the parameters generating new proxy instances to avoid
query concurrences from shared proxies and creating proxies for
actors from another host.
'''
if isinstance(param, Proxy):
module_name = param.actor.klass.__module__
... | python | def dumps(self, param):
'''
Checks the parameters generating new proxy instances to avoid
query concurrences from shared proxies and creating proxies for
actors from another host.
'''
if isinstance(param, Proxy):
module_name = param.actor.klass.__module__
... | [
"def",
"dumps",
"(",
"self",
",",
"param",
")",
":",
"if",
"isinstance",
"(",
"param",
",",
"Proxy",
")",
":",
"module_name",
"=",
"param",
".",
"actor",
".",
"klass",
".",
"__module__",
"filename",
"=",
"sys",
".",
"modules",
"[",
"module_name",
"]",
... | Checks the parameters generating new proxy instances to avoid
query concurrences from shared proxies and creating proxies for
actors from another host. | [
"Checks",
"the",
"parameters",
"generating",
"new",
"proxy",
"instances",
"to",
"avoid",
"query",
"concurrences",
"from",
"shared",
"proxies",
"and",
"creating",
"proxies",
"for",
"actors",
"from",
"another",
"host",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L419-L440 | train |
pedrotgn/pyactor | pyactor/context.py | Host.loads | def loads(self, param):
'''
Checks the return parameters generating new proxy instances to
avoid query concurrences from shared proxies and creating
proxies for actors from another host.
'''
if isinstance(param, ProxyRef):
try:
return self.look... | python | def loads(self, param):
'''
Checks the return parameters generating new proxy instances to
avoid query concurrences from shared proxies and creating
proxies for actors from another host.
'''
if isinstance(param, ProxyRef):
try:
return self.look... | [
"def",
"loads",
"(",
"self",
",",
"param",
")",
":",
"if",
"isinstance",
"(",
"param",
",",
"ProxyRef",
")",
":",
"try",
":",
"return",
"self",
".",
"lookup_url",
"(",
"param",
".",
"url",
",",
"param",
".",
"klass",
",",
"param",
".",
"module",
")... | Checks the return parameters generating new proxy instances to
avoid query concurrences from shared proxies and creating
proxies for actors from another host. | [
"Checks",
"the",
"return",
"parameters",
"generating",
"new",
"proxy",
"instances",
"to",
"avoid",
"query",
"concurrences",
"from",
"shared",
"proxies",
"and",
"creating",
"proxies",
"for",
"actors",
"from",
"another",
"host",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L442-L465 | train |
pedrotgn/pyactor | pyactor/context.py | Host.new_parallel | def new_parallel(self, function, *params):
'''
Register a new thread executing a parallel method.
'''
# Create a pool if not created (processes or Gevent...)
if self.ppool is None:
if core_type == 'thread':
from multiprocessing.pool import ThreadPool
... | python | def new_parallel(self, function, *params):
'''
Register a new thread executing a parallel method.
'''
# Create a pool if not created (processes or Gevent...)
if self.ppool is None:
if core_type == 'thread':
from multiprocessing.pool import ThreadPool
... | [
"def",
"new_parallel",
"(",
"self",
",",
"function",
",",
"*",
"params",
")",
":",
"# Create a pool if not created (processes or Gevent...)",
"if",
"self",
".",
"ppool",
"is",
"None",
":",
"if",
"core_type",
"==",
"'thread'",
":",
"from",
"multiprocessing",
".",
... | Register a new thread executing a parallel method. | [
"Register",
"a",
"new",
"thread",
"executing",
"a",
"parallel",
"method",
"."
] | 24d98d134dd4228f2ba38e83611e9c3f50ec2fd4 | https://github.com/pedrotgn/pyactor/blob/24d98d134dd4228f2ba38e83611e9c3f50ec2fd4/pyactor/context.py#L467-L480 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpSession.write_to_local | def write_to_local(self, filepath_from, filepath_to, mtime_dt=None):
"""Open a remote file and write it locally."""
self.__log.debug("Writing R[%s] -> L[%s]." % (filepath_from,
filepath_to))
with SftpFile(self, filepath_from, 'r') as sf_fr... | python | def write_to_local(self, filepath_from, filepath_to, mtime_dt=None):
"""Open a remote file and write it locally."""
self.__log.debug("Writing R[%s] -> L[%s]." % (filepath_from,
filepath_to))
with SftpFile(self, filepath_from, 'r') as sf_fr... | [
"def",
"write_to_local",
"(",
"self",
",",
"filepath_from",
",",
"filepath_to",
",",
"mtime_dt",
"=",
"None",
")",
":",
"self",
".",
"__log",
".",
"debug",
"(",
"\"Writing R[%s] -> L[%s].\"",
"%",
"(",
"filepath_from",
",",
"filepath_to",
")",
")",
"with",
"... | Open a remote file and write it locally. | [
"Open",
"a",
"remote",
"file",
"and",
"write",
"it",
"locally",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L570-L589 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpSession.write_to_remote | def write_to_remote(self, filepath_from, filepath_to, mtime_dt=None):
"""Open a local file and write it remotely."""
self.__log.debug("Writing L[%s] -> R[%s]." % (filepath_from,
filepath_to))
with open(filepath_from, 'rb') as file_from:
... | python | def write_to_remote(self, filepath_from, filepath_to, mtime_dt=None):
"""Open a local file and write it remotely."""
self.__log.debug("Writing L[%s] -> R[%s]." % (filepath_from,
filepath_to))
with open(filepath_from, 'rb') as file_from:
... | [
"def",
"write_to_remote",
"(",
"self",
",",
"filepath_from",
",",
"filepath_to",
",",
"mtime_dt",
"=",
"None",
")",
":",
"self",
".",
"__log",
".",
"debug",
"(",
"\"Writing L[%s] -> R[%s].\"",
"%",
"(",
"filepath_from",
",",
"filepath_to",
")",
")",
"with",
... | Open a local file and write it remotely. | [
"Open",
"a",
"local",
"file",
"and",
"write",
"it",
"remotely",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L591-L609 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpFile.open | def open(self):
"""This is the only way to open a file resource."""
self.__sf = _sftp_open(self.__sftp_session_int,
self.__filepath,
self.access_type_int,
self.__create_mode)
if self.access_type_is_... | python | def open(self):
"""This is the only way to open a file resource."""
self.__sf = _sftp_open(self.__sftp_session_int,
self.__filepath,
self.access_type_int,
self.__create_mode)
if self.access_type_is_... | [
"def",
"open",
"(",
"self",
")",
":",
"self",
".",
"__sf",
"=",
"_sftp_open",
"(",
"self",
".",
"__sftp_session_int",
",",
"self",
".",
"__filepath",
",",
"self",
".",
"access_type_int",
",",
"self",
".",
"__create_mode",
")",
"if",
"self",
".",
"access_... | This is the only way to open a file resource. | [
"This",
"is",
"the",
"only",
"way",
"to",
"open",
"a",
"file",
"resource",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L698-L709 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpFileObject.read | def read(self, size=None):
"""Read a length of bytes. Return empty on EOF. If 'size' is omitted,
return whole file.
"""
if size is not None:
return self.__sf.read(size)
block_size = self.__class__.__block_size
b = bytearray()
received_bytes = 0
... | python | def read(self, size=None):
"""Read a length of bytes. Return empty on EOF. If 'size' is omitted,
return whole file.
"""
if size is not None:
return self.__sf.read(size)
block_size = self.__class__.__block_size
b = bytearray()
received_bytes = 0
... | [
"def",
"read",
"(",
"self",
",",
"size",
"=",
"None",
")",
":",
"if",
"size",
"is",
"not",
"None",
":",
"return",
"self",
".",
"__sf",
".",
"read",
"(",
"size",
")",
"block_size",
"=",
"self",
".",
"__class__",
".",
"__block_size",
"b",
"=",
"bytea... | Read a length of bytes. Return empty on EOF. If 'size' is omitted,
return whole file. | [
"Read",
"a",
"length",
"of",
"bytes",
".",
"Return",
"empty",
"on",
"EOF",
".",
"If",
"size",
"is",
"omitted",
"return",
"whole",
"file",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L886-L912 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpFileObject.seek | def seek(self, offset, whence=SEEK_SET):
"""Reposition the file pointer."""
if whence == SEEK_SET:
self.__sf.seek(offset)
elif whence == SEEK_CUR:
self.__sf.seek(self.tell() + offset)
elif whence == SEEK_END:
self.__sf.seek(self.__sf.filesize - offset... | python | def seek(self, offset, whence=SEEK_SET):
"""Reposition the file pointer."""
if whence == SEEK_SET:
self.__sf.seek(offset)
elif whence == SEEK_CUR:
self.__sf.seek(self.tell() + offset)
elif whence == SEEK_END:
self.__sf.seek(self.__sf.filesize - offset... | [
"def",
"seek",
"(",
"self",
",",
"offset",
",",
"whence",
"=",
"SEEK_SET",
")",
":",
"if",
"whence",
"==",
"SEEK_SET",
":",
"self",
".",
"__sf",
".",
"seek",
"(",
"offset",
")",
"elif",
"whence",
"==",
"SEEK_CUR",
":",
"self",
".",
"__sf",
".",
"se... | Reposition the file pointer. | [
"Reposition",
"the",
"file",
"pointer",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L919-L927 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpFileObject.readline | def readline(self, size=None):
"""Read a single line of text with EOF."""
# TODO: Add support for Unicode.
(line, nl) = self.__buffer.read_until_nl(self.__retrieve_data)
if self.__sf.access_type_has_universal_nl and nl is not None:
self.__newlines[nl] = True
return line | python | def readline(self, size=None):
"""Read a single line of text with EOF."""
# TODO: Add support for Unicode.
(line, nl) = self.__buffer.read_until_nl(self.__retrieve_data)
if self.__sf.access_type_has_universal_nl and nl is not None:
self.__newlines[nl] = True
return line | [
"def",
"readline",
"(",
"self",
",",
"size",
"=",
"None",
")",
":",
"# TODO: Add support for Unicode.",
"(",
"line",
",",
"nl",
")",
"=",
"self",
".",
"__buffer",
".",
"read_until_nl",
"(",
"self",
".",
"__retrieve_data",
")",
"if",
"self",
".",
"__sf",
... | Read a single line of text with EOF. | [
"Read",
"a",
"single",
"line",
"of",
"text",
"with",
"EOF",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L960-L969 | train |
dsoprea/PySecure | pysecure/adapters/sftpa.py | SftpFileObject.__retrieve_data | def __retrieve_data(self):
"""Read more data from the file."""
if self.__eof is True:
return b''
logging.debug("Reading another block.")
block = self.read(self.__block_size)
if block == b'':
self.__log.debug("We've encountered the EOF.")
... | python | def __retrieve_data(self):
"""Read more data from the file."""
if self.__eof is True:
return b''
logging.debug("Reading another block.")
block = self.read(self.__block_size)
if block == b'':
self.__log.debug("We've encountered the EOF.")
... | [
"def",
"__retrieve_data",
"(",
"self",
")",
":",
"if",
"self",
".",
"__eof",
"is",
"True",
":",
"return",
"b''",
"logging",
".",
"debug",
"(",
"\"Reading another block.\"",
")",
"block",
"=",
"self",
".",
"read",
"(",
"self",
".",
"__block_size",
")",
"i... | Read more data from the file. | [
"Read",
"more",
"data",
"from",
"the",
"file",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/adapters/sftpa.py#L971-L983 | train |
CI-WATER/gsshapy | gsshapy/modeling/model.py | GSSHAModel.set_mask_from_shapefile | def set_mask_from_shapefile(self, shapefile_path, cell_size):
"""
Adds a mask from a shapefile
"""
# make sure paths are absolute as the working directory changes
shapefile_path = os.path.abspath(shapefile_path)
# ADD MASK
with tmp_chdir(self.project_directory):
... | python | def set_mask_from_shapefile(self, shapefile_path, cell_size):
"""
Adds a mask from a shapefile
"""
# make sure paths are absolute as the working directory changes
shapefile_path = os.path.abspath(shapefile_path)
# ADD MASK
with tmp_chdir(self.project_directory):
... | [
"def",
"set_mask_from_shapefile",
"(",
"self",
",",
"shapefile_path",
",",
"cell_size",
")",
":",
"# make sure paths are absolute as the working directory changes",
"shapefile_path",
"=",
"os",
".",
"path",
".",
"abspath",
"(",
"shapefile_path",
")",
"# ADD MASK",
"with",... | Adds a mask from a shapefile | [
"Adds",
"a",
"mask",
"from",
"a",
"shapefile"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/model.py#L196-L211 | train |
CI-WATER/gsshapy | gsshapy/modeling/model.py | GSSHAModel.set_elevation | def set_elevation(self, elevation_grid_path, mask_shapefile):
"""
Adds elevation file to project
"""
# ADD ELEVATION FILE
ele_file = ElevationGridFile(project_file=self.project_manager,
session=self.db_session)
ele_file.generateFromRas... | python | def set_elevation(self, elevation_grid_path, mask_shapefile):
"""
Adds elevation file to project
"""
# ADD ELEVATION FILE
ele_file = ElevationGridFile(project_file=self.project_manager,
session=self.db_session)
ele_file.generateFromRas... | [
"def",
"set_elevation",
"(",
"self",
",",
"elevation_grid_path",
",",
"mask_shapefile",
")",
":",
"# ADD ELEVATION FILE",
"ele_file",
"=",
"ElevationGridFile",
"(",
"project_file",
"=",
"self",
".",
"project_manager",
",",
"session",
"=",
"self",
".",
"db_session",
... | Adds elevation file to project | [
"Adds",
"elevation",
"file",
"to",
"project"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/model.py#L213-L222 | train |
CI-WATER/gsshapy | gsshapy/modeling/model.py | GSSHAModel.set_outlet | def set_outlet(self, latitude, longitude, outslope):
"""
Adds outlet point to project
"""
self.project_manager.setOutlet(latitude=latitude, longitude=longitude,
outslope=outslope) | python | def set_outlet(self, latitude, longitude, outslope):
"""
Adds outlet point to project
"""
self.project_manager.setOutlet(latitude=latitude, longitude=longitude,
outslope=outslope) | [
"def",
"set_outlet",
"(",
"self",
",",
"latitude",
",",
"longitude",
",",
"outslope",
")",
":",
"self",
".",
"project_manager",
".",
"setOutlet",
"(",
"latitude",
"=",
"latitude",
",",
"longitude",
"=",
"longitude",
",",
"outslope",
"=",
"outslope",
")"
] | Adds outlet point to project | [
"Adds",
"outlet",
"point",
"to",
"project"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/model.py#L224-L229 | train |
CI-WATER/gsshapy | gsshapy/modeling/model.py | GSSHAModel.set_event | def set_event(self,
simulation_start=None,
simulation_duration=None,
simulation_end=None,
rain_intensity=2,
rain_duration=timedelta(seconds=30*60),
event_type='EVENT',
):
"""
Init... | python | def set_event(self,
simulation_start=None,
simulation_duration=None,
simulation_end=None,
rain_intensity=2,
rain_duration=timedelta(seconds=30*60),
event_type='EVENT',
):
"""
Init... | [
"def",
"set_event",
"(",
"self",
",",
"simulation_start",
"=",
"None",
",",
"simulation_duration",
"=",
"None",
",",
"simulation_end",
"=",
"None",
",",
"rain_intensity",
"=",
"2",
",",
"rain_duration",
"=",
"timedelta",
"(",
"seconds",
"=",
"30",
"*",
"60",... | Initializes event for GSSHA model | [
"Initializes",
"event",
"for",
"GSSHA",
"model"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/model.py#L259-L287 | train |
CI-WATER/gsshapy | gsshapy/modeling/model.py | GSSHAModel.write | def write(self):
"""
Write project to directory
"""
# write data
self.project_manager.writeInput(session=self.db_session,
directory=self.project_directory,
name=self.project_manager.name) | python | def write(self):
"""
Write project to directory
"""
# write data
self.project_manager.writeInput(session=self.db_session,
directory=self.project_directory,
name=self.project_manager.name) | [
"def",
"write",
"(",
"self",
")",
":",
"# write data",
"self",
".",
"project_manager",
".",
"writeInput",
"(",
"session",
"=",
"self",
".",
"db_session",
",",
"directory",
"=",
"self",
".",
"project_directory",
",",
"name",
"=",
"self",
".",
"project_manager... | Write project to directory | [
"Write",
"project",
"to",
"directory"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/model.py#L289-L296 | train |
dsoprea/PySecure | pysecure/sftp_mirror.py | SftpMirror.mirror | def mirror(self, handler, path_from, path_to, log_files=False):
"""Recursively mirror the contents of "path_from" into "path_to".
"handler" should be self.mirror_to_local_no_recursion or
self.mirror_to_remote_no_recursion to represent which way the files are
moving.
"""
... | python | def mirror(self, handler, path_from, path_to, log_files=False):
"""Recursively mirror the contents of "path_from" into "path_to".
"handler" should be self.mirror_to_local_no_recursion or
self.mirror_to_remote_no_recursion to represent which way the files are
moving.
"""
... | [
"def",
"mirror",
"(",
"self",
",",
"handler",
",",
"path_from",
",",
"path_to",
",",
"log_files",
"=",
"False",
")",
":",
"q",
"=",
"deque",
"(",
"[",
"''",
"]",
")",
"while",
"q",
":",
"path",
"=",
"q",
".",
"popleft",
"(",
")",
"full_from",
"="... | Recursively mirror the contents of "path_from" into "path_to".
"handler" should be self.mirror_to_local_no_recursion or
self.mirror_to_remote_no_recursion to represent which way the files are
moving. | [
"Recursively",
"mirror",
"the",
"contents",
"of",
"path_from",
"into",
"path_to",
".",
"handler",
"should",
"be",
"self",
".",
"mirror_to_local_no_recursion",
"or",
"self",
".",
"mirror_to_remote_no_recursion",
"to",
"represent",
"which",
"way",
"the",
"files",
"are... | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/sftp_mirror.py#L26-L42 | train |
CI-WATER/gsshapy | gsshapy/orm/lnd.py | LinkNodeDatasetFile.linkToChannelInputFile | def linkToChannelInputFile(self, session, channelInputFile, force=False):
"""
Create database relationships between the link node dataset and the channel input file.
The link node dataset only stores references to the links and nodes--not the geometry. The link and node
geometries are s... | python | def linkToChannelInputFile(self, session, channelInputFile, force=False):
"""
Create database relationships between the link node dataset and the channel input file.
The link node dataset only stores references to the links and nodes--not the geometry. The link and node
geometries are s... | [
"def",
"linkToChannelInputFile",
"(",
"self",
",",
"session",
",",
"channelInputFile",
",",
"force",
"=",
"False",
")",
":",
"# Only perform operation if the channel input file has not been assigned or the force parameter is true",
"if",
"self",
".",
"channelInputFile",
"is",
... | Create database relationships between the link node dataset and the channel input file.
The link node dataset only stores references to the links and nodes--not the geometry. The link and node
geometries are stored in the channel input file. The two files must be linked with database relationships to
... | [
"Create",
"database",
"relationships",
"between",
"the",
"link",
"node",
"dataset",
"and",
"the",
"channel",
"input",
"file",
"."
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/orm/lnd.py#L76-L131 | train |
CI-WATER/gsshapy | gsshapy/orm/lnd.py | LinkNodeDatasetFile._read | def _read(self, directory, filename, session, path, name, extension, spatial, spatialReferenceID, replaceParamFile):
"""
Link Node Dataset File Read from File Method
"""
# Set file extension property
self.fileExtension = extension
# Dictionary of keywords/cards and parse... | python | def _read(self, directory, filename, session, path, name, extension, spatial, spatialReferenceID, replaceParamFile):
"""
Link Node Dataset File Read from File Method
"""
# Set file extension property
self.fileExtension = extension
# Dictionary of keywords/cards and parse... | [
"def",
"_read",
"(",
"self",
",",
"directory",
",",
"filename",
",",
"session",
",",
"path",
",",
"name",
",",
"extension",
",",
"spatial",
",",
"spatialReferenceID",
",",
"replaceParamFile",
")",
":",
"# Set file extension property",
"self",
".",
"fileExtension... | Link Node Dataset File Read from File Method | [
"Link",
"Node",
"Dataset",
"File",
"Read",
"from",
"File",
"Method"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/orm/lnd.py#L356-L448 | train |
CI-WATER/gsshapy | gsshapy/orm/lnd.py | LinkNodeDatasetFile._write | def _write(self, session, openFile, replaceParamFile):
"""
Link Node Dataset File Write to File Method
"""
# Retrieve TimeStep objects
timeSteps = self.timeSteps
# Write Lines
openFile.write('%s\n' % self.name)
openFile.write('NUM_LINKS %s\n' % self.n... | python | def _write(self, session, openFile, replaceParamFile):
"""
Link Node Dataset File Write to File Method
"""
# Retrieve TimeStep objects
timeSteps = self.timeSteps
# Write Lines
openFile.write('%s\n' % self.name)
openFile.write('NUM_LINKS %s\n' % self.n... | [
"def",
"_write",
"(",
"self",
",",
"session",
",",
"openFile",
",",
"replaceParamFile",
")",
":",
"# Retrieve TimeStep objects",
"timeSteps",
"=",
"self",
".",
"timeSteps",
"# Write Lines",
"openFile",
".",
"write",
"(",
"'%s\\n'",
"%",
"self",
".",
"name",
")... | Link Node Dataset File Write to File Method | [
"Link",
"Node",
"Dataset",
"File",
"Write",
"to",
"File",
"Method"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/orm/lnd.py#L452-L496 | train |
cs50/cli50 | cli50/__main__.py | login | def login(container):
"""Log into container."""
columns, lines = shutil.get_terminal_size() # Temporary
try:
subprocess.check_call([
"docker", "exec",
"--env", f"COLUMNS={str(columns)},LINES={str(lines)}", # Temporary
"--env", f"LINES={str(lines)}", # Temporary... | python | def login(container):
"""Log into container."""
columns, lines = shutil.get_terminal_size() # Temporary
try:
subprocess.check_call([
"docker", "exec",
"--env", f"COLUMNS={str(columns)},LINES={str(lines)}", # Temporary
"--env", f"LINES={str(lines)}", # Temporary... | [
"def",
"login",
"(",
"container",
")",
":",
"columns",
",",
"lines",
"=",
"shutil",
".",
"get_terminal_size",
"(",
")",
"# Temporary",
"try",
":",
"subprocess",
".",
"check_call",
"(",
"[",
"\"docker\"",
",",
"\"exec\"",
",",
"\"--env\"",
",",
"f\"COLUMNS={s... | Log into container. | [
"Log",
"into",
"container",
"."
] | f712328200dd40c3e19e73893644cb61125ea66e | https://github.com/cs50/cli50/blob/f712328200dd40c3e19e73893644cb61125ea66e/cli50/__main__.py#L195-L210 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event._update_simulation_start | def _update_simulation_start(self, simulation_start):
"""
Update GSSHA simulation start time
"""
self.simulation_start = simulation_start
if self.simulation_duration is not None and self.simulation_start is not None:
self.simulation_end = self.simulation_start + self.... | python | def _update_simulation_start(self, simulation_start):
"""
Update GSSHA simulation start time
"""
self.simulation_start = simulation_start
if self.simulation_duration is not None and self.simulation_start is not None:
self.simulation_end = self.simulation_start + self.... | [
"def",
"_update_simulation_start",
"(",
"self",
",",
"simulation_start",
")",
":",
"self",
".",
"simulation_start",
"=",
"simulation_start",
"if",
"self",
".",
"simulation_duration",
"is",
"not",
"None",
"and",
"self",
".",
"simulation_start",
"is",
"not",
"None",... | Update GSSHA simulation start time | [
"Update",
"GSSHA",
"simulation",
"start",
"time"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L148-L155 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event._update_simulation_start_cards | def _update_simulation_start_cards(self):
"""
Update GSSHA cards for simulation start
"""
if self.simulation_start is not None:
self._update_card("START_DATE", self.simulation_start.strftime("%Y %m %d"))
self._update_card("START_TIME", self.simulation_start.strfti... | python | def _update_simulation_start_cards(self):
"""
Update GSSHA cards for simulation start
"""
if self.simulation_start is not None:
self._update_card("START_DATE", self.simulation_start.strftime("%Y %m %d"))
self._update_card("START_TIME", self.simulation_start.strfti... | [
"def",
"_update_simulation_start_cards",
"(",
"self",
")",
":",
"if",
"self",
".",
"simulation_start",
"is",
"not",
"None",
":",
"self",
".",
"_update_card",
"(",
"\"START_DATE\"",
",",
"self",
".",
"simulation_start",
".",
"strftime",
"(",
"\"%Y %m %d\"",
")",
... | Update GSSHA cards for simulation start | [
"Update",
"GSSHA",
"cards",
"for",
"simulation",
"start"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L157-L163 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event._update_simulation_end_from_lsm | def _update_simulation_end_from_lsm(self):
"""
Update simulation end time from LSM
"""
te = self.l2g.xd.lsm.datetime[-1]
simulation_end = te.replace(tzinfo=utc) \
.astimezone(tz=self.tz) \
.replace(tzinfo=None)
if sel... | python | def _update_simulation_end_from_lsm(self):
"""
Update simulation end time from LSM
"""
te = self.l2g.xd.lsm.datetime[-1]
simulation_end = te.replace(tzinfo=utc) \
.astimezone(tz=self.tz) \
.replace(tzinfo=None)
if sel... | [
"def",
"_update_simulation_end_from_lsm",
"(",
"self",
")",
":",
"te",
"=",
"self",
".",
"l2g",
".",
"xd",
".",
"lsm",
".",
"datetime",
"[",
"-",
"1",
"]",
"simulation_end",
"=",
"te",
".",
"replace",
"(",
"tzinfo",
"=",
"utc",
")",
".",
"astimezone",
... | Update simulation end time from LSM | [
"Update",
"simulation",
"end",
"time",
"from",
"LSM"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L165-L180 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event.add_precip_file | def add_precip_file(self, precip_file_path, interpolation_type=None):
"""
Adds a precip file to project with interpolation_type
"""
# precip file read in
self._update_card('PRECIP_FILE', precip_file_path, True)
if interpolation_type is None:
# check if precip... | python | def add_precip_file(self, precip_file_path, interpolation_type=None):
"""
Adds a precip file to project with interpolation_type
"""
# precip file read in
self._update_card('PRECIP_FILE', precip_file_path, True)
if interpolation_type is None:
# check if precip... | [
"def",
"add_precip_file",
"(",
"self",
",",
"precip_file_path",
",",
"interpolation_type",
"=",
"None",
")",
":",
"# precip file read in",
"self",
".",
"_update_card",
"(",
"'PRECIP_FILE'",
",",
"precip_file_path",
",",
"True",
")",
"if",
"interpolation_type",
"is",... | Adds a precip file to project with interpolation_type | [
"Adds",
"a",
"precip",
"file",
"to",
"project",
"with",
"interpolation_type"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L197-L220 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event.prepare_gag_lsm | def prepare_gag_lsm(self, lsm_precip_data_var, lsm_precip_type, interpolation_type=None):
"""
Prepares Gage output for GSSHA simulation
Parameters:
lsm_precip_data_var(list or str): String of name for precipitation variable name or list of precip variable names. See: :func:`~gsshap... | python | def prepare_gag_lsm(self, lsm_precip_data_var, lsm_precip_type, interpolation_type=None):
"""
Prepares Gage output for GSSHA simulation
Parameters:
lsm_precip_data_var(list or str): String of name for precipitation variable name or list of precip variable names. See: :func:`~gsshap... | [
"def",
"prepare_gag_lsm",
"(",
"self",
",",
"lsm_precip_data_var",
",",
"lsm_precip_type",
",",
"interpolation_type",
"=",
"None",
")",
":",
"if",
"self",
".",
"l2g",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"LSM converter not loaded ...\"",
")",
"# remove... | Prepares Gage output for GSSHA simulation
Parameters:
lsm_precip_data_var(list or str): String of name for precipitation variable name or list of precip variable names. See: :func:`~gsshapy.grid.GRIDtoGSSHA.lsm_precip_to_gssha_precip_gage`.
lsm_precip_type(str): Type of precipitation. ... | [
"Prepares",
"Gage",
"output",
"for",
"GSSHA",
"simulation"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L222-L253 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | Event.prepare_rapid_streamflow | def prepare_rapid_streamflow(self, path_to_rapid_qout, connection_list_file):
"""
Prepares RAPID streamflow for GSSHA simulation
"""
ihg_filename = '{0}.ihg'.format(self.project_manager.name)
with tmp_chdir(self.project_manager.project_directory):
# write out IHG file... | python | def prepare_rapid_streamflow(self, path_to_rapid_qout, connection_list_file):
"""
Prepares RAPID streamflow for GSSHA simulation
"""
ihg_filename = '{0}.ihg'.format(self.project_manager.name)
with tmp_chdir(self.project_manager.project_directory):
# write out IHG file... | [
"def",
"prepare_rapid_streamflow",
"(",
"self",
",",
"path_to_rapid_qout",
",",
"connection_list_file",
")",
":",
"ihg_filename",
"=",
"'{0}.ihg'",
".",
"format",
"(",
"self",
".",
"project_manager",
".",
"name",
")",
"with",
"tmp_chdir",
"(",
"self",
".",
"proj... | Prepares RAPID streamflow for GSSHA simulation | [
"Prepares",
"RAPID",
"streamflow",
"for",
"GSSHA",
"simulation"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L255-L312 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | EventMode.add_uniform_precip_event | def add_uniform_precip_event(self, intensity, duration):
"""
Add a uniform precip event
"""
self.project_manager.setCard('PRECIP_UNIF', '')
self.project_manager.setCard('RAIN_INTENSITY', str(intensity))
self.project_manager.setCard('RAIN_DURATION', str(duration.total_seco... | python | def add_uniform_precip_event(self, intensity, duration):
"""
Add a uniform precip event
"""
self.project_manager.setCard('PRECIP_UNIF', '')
self.project_manager.setCard('RAIN_INTENSITY', str(intensity))
self.project_manager.setCard('RAIN_DURATION', str(duration.total_seco... | [
"def",
"add_uniform_precip_event",
"(",
"self",
",",
"intensity",
",",
"duration",
")",
":",
"self",
".",
"project_manager",
".",
"setCard",
"(",
"'PRECIP_UNIF'",
",",
"''",
")",
"self",
".",
"project_manager",
".",
"setCard",
"(",
"'RAIN_INTENSITY'",
",",
"st... | Add a uniform precip event | [
"Add",
"a",
"uniform",
"precip",
"event"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L383-L389 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | LongTermMode._update_gmt | def _update_gmt(self):
"""
Based on timezone and start date, the GMT card is updated
"""
if self.simulation_start is not None:
# NOTE: Because of daylight savings time,
# offset result depends on time of the year
offset_string = str(self.simulation_sta... | python | def _update_gmt(self):
"""
Based on timezone and start date, the GMT card is updated
"""
if self.simulation_start is not None:
# NOTE: Because of daylight savings time,
# offset result depends on time of the year
offset_string = str(self.simulation_sta... | [
"def",
"_update_gmt",
"(",
"self",
")",
":",
"if",
"self",
".",
"simulation_start",
"is",
"not",
"None",
":",
"# NOTE: Because of daylight savings time,",
"# offset result depends on time of the year",
"offset_string",
"=",
"str",
"(",
"self",
".",
"simulation_start",
"... | Based on timezone and start date, the GMT card is updated | [
"Based",
"on",
"timezone",
"and",
"start",
"date",
"the",
"GMT",
"card",
"is",
"updated"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L497-L506 | train |
CI-WATER/gsshapy | gsshapy/modeling/event.py | LongTermMode.prepare_hmet_lsm | def prepare_hmet_lsm(self, lsm_data_var_map_array,
hmet_ascii_output_folder=None,
netcdf_file_path=None):
"""
Prepares HMET data for GSSHA simulation from land surface model data.
Parameters:
lsm_data_var_map_array(str): Array with c... | python | def prepare_hmet_lsm(self, lsm_data_var_map_array,
hmet_ascii_output_folder=None,
netcdf_file_path=None):
"""
Prepares HMET data for GSSHA simulation from land surface model data.
Parameters:
lsm_data_var_map_array(str): Array with c... | [
"def",
"prepare_hmet_lsm",
"(",
"self",
",",
"lsm_data_var_map_array",
",",
"hmet_ascii_output_folder",
"=",
"None",
",",
"netcdf_file_path",
"=",
"None",
")",
":",
"if",
"self",
".",
"l2g",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"LSM converter not loade... | Prepares HMET data for GSSHA simulation from land surface model data.
Parameters:
lsm_data_var_map_array(str): Array with connections for LSM output and GSSHA input. See: :func:`~gsshapy.grid.GRIDtoGSSHA.`
hmet_ascii_output_folder(Optional[str]): Path to diretory to output HMET ASCII fi... | [
"Prepares",
"HMET",
"data",
"for",
"GSSHA",
"simulation",
"from",
"land",
"surface",
"model",
"data",
"."
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/modeling/event.py#L508-L542 | train |
Robpol86/etaprogress | etaprogress/components/misc.py | get_remaining_width | def get_remaining_width(sample_string, max_terminal_width=None):
"""Returns the number of characters available if sample string were to be printed in the terminal.
Positional arguments:
sample_string -- gets the length of this string.
Keyword arguments:
max_terminal_width -- limit the overall widt... | python | def get_remaining_width(sample_string, max_terminal_width=None):
"""Returns the number of characters available if sample string were to be printed in the terminal.
Positional arguments:
sample_string -- gets the length of this string.
Keyword arguments:
max_terminal_width -- limit the overall widt... | [
"def",
"get_remaining_width",
"(",
"sample_string",
",",
"max_terminal_width",
"=",
"None",
")",
":",
"if",
"max_terminal_width",
"is",
"not",
"None",
":",
"available_width",
"=",
"min",
"(",
"terminal_width",
"(",
")",
",",
"max_terminal_width",
")",
"else",
":... | Returns the number of characters available if sample string were to be printed in the terminal.
Positional arguments:
sample_string -- gets the length of this string.
Keyword arguments:
max_terminal_width -- limit the overall width of everything to these many characters.
Returns:
Integer. | [
"Returns",
"the",
"number",
"of",
"characters",
"available",
"if",
"sample",
"string",
"were",
"to",
"be",
"printed",
"in",
"the",
"terminal",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/components/misc.py#L134-L150 | train |
Robpol86/etaprogress | etaprogress/components/misc.py | _WindowsCSBI._define_csbi | def _define_csbi():
"""Defines structs and populates _WindowsCSBI.CSBI."""
if _WindowsCSBI.CSBI is not None:
return
class COORD(ctypes.Structure):
"""Windows COORD structure. http://msdn.microsoft.com/en-us/library/windows/desktop/ms682119"""
_fields_ = [('X'... | python | def _define_csbi():
"""Defines structs and populates _WindowsCSBI.CSBI."""
if _WindowsCSBI.CSBI is not None:
return
class COORD(ctypes.Structure):
"""Windows COORD structure. http://msdn.microsoft.com/en-us/library/windows/desktop/ms682119"""
_fields_ = [('X'... | [
"def",
"_define_csbi",
"(",
")",
":",
"if",
"_WindowsCSBI",
".",
"CSBI",
"is",
"not",
"None",
":",
"return",
"class",
"COORD",
"(",
"ctypes",
".",
"Structure",
")",
":",
"\"\"\"Windows COORD structure. http://msdn.microsoft.com/en-us/library/windows/desktop/ms682119\"\"\"... | Defines structs and populates _WindowsCSBI.CSBI. | [
"Defines",
"structs",
"and",
"populates",
"_WindowsCSBI",
".",
"CSBI",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/components/misc.py#L39-L65 | train |
Robpol86/etaprogress | etaprogress/components/misc.py | _WindowsCSBI.initialize | def initialize():
"""Initializes the WINDLL resource and populated the CSBI class variable."""
_WindowsCSBI._define_csbi()
_WindowsCSBI.HANDLE_STDERR = _WindowsCSBI.HANDLE_STDERR or _WindowsCSBI.WINDLL.kernel32.GetStdHandle(-12)
_WindowsCSBI.HANDLE_STDOUT = _WindowsCSBI.HANDLE_STDOUT or ... | python | def initialize():
"""Initializes the WINDLL resource and populated the CSBI class variable."""
_WindowsCSBI._define_csbi()
_WindowsCSBI.HANDLE_STDERR = _WindowsCSBI.HANDLE_STDERR or _WindowsCSBI.WINDLL.kernel32.GetStdHandle(-12)
_WindowsCSBI.HANDLE_STDOUT = _WindowsCSBI.HANDLE_STDOUT or ... | [
"def",
"initialize",
"(",
")",
":",
"_WindowsCSBI",
".",
"_define_csbi",
"(",
")",
"_WindowsCSBI",
".",
"HANDLE_STDERR",
"=",
"_WindowsCSBI",
".",
"HANDLE_STDERR",
"or",
"_WindowsCSBI",
".",
"WINDLL",
".",
"kernel32",
".",
"GetStdHandle",
"(",
"-",
"12",
")",
... | Initializes the WINDLL resource and populated the CSBI class variable. | [
"Initializes",
"the",
"WINDLL",
"resource",
"and",
"populated",
"the",
"CSBI",
"class",
"variable",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/components/misc.py#L68-L81 | train |
churchill-lab/gbrs | gbrs/emase_utils.py | stencil | def stencil(**kwargs):
"""
Applying genotype calls to multi-way alignment incidence matrix
:param alnfile: alignment incidence file (h5),
:param gtypefile: genotype calls by GBRS (tsv),
:param grpfile: gene ID to isoform ID mapping info (tsv)
:return: genotyped version of alignment incidence fi... | python | def stencil(**kwargs):
"""
Applying genotype calls to multi-way alignment incidence matrix
:param alnfile: alignment incidence file (h5),
:param gtypefile: genotype calls by GBRS (tsv),
:param grpfile: gene ID to isoform ID mapping info (tsv)
:return: genotyped version of alignment incidence fi... | [
"def",
"stencil",
"(",
"*",
"*",
"kwargs",
")",
":",
"alnfile",
"=",
"kwargs",
".",
"get",
"(",
"'alnfile'",
")",
"gtypefile",
"=",
"kwargs",
".",
"get",
"(",
"'gtypefile'",
")",
"grpfile",
"=",
"kwargs",
".",
"get",
"(",
"'grpfile'",
")",
"if",
"grp... | Applying genotype calls to multi-way alignment incidence matrix
:param alnfile: alignment incidence file (h5),
:param gtypefile: genotype calls by GBRS (tsv),
:param grpfile: gene ID to isoform ID mapping info (tsv)
:return: genotyped version of alignment incidence file (h5) | [
"Applying",
"genotype",
"calls",
"to",
"multi",
"-",
"way",
"alignment",
"incidence",
"matrix"
] | 0f32d2620e82cb1459e56083af7c6e5c72d6ea88 | https://github.com/churchill-lab/gbrs/blob/0f32d2620e82cb1459e56083af7c6e5c72d6ea88/gbrs/emase_utils.py#L160-L213 | train |
hellupline/flask-manager | flask_manager/tree.py | Tree.register_items | def register_items(self, items):
"""Bulk ``register_item``.
Args:
items (iterable[Tree]):
Sequence of nodes to be registered as children.
"""
for item in items:
item.set_parent(self)
self.items.extend(items) | python | def register_items(self, items):
"""Bulk ``register_item``.
Args:
items (iterable[Tree]):
Sequence of nodes to be registered as children.
"""
for item in items:
item.set_parent(self)
self.items.extend(items) | [
"def",
"register_items",
"(",
"self",
",",
"items",
")",
":",
"for",
"item",
"in",
"items",
":",
"item",
".",
"set_parent",
"(",
"self",
")",
"self",
".",
"items",
".",
"extend",
"(",
"items",
")"
] | Bulk ``register_item``.
Args:
items (iterable[Tree]):
Sequence of nodes to be registered as children. | [
"Bulk",
"register_item",
"."
] | 70e48309f73aacf55f5c37b43165791ae1cf6861 | https://github.com/hellupline/flask-manager/blob/70e48309f73aacf55f5c37b43165791ae1cf6861/flask_manager/tree.py#L38-L47 | train |
hellupline/flask-manager | flask_manager/tree.py | Tree.endpoints | def endpoints(self):
"""
Get all the endpoints under this node in a tree like structure.
Returns:
(tuple):
name (str): This node's name.
endpoint (str): Endpoint name relative to root.
children (list): ``child.endpoints for each child
... | python | def endpoints(self):
"""
Get all the endpoints under this node in a tree like structure.
Returns:
(tuple):
name (str): This node's name.
endpoint (str): Endpoint name relative to root.
children (list): ``child.endpoints for each child
... | [
"def",
"endpoints",
"(",
"self",
")",
":",
"children",
"=",
"[",
"item",
".",
"endpoints",
"(",
")",
"for",
"item",
"in",
"self",
".",
"items",
"]",
"return",
"self",
".",
"name",
",",
"self",
".",
"endpoint",
",",
"children"
] | Get all the endpoints under this node in a tree like structure.
Returns:
(tuple):
name (str): This node's name.
endpoint (str): Endpoint name relative to root.
children (list): ``child.endpoints for each child | [
"Get",
"all",
"the",
"endpoints",
"under",
"this",
"node",
"in",
"a",
"tree",
"like",
"structure",
"."
] | 70e48309f73aacf55f5c37b43165791ae1cf6861 | https://github.com/hellupline/flask-manager/blob/70e48309f73aacf55f5c37b43165791ae1cf6861/flask_manager/tree.py#L74-L86 | train |
hellupline/flask-manager | flask_manager/tree.py | Tree.absolute_name | def absolute_name(self):
"""Get the absolute name of ``self``.
Returns:
str: the absolute name.
"""
if self.is_root() or self.parent.is_root():
return utils.slugify(self.name)
return ':'.join([self.parent.absolute_name, utils.slugify(self.name)]) | python | def absolute_name(self):
"""Get the absolute name of ``self``.
Returns:
str: the absolute name.
"""
if self.is_root() or self.parent.is_root():
return utils.slugify(self.name)
return ':'.join([self.parent.absolute_name, utils.slugify(self.name)]) | [
"def",
"absolute_name",
"(",
"self",
")",
":",
"if",
"self",
".",
"is_root",
"(",
")",
"or",
"self",
".",
"parent",
".",
"is_root",
"(",
")",
":",
"return",
"utils",
".",
"slugify",
"(",
"self",
".",
"name",
")",
"return",
"':'",
".",
"join",
"(",
... | Get the absolute name of ``self``.
Returns:
str: the absolute name. | [
"Get",
"the",
"absolute",
"name",
"of",
"self",
"."
] | 70e48309f73aacf55f5c37b43165791ae1cf6861 | https://github.com/hellupline/flask-manager/blob/70e48309f73aacf55f5c37b43165791ae1cf6861/flask_manager/tree.py#L103-L111 | train |
hellupline/flask-manager | flask_manager/tree.py | Tree.absolute_url | def absolute_url(self):
"""Get the absolute url of ``self``.
Returns:
str: the absolute url.
"""
if self.is_root():
return utils.concat_urls(self.url)
return utils.concat_urls(self.parent.absolute_url, self.url) | python | def absolute_url(self):
"""Get the absolute url of ``self``.
Returns:
str: the absolute url.
"""
if self.is_root():
return utils.concat_urls(self.url)
return utils.concat_urls(self.parent.absolute_url, self.url) | [
"def",
"absolute_url",
"(",
"self",
")",
":",
"if",
"self",
".",
"is_root",
"(",
")",
":",
"return",
"utils",
".",
"concat_urls",
"(",
"self",
".",
"url",
")",
"return",
"utils",
".",
"concat_urls",
"(",
"self",
".",
"parent",
".",
"absolute_url",
",",... | Get the absolute url of ``self``.
Returns:
str: the absolute url. | [
"Get",
"the",
"absolute",
"url",
"of",
"self",
"."
] | 70e48309f73aacf55f5c37b43165791ae1cf6861 | https://github.com/hellupline/flask-manager/blob/70e48309f73aacf55f5c37b43165791ae1cf6861/flask_manager/tree.py#L114-L122 | train |
theodoregoetz/wernher | wernher/map_view.py | MapView.split_tracks | def split_tracks(lat,lon,*args):
'''assumes eastward motion'''
tracks = []
lt,ln = [lat[0]],[lon[0]]
zz = [[z[0]] for z in args]
for i in range(1,len(lon)):
lt.append(lat[i])
for z,a in zip(zz,args):
z.append(a[i])
d1 = abs(lon[... | python | def split_tracks(lat,lon,*args):
'''assumes eastward motion'''
tracks = []
lt,ln = [lat[0]],[lon[0]]
zz = [[z[0]] for z in args]
for i in range(1,len(lon)):
lt.append(lat[i])
for z,a in zip(zz,args):
z.append(a[i])
d1 = abs(lon[... | [
"def",
"split_tracks",
"(",
"lat",
",",
"lon",
",",
"*",
"args",
")",
":",
"tracks",
"=",
"[",
"]",
"lt",
",",
"ln",
"=",
"[",
"lat",
"[",
"0",
"]",
"]",
",",
"[",
"lon",
"[",
"0",
"]",
"]",
"zz",
"=",
"[",
"[",
"z",
"[",
"0",
"]",
"]",... | assumes eastward motion | [
"assumes",
"eastward",
"motion"
] | ef5d3aabe24e532b5eab33cd0212b2dbc2c9022e | https://github.com/theodoregoetz/wernher/blob/ef5d3aabe24e532b5eab33cd0212b2dbc2c9022e/wernher/map_view.py#L56-L87 | train |
Robpol86/etaprogress | etaprogress/progress.py | ProgressBarWget.str_rate | def str_rate(self):
"""Returns the rate with formatting. If done, returns the overall rate instead."""
# Handle special cases.
if not self._eta.started or self._eta.stalled or not self.rate:
return '--.-KiB/s'
unit_rate, unit = UnitByte(self._eta.rate_overall if self.done el... | python | def str_rate(self):
"""Returns the rate with formatting. If done, returns the overall rate instead."""
# Handle special cases.
if not self._eta.started or self._eta.stalled or not self.rate:
return '--.-KiB/s'
unit_rate, unit = UnitByte(self._eta.rate_overall if self.done el... | [
"def",
"str_rate",
"(",
"self",
")",
":",
"# Handle special cases.",
"if",
"not",
"self",
".",
"_eta",
".",
"started",
"or",
"self",
".",
"_eta",
".",
"stalled",
"or",
"not",
"self",
".",
"rate",
":",
"return",
"'--.-KiB/s'",
"unit_rate",
",",
"unit",
"=... | Returns the rate with formatting. If done, returns the overall rate instead. | [
"Returns",
"the",
"rate",
"with",
"formatting",
".",
"If",
"done",
"returns",
"the",
"overall",
"rate",
"instead",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/progress.py#L239-L252 | train |
Robpol86/etaprogress | etaprogress/progress.py | ProgressBarYum.str_rate | def str_rate(self):
"""Returns the rate with formatting."""
# Handle special cases.
if not self._eta.started or self._eta.stalled or not self.rate:
return '--- KiB/s'
unit_rate, unit = UnitByte(self.rate).auto_no_thousands
if unit_rate >= 10:
formatter = ... | python | def str_rate(self):
"""Returns the rate with formatting."""
# Handle special cases.
if not self._eta.started or self._eta.stalled or not self.rate:
return '--- KiB/s'
unit_rate, unit = UnitByte(self.rate).auto_no_thousands
if unit_rate >= 10:
formatter = ... | [
"def",
"str_rate",
"(",
"self",
")",
":",
"# Handle special cases.",
"if",
"not",
"self",
".",
"_eta",
".",
"started",
"or",
"self",
".",
"_eta",
".",
"stalled",
"or",
"not",
"self",
".",
"rate",
":",
"return",
"'--- KiB/s'",
"unit_rate",
",",
"unit",
"=... | Returns the rate with formatting. | [
"Returns",
"the",
"rate",
"with",
"formatting",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/progress.py#L339-L350 | train |
CI-WATER/gsshapy | gsshapy/lib/db_tools.py | init_db | def init_db(sqlalchemy_url):
"""
Initialize database with gsshapy tables
"""
engine = create_engine(sqlalchemy_url)
start = time.time()
metadata.create_all(engine)
return time.time() - start | python | def init_db(sqlalchemy_url):
"""
Initialize database with gsshapy tables
"""
engine = create_engine(sqlalchemy_url)
start = time.time()
metadata.create_all(engine)
return time.time() - start | [
"def",
"init_db",
"(",
"sqlalchemy_url",
")",
":",
"engine",
"=",
"create_engine",
"(",
"sqlalchemy_url",
")",
"start",
"=",
"time",
".",
"time",
"(",
")",
"metadata",
".",
"create_all",
"(",
"engine",
")",
"return",
"time",
".",
"time",
"(",
")",
"-",
... | Initialize database with gsshapy tables | [
"Initialize",
"database",
"with",
"gsshapy",
"tables"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/lib/db_tools.py#L35-L42 | train |
CI-WATER/gsshapy | gsshapy/lib/db_tools.py | get_sessionmaker | def get_sessionmaker(sqlalchemy_url, engine=None):
"""
Create session with database to work in
"""
if engine is None:
engine = create_engine(sqlalchemy_url)
return sessionmaker(bind=engine) | python | def get_sessionmaker(sqlalchemy_url, engine=None):
"""
Create session with database to work in
"""
if engine is None:
engine = create_engine(sqlalchemy_url)
return sessionmaker(bind=engine) | [
"def",
"get_sessionmaker",
"(",
"sqlalchemy_url",
",",
"engine",
"=",
"None",
")",
":",
"if",
"engine",
"is",
"None",
":",
"engine",
"=",
"create_engine",
"(",
"sqlalchemy_url",
")",
"return",
"sessionmaker",
"(",
"bind",
"=",
"engine",
")"
] | Create session with database to work in | [
"Create",
"session",
"with",
"database",
"to",
"work",
"in"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/lib/db_tools.py#L234-L240 | train |
CI-WATER/gsshapy | gsshapy/lib/db_tools.py | get_project_session | def get_project_session(project_name, project_directory, map_type=None):
"""
Load project manager and in memory sqlite db sessionmaker for GSSHA project
"""
sqlalchemy_url, sql_engine = init_sqlite_memory()
gdb_sessionmaker = get_sessionmaker(sqlalchemy_url, sql_engine)
project_manager = Project... | python | def get_project_session(project_name, project_directory, map_type=None):
"""
Load project manager and in memory sqlite db sessionmaker for GSSHA project
"""
sqlalchemy_url, sql_engine = init_sqlite_memory()
gdb_sessionmaker = get_sessionmaker(sqlalchemy_url, sql_engine)
project_manager = Project... | [
"def",
"get_project_session",
"(",
"project_name",
",",
"project_directory",
",",
"map_type",
"=",
"None",
")",
":",
"sqlalchemy_url",
",",
"sql_engine",
"=",
"init_sqlite_memory",
"(",
")",
"gdb_sessionmaker",
"=",
"get_sessionmaker",
"(",
"sqlalchemy_url",
",",
"s... | Load project manager and in memory sqlite db sessionmaker for GSSHA project | [
"Load",
"project",
"manager",
"and",
"in",
"memory",
"sqlite",
"db",
"sessionmaker",
"for",
"GSSHA",
"project"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/lib/db_tools.py#L243-L252 | train |
Pylons/plaster | src/plaster/loaders.py | get_settings | def get_settings(config_uri, section=None, defaults=None):
"""
Load the settings from a named section.
.. code-block:: python
settings = plaster.get_settings(...)
print(settings['foo'])
:param config_uri: Anything that can be parsed by
:func:`plaster.parse_uri`.
:param se... | python | def get_settings(config_uri, section=None, defaults=None):
"""
Load the settings from a named section.
.. code-block:: python
settings = plaster.get_settings(...)
print(settings['foo'])
:param config_uri: Anything that can be parsed by
:func:`plaster.parse_uri`.
:param se... | [
"def",
"get_settings",
"(",
"config_uri",
",",
"section",
"=",
"None",
",",
"defaults",
"=",
"None",
")",
":",
"loader",
"=",
"get_loader",
"(",
"config_uri",
")",
"return",
"loader",
".",
"get_settings",
"(",
"section",
",",
"defaults",
")"
] | Load the settings from a named section.
.. code-block:: python
settings = plaster.get_settings(...)
print(settings['foo'])
:param config_uri: Anything that can be parsed by
:func:`plaster.parse_uri`.
:param section: The name of the section in the config file. If this is
`... | [
"Load",
"the",
"settings",
"from",
"a",
"named",
"section",
"."
] | e70e55c182a8300d7ccf67e54d47740c72e72cd8 | https://github.com/Pylons/plaster/blob/e70e55c182a8300d7ccf67e54d47740c72e72cd8/src/plaster/loaders.py#L33-L60 | train |
Pylons/plaster | src/plaster/loaders.py | find_loaders | def find_loaders(scheme, protocols=None):
"""
Find all loaders that match the requested scheme and protocols.
:param scheme: Any valid scheme. Examples would be something like ``ini``
or ``ini+pastedeploy``.
:param protocols: Zero or more :term:`loader protocol` identifiers that
the lo... | python | def find_loaders(scheme, protocols=None):
"""
Find all loaders that match the requested scheme and protocols.
:param scheme: Any valid scheme. Examples would be something like ``ini``
or ``ini+pastedeploy``.
:param protocols: Zero or more :term:`loader protocol` identifiers that
the lo... | [
"def",
"find_loaders",
"(",
"scheme",
",",
"protocols",
"=",
"None",
")",
":",
"# build a list of all required entry points",
"matching_groups",
"=",
"[",
"'plaster.loader_factory'",
"]",
"if",
"protocols",
":",
"matching_groups",
"+=",
"[",
"'plaster.{0}_loader_factory'"... | Find all loaders that match the requested scheme and protocols.
:param scheme: Any valid scheme. Examples would be something like ``ini``
or ``ini+pastedeploy``.
:param protocols: Zero or more :term:`loader protocol` identifiers that
the loader must implement. If ``None`` then only generic loa... | [
"Find",
"all",
"loaders",
"that",
"match",
"the",
"requested",
"scheme",
"and",
"protocols",
"."
] | e70e55c182a8300d7ccf67e54d47740c72e72cd8 | https://github.com/Pylons/plaster/blob/e70e55c182a8300d7ccf67e54d47740c72e72cd8/src/plaster/loaders.py#L120-L173 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | combine_dicts | def combine_dicts(*dicts, copy=False, base=None):
"""
Combines multiple dicts in one.
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:param base:
Base dict where combine m... | python | def combine_dicts(*dicts, copy=False, base=None):
"""
Combines multiple dicts in one.
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:param base:
Base dict where combine m... | [
"def",
"combine_dicts",
"(",
"*",
"dicts",
",",
"copy",
"=",
"False",
",",
"base",
"=",
"None",
")",
":",
"if",
"len",
"(",
"dicts",
")",
"==",
"1",
"and",
"base",
"is",
"None",
":",
"# Only one input dict.",
"cd",
"=",
"dicts",
"[",
"0",
"]",
".",... | Combines multiple dicts in one.
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:param base:
Base dict where combine multiple dicts in one.
:type base: dict, optional
:ret... | [
"Combines",
"multiple",
"dicts",
"in",
"one",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L34-L71 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | kk_dict | def kk_dict(*kk, **adict):
"""
Merges and defines dictionaries with values identical to keys.
:param kk:
A sequence of keys and/or dictionaries.
:type kk: object | dict, optional
:param adict:
A dictionary.
:type adict: dict, optional
:return:
Merged dictionary.
... | python | def kk_dict(*kk, **adict):
"""
Merges and defines dictionaries with values identical to keys.
:param kk:
A sequence of keys and/or dictionaries.
:type kk: object | dict, optional
:param adict:
A dictionary.
:type adict: dict, optional
:return:
Merged dictionary.
... | [
"def",
"kk_dict",
"(",
"*",
"kk",
",",
"*",
"*",
"adict",
")",
":",
"for",
"k",
"in",
"kk",
":",
"if",
"isinstance",
"(",
"k",
",",
"dict",
")",
":",
"if",
"not",
"set",
"(",
"k",
")",
".",
"isdisjoint",
"(",
"adict",
")",
":",
"raise",
"Valu... | Merges and defines dictionaries with values identical to keys.
:param kk:
A sequence of keys and/or dictionaries.
:type kk: object | dict, optional
:param adict:
A dictionary.
:type adict: dict, optional
:return:
Merged dictionary.
:rtype: dict
Example::
... | [
"Merges",
"and",
"defines",
"dictionaries",
"with",
"values",
"identical",
"to",
"keys",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L74-L121 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | bypass | def bypass(*inputs, copy=False):
"""
Returns the same arguments.
:param inputs:
Inputs values.
:type inputs: T
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:return:
Same input values.
:rtype: (T, ...), T
Example::... | python | def bypass(*inputs, copy=False):
"""
Returns the same arguments.
:param inputs:
Inputs values.
:type inputs: T
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:return:
Same input values.
:rtype: (T, ...), T
Example::... | [
"def",
"bypass",
"(",
"*",
"inputs",
",",
"copy",
"=",
"False",
")",
":",
"if",
"len",
"(",
"inputs",
")",
"==",
"1",
":",
"inputs",
"=",
"inputs",
"[",
"0",
"]",
"# Same inputs.",
"return",
"_copy",
".",
"deepcopy",
"(",
"inputs",
")",
"if",
"copy... | Returns the same arguments.
:param inputs:
Inputs values.
:type inputs: T
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional
:return:
Same input values.
:rtype: (T, ...), T
Example::
>>> bypass('a', 'b', 'c')
(... | [
"Returns",
"the",
"same",
"arguments",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L124-L151 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | map_dict | def map_dict(key_map, *dicts, copy=False, base=None):
"""
Returns a dict with new key values.
:param key_map:
A dictionary that maps the dict keys ({old key: new key}
:type key_map: dict
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it ... | python | def map_dict(key_map, *dicts, copy=False, base=None):
"""
Returns a dict with new key values.
:param key_map:
A dictionary that maps the dict keys ({old key: new key}
:type key_map: dict
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it ... | [
"def",
"map_dict",
"(",
"key_map",
",",
"*",
"dicts",
",",
"copy",
"=",
"False",
",",
"base",
"=",
"None",
")",
":",
"it",
"=",
"combine_dicts",
"(",
"*",
"dicts",
")",
".",
"items",
"(",
")",
"# Combine dicts.",
"get",
"=",
"key_map",
".",
"get",
... | Returns a dict with new key values.
:param key_map:
A dictionary that maps the dict keys ({old key: new key}
:type key_map: dict
:param dicts:
A sequence of dicts.
:type dicts: dict
:param copy:
If True, it returns a deepcopy of input values.
:type copy: bool, optional... | [
"Returns",
"a",
"dict",
"with",
"new",
"key",
"values",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L176-L212 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | map_list | def map_list(key_map, *inputs, copy=False, base=None):
"""
Returns a new dict.
:param key_map:
A list that maps the dict keys ({old key: new key}
:type key_map: list[str | dict | list]
:param inputs:
A sequence of data.
:type inputs: iterable | dict | int | float | list | tuple... | python | def map_list(key_map, *inputs, copy=False, base=None):
"""
Returns a new dict.
:param key_map:
A list that maps the dict keys ({old key: new key}
:type key_map: list[str | dict | list]
:param inputs:
A sequence of data.
:type inputs: iterable | dict | int | float | list | tuple... | [
"def",
"map_list",
"(",
"key_map",
",",
"*",
"inputs",
",",
"copy",
"=",
"False",
",",
"base",
"=",
"None",
")",
":",
"d",
"=",
"{",
"}",
"if",
"base",
"is",
"None",
"else",
"base",
"# Initialize empty dict.",
"for",
"m",
",",
"v",
"in",
"zip",
"("... | Returns a new dict.
:param key_map:
A list that maps the dict keys ({old key: new key}
:type key_map: list[str | dict | list]
:param inputs:
A sequence of data.
:type inputs: iterable | dict | int | float | list | tuple
:param copy:
If True, it returns a deepcopy of input ... | [
"Returns",
"a",
"new",
"dict",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L215-L272 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | selector | def selector(keys, dictionary, copy=False, output_type='dict',
allow_miss=False):
"""
Selects the chosen dictionary keys from the given dictionary.
:param keys:
Keys to select.
:type keys: list, tuple, set
:param dictionary:
A dictionary.
:type dictionary: dict
... | python | def selector(keys, dictionary, copy=False, output_type='dict',
allow_miss=False):
"""
Selects the chosen dictionary keys from the given dictionary.
:param keys:
Keys to select.
:type keys: list, tuple, set
:param dictionary:
A dictionary.
:type dictionary: dict
... | [
"def",
"selector",
"(",
"keys",
",",
"dictionary",
",",
"copy",
"=",
"False",
",",
"output_type",
"=",
"'dict'",
",",
"allow_miss",
"=",
"False",
")",
":",
"if",
"not",
"allow_miss",
":",
"# noinspection PyUnusedLocal",
"def",
"check",
"(",
"key",
")",
":"... | Selects the chosen dictionary keys from the given dictionary.
:param keys:
Keys to select.
:type keys: list, tuple, set
:param dictionary:
A dictionary.
:type dictionary: dict
:param copy:
If True the output contains deep-copies of the values.
:type copy: bool
:pa... | [
"Selects",
"the",
"chosen",
"dictionary",
"keys",
"from",
"the",
"given",
"dictionary",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L275-L334 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | replicate_value | def replicate_value(value, n=2, copy=True):
"""
Replicates `n` times the input value.
:param n:
Number of replications.
:type n: int
:param value:
Value to be replicated.
:type value: T
:param copy:
If True the list contains deep-copies of the value.
:type copy... | python | def replicate_value(value, n=2, copy=True):
"""
Replicates `n` times the input value.
:param n:
Number of replications.
:type n: int
:param value:
Value to be replicated.
:type value: T
:param copy:
If True the list contains deep-copies of the value.
:type copy... | [
"def",
"replicate_value",
"(",
"value",
",",
"n",
"=",
"2",
",",
"copy",
"=",
"True",
")",
":",
"return",
"bypass",
"(",
"*",
"[",
"value",
"]",
"*",
"n",
",",
"copy",
"=",
"copy",
")"
] | Replicates `n` times the input value.
:param n:
Number of replications.
:type n: int
:param value:
Value to be replicated.
:type value: T
:param copy:
If True the list contains deep-copies of the value.
:type copy: bool
:return:
A list with the value repli... | [
"Replicates",
"n",
"times",
"the",
"input",
"value",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L337-L365 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | stack_nested_keys | def stack_nested_keys(nested_dict, key=(), depth=-1):
"""
Stacks the keys of nested-dictionaries into tuples and yields a list of
k-v pairs.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param key:
Initial keys.
:type key: tuple, optional
:param depth... | python | def stack_nested_keys(nested_dict, key=(), depth=-1):
"""
Stacks the keys of nested-dictionaries into tuples and yields a list of
k-v pairs.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param key:
Initial keys.
:type key: tuple, optional
:param depth... | [
"def",
"stack_nested_keys",
"(",
"nested_dict",
",",
"key",
"=",
"(",
")",
",",
"depth",
"=",
"-",
"1",
")",
":",
"if",
"depth",
"!=",
"0",
"and",
"hasattr",
"(",
"nested_dict",
",",
"'items'",
")",
":",
"for",
"k",
",",
"v",
"in",
"nested_dict",
"... | Stacks the keys of nested-dictionaries into tuples and yields a list of
k-v pairs.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param key:
Initial keys.
:type key: tuple, optional
:param depth:
Maximum keys depth.
:type depth: int, optional
... | [
"Stacks",
"the",
"keys",
"of",
"nested",
"-",
"dictionaries",
"into",
"tuples",
"and",
"yields",
"a",
"list",
"of",
"k",
"-",
"v",
"pairs",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L475-L501 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | are_in_nested_dicts | def are_in_nested_dicts(nested_dict, *keys):
"""
Nested keys are inside of nested-dictionaries.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param keys:
Nested keys.
:type keys: object
:return:
True if nested keys are inside of nested-dictionarie... | python | def are_in_nested_dicts(nested_dict, *keys):
"""
Nested keys are inside of nested-dictionaries.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param keys:
Nested keys.
:type keys: object
:return:
True if nested keys are inside of nested-dictionarie... | [
"def",
"are_in_nested_dicts",
"(",
"nested_dict",
",",
"*",
"keys",
")",
":",
"if",
"keys",
":",
"# noinspection PyBroadException",
"try",
":",
"return",
"are_in_nested_dicts",
"(",
"nested_dict",
"[",
"keys",
"[",
"0",
"]",
"]",
",",
"*",
"keys",
"[",
"1",
... | Nested keys are inside of nested-dictionaries.
:param nested_dict:
Nested dictionary.
:type nested_dict: dict
:param keys:
Nested keys.
:type keys: object
:return:
True if nested keys are inside of nested-dictionaries, otherwise False.
:rtype: bool | [
"Nested",
"keys",
"are",
"inside",
"of",
"nested",
"-",
"dictionaries",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L541-L564 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | combine_nested_dicts | def combine_nested_dicts(*nested_dicts, depth=-1, base=None):
"""
Merge nested-dictionaries.
:param nested_dicts:
Nested dictionaries.
:type nested_dicts: dict
:param depth:
Maximum keys depth.
:type depth: int, optional
:param base:
Base dict where combine multipl... | python | def combine_nested_dicts(*nested_dicts, depth=-1, base=None):
"""
Merge nested-dictionaries.
:param nested_dicts:
Nested dictionaries.
:type nested_dicts: dict
:param depth:
Maximum keys depth.
:type depth: int, optional
:param base:
Base dict where combine multipl... | [
"def",
"combine_nested_dicts",
"(",
"*",
"nested_dicts",
",",
"depth",
"=",
"-",
"1",
",",
"base",
"=",
"None",
")",
":",
"if",
"base",
"is",
"None",
":",
"base",
"=",
"{",
"}",
"for",
"nested_dict",
"in",
"nested_dicts",
":",
"for",
"k",
",",
"v",
... | Merge nested-dictionaries.
:param nested_dicts:
Nested dictionaries.
:type nested_dicts: dict
:param depth:
Maximum keys depth.
:type depth: int, optional
:param base:
Base dict where combine multiple dicts in one.
:type base: dict, optional
:return:
Combi... | [
"Merge",
"nested",
"-",
"dictionaries",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L567-L603 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | add_function | def add_function(dsp, inputs_kwargs=False, inputs_defaults=False, **kw):
"""
Decorator to add a function to a dispatcher.
:param dsp:
A dispatcher.
:type dsp: schedula.Dispatcher
:param inputs_kwargs:
Do you want to include kwargs as inputs?
:type inputs_kwargs: bool
... | python | def add_function(dsp, inputs_kwargs=False, inputs_defaults=False, **kw):
"""
Decorator to add a function to a dispatcher.
:param dsp:
A dispatcher.
:type dsp: schedula.Dispatcher
:param inputs_kwargs:
Do you want to include kwargs as inputs?
:type inputs_kwargs: bool
... | [
"def",
"add_function",
"(",
"dsp",
",",
"inputs_kwargs",
"=",
"False",
",",
"inputs_defaults",
"=",
"False",
",",
"*",
"*",
"kw",
")",
":",
"def",
"decorator",
"(",
"f",
")",
":",
"dsp",
".",
"add_func",
"(",
"f",
",",
"inputs_kwargs",
"=",
"inputs_kwa... | Decorator to add a function to a dispatcher.
:param dsp:
A dispatcher.
:type dsp: schedula.Dispatcher
:param inputs_kwargs:
Do you want to include kwargs as inputs?
:type inputs_kwargs: bool
:param inputs_defaults:
Do you want to set default values?
:type inputs_... | [
"Decorator",
"to",
"add",
"a",
"function",
"to",
"a",
"dispatcher",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L1242-L1296 | train |
vinci1it2000/schedula | schedula/utils/dsp.py | SubDispatch.blue | def blue(self, memo=None):
"""
Constructs a Blueprint out of the current object.
:param memo:
A dictionary to cache Blueprints.
:type memo: dict[T,schedula.utils.blue.Blueprint]
:return:
A Blueprint of the current object.
:rtype: schedula.utils.b... | python | def blue(self, memo=None):
"""
Constructs a Blueprint out of the current object.
:param memo:
A dictionary to cache Blueprints.
:type memo: dict[T,schedula.utils.blue.Blueprint]
:return:
A Blueprint of the current object.
:rtype: schedula.utils.b... | [
"def",
"blue",
"(",
"self",
",",
"memo",
"=",
"None",
")",
":",
"memo",
"=",
"{",
"}",
"if",
"memo",
"is",
"None",
"else",
"memo",
"if",
"self",
"not",
"in",
"memo",
":",
"import",
"inspect",
"from",
".",
"blue",
"import",
"Blueprint",
",",
"_paren... | Constructs a Blueprint out of the current object.
:param memo:
A dictionary to cache Blueprints.
:type memo: dict[T,schedula.utils.blue.Blueprint]
:return:
A Blueprint of the current object.
:rtype: schedula.utils.blue.Blueprint | [
"Constructs",
"a",
"Blueprint",
"out",
"of",
"the",
"current",
"object",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/dsp.py#L741-L762 | train |
leplatrem/django-sizefield | sizefield/widgets.py | FileSizeWidget.value_from_datadict | def value_from_datadict(self, data, files, name):
"""
Given a dictionary of data and this widget's name, returns the value
of this widget. Returns None if it's not provided.
"""
value = super(FileSizeWidget, self).value_from_datadict(data, files, name)
if value not in EMP... | python | def value_from_datadict(self, data, files, name):
"""
Given a dictionary of data and this widget's name, returns the value
of this widget. Returns None if it's not provided.
"""
value = super(FileSizeWidget, self).value_from_datadict(data, files, name)
if value not in EMP... | [
"def",
"value_from_datadict",
"(",
"self",
",",
"data",
",",
"files",
",",
"name",
")",
":",
"value",
"=",
"super",
"(",
"FileSizeWidget",
",",
"self",
")",
".",
"value_from_datadict",
"(",
"data",
",",
"files",
",",
"name",
")",
"if",
"value",
"not",
... | Given a dictionary of data and this widget's name, returns the value
of this widget. Returns None if it's not provided. | [
"Given",
"a",
"dictionary",
"of",
"data",
"and",
"this",
"widget",
"s",
"name",
"returns",
"the",
"value",
"of",
"this",
"widget",
".",
"Returns",
"None",
"if",
"it",
"s",
"not",
"provided",
"."
] | 6a273a43a2e8d157ee438811c0824eae534bcdb2 | https://github.com/leplatrem/django-sizefield/blob/6a273a43a2e8d157ee438811c0824eae534bcdb2/sizefield/widgets.py#L17-L28 | train |
dsoprea/PySecure | pysecure/easy.py | connect_ssh_with_cb | def connect_ssh_with_cb(ssh_cb, user, host, auth_cb, allow_new=True,
verbosity=0):
"""A "managed" SSH session. When the session is ready, we'll invoke the
"ssh_cb" callback.
"""
with connect_ssh(user, host, auth_cb, allow_new=True, verbosity=0) as ssh:
ssh_cb(ssh) | python | def connect_ssh_with_cb(ssh_cb, user, host, auth_cb, allow_new=True,
verbosity=0):
"""A "managed" SSH session. When the session is ready, we'll invoke the
"ssh_cb" callback.
"""
with connect_ssh(user, host, auth_cb, allow_new=True, verbosity=0) as ssh:
ssh_cb(ssh) | [
"def",
"connect_ssh_with_cb",
"(",
"ssh_cb",
",",
"user",
",",
"host",
",",
"auth_cb",
",",
"allow_new",
"=",
"True",
",",
"verbosity",
"=",
"0",
")",
":",
"with",
"connect_ssh",
"(",
"user",
",",
"host",
",",
"auth_cb",
",",
"allow_new",
"=",
"True",
... | A "managed" SSH session. When the session is ready, we'll invoke the
"ssh_cb" callback. | [
"A",
"managed",
"SSH",
"session",
".",
"When",
"the",
"session",
"is",
"ready",
"we",
"ll",
"invoke",
"the",
"ssh_cb",
"callback",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/easy.py#L20-L27 | train |
dsoprea/PySecure | pysecure/easy.py | connect_sftp_with_cb | def connect_sftp_with_cb(sftp_cb, *args, **kwargs):
"""A "managed" SFTP session. When the SSH session and an additional SFTP
session are ready, invoke the sftp_cb callback.
"""
with _connect_sftp(*args, **kwargs) as (ssh, sftp):
sftp_cb(ssh, sftp) | python | def connect_sftp_with_cb(sftp_cb, *args, **kwargs):
"""A "managed" SFTP session. When the SSH session and an additional SFTP
session are ready, invoke the sftp_cb callback.
"""
with _connect_sftp(*args, **kwargs) as (ssh, sftp):
sftp_cb(ssh, sftp) | [
"def",
"connect_sftp_with_cb",
"(",
"sftp_cb",
",",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
":",
"with",
"_connect_sftp",
"(",
"*",
"args",
",",
"*",
"*",
"kwargs",
")",
"as",
"(",
"ssh",
",",
"sftp",
")",
":",
"sftp_cb",
"(",
"ssh",
",",
"sftp"... | A "managed" SFTP session. When the SSH session and an additional SFTP
session are ready, invoke the sftp_cb callback. | [
"A",
"managed",
"SFTP",
"session",
".",
"When",
"the",
"SSH",
"session",
"and",
"an",
"additional",
"SFTP",
"session",
"are",
"ready",
"invoke",
"the",
"sftp_cb",
"callback",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/easy.py#L39-L45 | train |
dsoprea/PySecure | pysecure/easy.py | get_key_auth_cb | def get_key_auth_cb(key_filepath):
"""This is just a convenience function for key-based login."""
def auth_cb(ssh):
key = ssh_pki_import_privkey_file(key_filepath)
ssh.userauth_publickey(key)
return auth_cb | python | def get_key_auth_cb(key_filepath):
"""This is just a convenience function for key-based login."""
def auth_cb(ssh):
key = ssh_pki_import_privkey_file(key_filepath)
ssh.userauth_publickey(key)
return auth_cb | [
"def",
"get_key_auth_cb",
"(",
"key_filepath",
")",
":",
"def",
"auth_cb",
"(",
"ssh",
")",
":",
"key",
"=",
"ssh_pki_import_privkey_file",
"(",
"key_filepath",
")",
"ssh",
".",
"userauth_publickey",
"(",
"key",
")",
"return",
"auth_cb"
] | This is just a convenience function for key-based login. | [
"This",
"is",
"just",
"a",
"convenience",
"function",
"for",
"key",
"-",
"based",
"login",
"."
] | ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0 | https://github.com/dsoprea/PySecure/blob/ff7e01a0a77e79564cb00b6e38b4e6f9f88674f0/pysecure/easy.py#L47-L54 | train |
vinci1it2000/schedula | schedula/utils/alg.py | add_edge_fun | def add_edge_fun(graph):
"""
Returns a function that adds an edge to the `graph` checking only the out
node.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that adds an edge to the `graph`.
:rtype: callable
"""
# N... | python | def add_edge_fun(graph):
"""
Returns a function that adds an edge to the `graph` checking only the out
node.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that adds an edge to the `graph`.
:rtype: callable
"""
# N... | [
"def",
"add_edge_fun",
"(",
"graph",
")",
":",
"# Namespace shortcut for speed.",
"succ",
",",
"pred",
",",
"node",
"=",
"graph",
".",
"_succ",
",",
"graph",
".",
"_pred",
",",
"graph",
".",
"_node",
"def",
"add_edge",
"(",
"u",
",",
"v",
",",
"*",
"*"... | Returns a function that adds an edge to the `graph` checking only the out
node.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that adds an edge to the `graph`.
:rtype: callable | [
"Returns",
"a",
"function",
"that",
"adds",
"an",
"edge",
"to",
"the",
"graph",
"checking",
"only",
"the",
"out",
"node",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L22-L45 | train |
vinci1it2000/schedula | schedula/utils/alg.py | remove_edge_fun | def remove_edge_fun(graph):
"""
Returns a function that removes an edge from the `graph`.
..note:: The out node is removed if this is isolate.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that remove an edge from the `graph`... | python | def remove_edge_fun(graph):
"""
Returns a function that removes an edge from the `graph`.
..note:: The out node is removed if this is isolate.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that remove an edge from the `graph`... | [
"def",
"remove_edge_fun",
"(",
"graph",
")",
":",
"# Namespace shortcut for speed.",
"rm_edge",
",",
"rm_node",
"=",
"graph",
".",
"remove_edge",
",",
"graph",
".",
"remove_node",
"from",
"networkx",
"import",
"is_isolate",
"def",
"remove_edge",
"(",
"u",
",",
"... | Returns a function that removes an edge from the `graph`.
..note:: The out node is removed if this is isolate.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:return:
A function that remove an edge from the `graph`.
:rtype: callable | [
"Returns",
"a",
"function",
"that",
"removes",
"an",
"edge",
"from",
"the",
"graph",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L48-L72 | train |
vinci1it2000/schedula | schedula/utils/alg.py | get_unused_node_id | def get_unused_node_id(graph, initial_guess='unknown', _format='{}<%d>'):
"""
Finds an unused node id in `graph`.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param initial_guess:
Initial node id guess.
:type initial_guess: str, optional
:... | python | def get_unused_node_id(graph, initial_guess='unknown', _format='{}<%d>'):
"""
Finds an unused node id in `graph`.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param initial_guess:
Initial node id guess.
:type initial_guess: str, optional
:... | [
"def",
"get_unused_node_id",
"(",
"graph",
",",
"initial_guess",
"=",
"'unknown'",
",",
"_format",
"=",
"'{}<%d>'",
")",
":",
"has_node",
"=",
"graph",
".",
"has_node",
"# Namespace shortcut for speed.",
"n",
"=",
"counter",
"(",
")",
"# Counter.",
"node_id_format... | Finds an unused node id in `graph`.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param initial_guess:
Initial node id guess.
:type initial_guess: str, optional
:param _format:
Format to generate the new node id if the given is already used... | [
"Finds",
"an",
"unused",
"node",
"id",
"in",
"graph",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L75-L105 | train |
vinci1it2000/schedula | schedula/utils/alg.py | add_func_edges | def add_func_edges(dsp, fun_id, nodes_bunch, edge_weights=None, input=True,
data_nodes=None):
"""
Adds function node edges.
:param dsp:
A dispatcher that identifies the model adopted.
:type dsp: schedula.Dispatcher
:param fun_id:
Function node id.
:type fun_i... | python | def add_func_edges(dsp, fun_id, nodes_bunch, edge_weights=None, input=True,
data_nodes=None):
"""
Adds function node edges.
:param dsp:
A dispatcher that identifies the model adopted.
:type dsp: schedula.Dispatcher
:param fun_id:
Function node id.
:type fun_i... | [
"def",
"add_func_edges",
"(",
"dsp",
",",
"fun_id",
",",
"nodes_bunch",
",",
"edge_weights",
"=",
"None",
",",
"input",
"=",
"True",
",",
"data_nodes",
"=",
"None",
")",
":",
"# Namespace shortcut for speed.",
"add_edge",
"=",
"_add_edge_dmap_fun",
"(",
"dsp",
... | Adds function node edges.
:param dsp:
A dispatcher that identifies the model adopted.
:type dsp: schedula.Dispatcher
:param fun_id:
Function node id.
:type fun_id: str
:param nodes_bunch:
A container of nodes which will be iterated through once.
:type nodes_bunch: iter... | [
"Adds",
"function",
"node",
"edges",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L108-L166 | train |
vinci1it2000/schedula | schedula/utils/alg.py | _add_edge_dmap_fun | def _add_edge_dmap_fun(graph, edges_weights=None):
"""
Adds edge to the dispatcher map.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param edges_weights:
Edge weights.
:type edges_weights: dict, optional
:return:
A function that ad... | python | def _add_edge_dmap_fun(graph, edges_weights=None):
"""
Adds edge to the dispatcher map.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param edges_weights:
Edge weights.
:type edges_weights: dict, optional
:return:
A function that ad... | [
"def",
"_add_edge_dmap_fun",
"(",
"graph",
",",
"edges_weights",
"=",
"None",
")",
":",
"add",
"=",
"graph",
".",
"add_edge",
"# Namespace shortcut for speed.",
"if",
"edges_weights",
"is",
"not",
"None",
":",
"def",
"add_edge",
"(",
"i",
",",
"o",
",",
"w",... | Adds edge to the dispatcher map.
:param graph:
A directed graph.
:type graph: networkx.classes.digraph.DiGraph
:param edges_weights:
Edge weights.
:type edges_weights: dict, optional
:return:
A function that adds an edge to the `graph`.
:rtype: callable | [
"Adds",
"edge",
"to",
"the",
"dispatcher",
"map",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L169-L199 | train |
vinci1it2000/schedula | schedula/utils/alg.py | _get_node | def _get_node(nodes, node_id, fuzzy=True):
"""
Returns a dispatcher node that match the given node id.
:param nodes:
Dispatcher nodes.
:type nodes: dict
:param node_id:
Node id.
:type node_id: str
:return:
The dispatcher node and its id.
:rtype: (str, dict)
... | python | def _get_node(nodes, node_id, fuzzy=True):
"""
Returns a dispatcher node that match the given node id.
:param nodes:
Dispatcher nodes.
:type nodes: dict
:param node_id:
Node id.
:type node_id: str
:return:
The dispatcher node and its id.
:rtype: (str, dict)
... | [
"def",
"_get_node",
"(",
"nodes",
",",
"node_id",
",",
"fuzzy",
"=",
"True",
")",
":",
"try",
":",
"return",
"node_id",
",",
"nodes",
"[",
"node_id",
"]",
"# Return dispatcher node and its id.",
"except",
"KeyError",
"as",
"ex",
":",
"if",
"fuzzy",
":",
"i... | Returns a dispatcher node that match the given node id.
:param nodes:
Dispatcher nodes.
:type nodes: dict
:param node_id:
Node id.
:type node_id: str
:return:
The dispatcher node and its id.
:rtype: (str, dict) | [
"Returns",
"a",
"dispatcher",
"node",
"that",
"match",
"the",
"given",
"node",
"id",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L202-L227 | train |
vinci1it2000/schedula | schedula/utils/alg.py | get_full_pipe | def get_full_pipe(sol, base=()):
"""
Returns the full pipe of a dispatch run.
:param sol:
A Solution object.
:type sol: schedula.utils.Solution
:param base:
Base node id.
:type base: tuple[str]
:return:
Full pipe of a dispatch run.
:rtype: DspPipe
"""
... | python | def get_full_pipe(sol, base=()):
"""
Returns the full pipe of a dispatch run.
:param sol:
A Solution object.
:type sol: schedula.utils.Solution
:param base:
Base node id.
:type base: tuple[str]
:return:
Full pipe of a dispatch run.
:rtype: DspPipe
"""
... | [
"def",
"get_full_pipe",
"(",
"sol",
",",
"base",
"=",
"(",
")",
")",
":",
"pipe",
",",
"i",
"=",
"DspPipe",
"(",
")",
",",
"len",
"(",
"base",
")",
"for",
"p",
"in",
"sol",
".",
"_pipe",
":",
"n",
",",
"s",
"=",
"p",
"[",
"-",
"1",
"]",
"... | Returns the full pipe of a dispatch run.
:param sol:
A Solution object.
:type sol: schedula.utils.Solution
:param base:
Base node id.
:type base: tuple[str]
:return:
Full pipe of a dispatch run.
:rtype: DspPipe | [
"Returns",
"the",
"full",
"pipe",
"of",
"a",
"dispatch",
"run",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/alg.py#L426-L471 | train |
CI-WATER/gsshapy | gsshapy/lib/spn_chunk.py | connectChunk | def connectChunk(key, chunk):
"""
Parse Storm Pipe CONNECT Chunk Method
"""
schunk = chunk[0].strip().split()
result = {'slinkNumber': schunk[1],
'upSjunc': schunk[2],
'downSjunc': schunk[3]}
return result | python | def connectChunk(key, chunk):
"""
Parse Storm Pipe CONNECT Chunk Method
"""
schunk = chunk[0].strip().split()
result = {'slinkNumber': schunk[1],
'upSjunc': schunk[2],
'downSjunc': schunk[3]}
return result | [
"def",
"connectChunk",
"(",
"key",
",",
"chunk",
")",
":",
"schunk",
"=",
"chunk",
"[",
"0",
"]",
".",
"strip",
"(",
")",
".",
"split",
"(",
")",
"result",
"=",
"{",
"'slinkNumber'",
":",
"schunk",
"[",
"1",
"]",
",",
"'upSjunc'",
":",
"schunk",
... | Parse Storm Pipe CONNECT Chunk Method | [
"Parse",
"Storm",
"Pipe",
"CONNECT",
"Chunk",
"Method"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/lib/spn_chunk.py#L15-L25 | train |
hellupline/flask-manager | flask_manager/ext/sqlalchemy.py | SQLAlchemyController.get_items | def get_items(self, page=1, order_by=None, filters=None):
"""
Fetch database for items matching.
Args:
page (int):
which page will be sliced
slice size is ``self.per_page``.
order_by (str):
a field name to order query by.
... | python | def get_items(self, page=1, order_by=None, filters=None):
"""
Fetch database for items matching.
Args:
page (int):
which page will be sliced
slice size is ``self.per_page``.
order_by (str):
a field name to order query by.
... | [
"def",
"get_items",
"(",
"self",
",",
"page",
"=",
"1",
",",
"order_by",
"=",
"None",
",",
"filters",
"=",
"None",
")",
":",
"start",
"=",
"(",
"page",
"-",
"1",
")",
"*",
"self",
".",
"per_page",
"query",
"=",
"self",
".",
"get_query",
"(",
")",... | Fetch database for items matching.
Args:
page (int):
which page will be sliced
slice size is ``self.per_page``.
order_by (str):
a field name to order query by.
filters (dict):
a ``filter name``: ``value`` dict.
... | [
"Fetch",
"database",
"for",
"items",
"matching",
"."
] | 70e48309f73aacf55f5c37b43165791ae1cf6861 | https://github.com/hellupline/flask-manager/blob/70e48309f73aacf55f5c37b43165791ae1cf6861/flask_manager/ext/sqlalchemy.py#L160-L184 | train |
CI-WATER/gsshapy | gsshapy/orm/generic.py | GenericFile._read | def _read(self, directory, filename, session, path, name, extension, spatial, spatialReferenceID, replaceParamFile):
"""
Generic File Read from File Method
"""
# Persist name and extension of file
self.name = name
self.fileExtension = extension
# Open file and pa... | python | def _read(self, directory, filename, session, path, name, extension, spatial, spatialReferenceID, replaceParamFile):
"""
Generic File Read from File Method
"""
# Persist name and extension of file
self.name = name
self.fileExtension = extension
# Open file and pa... | [
"def",
"_read",
"(",
"self",
",",
"directory",
",",
"filename",
",",
"session",
",",
"path",
",",
"name",
",",
"extension",
",",
"spatial",
",",
"spatialReferenceID",
",",
"replaceParamFile",
")",
":",
"# Persist name and extension of file",
"self",
".",
"name",... | Generic File Read from File Method | [
"Generic",
"File",
"Read",
"from",
"File",
"Method"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/orm/generic.py#L55-L65 | train |
wheerd/multiset | multiset.py | BaseMultiset.isdisjoint | def isdisjoint(self, other):
r"""Return True if the set has no elements in common with other.
Sets are disjoint iff their intersection is the empty set.
>>> ms = Multiset('aab')
>>> ms.isdisjoint('bc')
False
>>> ms.isdisjoint(Multiset('ccd'))
True
Args:... | python | def isdisjoint(self, other):
r"""Return True if the set has no elements in common with other.
Sets are disjoint iff their intersection is the empty set.
>>> ms = Multiset('aab')
>>> ms.isdisjoint('bc')
False
>>> ms.isdisjoint(Multiset('ccd'))
True
Args:... | [
"def",
"isdisjoint",
"(",
"self",
",",
"other",
")",
":",
"if",
"isinstance",
"(",
"other",
",",
"_sequence_types",
"+",
"(",
"BaseMultiset",
",",
")",
")",
":",
"pass",
"elif",
"not",
"isinstance",
"(",
"other",
",",
"Container",
")",
":",
"other",
"=... | r"""Return True if the set has no elements in common with other.
Sets are disjoint iff their intersection is the empty set.
>>> ms = Multiset('aab')
>>> ms.isdisjoint('bc')
False
>>> ms.isdisjoint(Multiset('ccd'))
True
Args:
other: The other set to ... | [
"r",
"Return",
"True",
"if",
"the",
"set",
"has",
"no",
"elements",
"in",
"common",
"with",
"other",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L148-L167 | train |
wheerd/multiset | multiset.py | BaseMultiset.difference | def difference(self, *others):
r"""Return a new multiset with all elements from the others removed.
>>> ms = Multiset('aab')
>>> sorted(ms.difference('bc'))
['a', 'a']
You can also use the ``-`` operator for the same effect. However, the operator version
will only accep... | python | def difference(self, *others):
r"""Return a new multiset with all elements from the others removed.
>>> ms = Multiset('aab')
>>> sorted(ms.difference('bc'))
['a', 'a']
You can also use the ``-`` operator for the same effect. However, the operator version
will only accep... | [
"def",
"difference",
"(",
"self",
",",
"*",
"others",
")",
":",
"result",
"=",
"self",
".",
"__copy__",
"(",
")",
"_elements",
"=",
"result",
".",
"_elements",
"_total",
"=",
"result",
".",
"_total",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"_a... | r"""Return a new multiset with all elements from the others removed.
>>> ms = Multiset('aab')
>>> sorted(ms.difference('bc'))
['a', 'a']
You can also use the ``-`` operator for the same effect. However, the operator version
will only accept a set as other operator, not any iter... | [
"r",
"Return",
"a",
"new",
"multiset",
"with",
"all",
"elements",
"from",
"the",
"others",
"removed",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L169-L208 | train |
wheerd/multiset | multiset.py | BaseMultiset.union | def union(self, *others):
r"""Return a new multiset with all elements from the multiset and the others with maximal multiplicities.
>>> ms = Multiset('aab')
>>> sorted(ms.union('bc'))
['a', 'a', 'b', 'c']
You can also use the ``|`` operator for the same effect. However, the ope... | python | def union(self, *others):
r"""Return a new multiset with all elements from the multiset and the others with maximal multiplicities.
>>> ms = Multiset('aab')
>>> sorted(ms.union('bc'))
['a', 'a', 'b', 'c']
You can also use the ``|`` operator for the same effect. However, the ope... | [
"def",
"union",
"(",
"self",
",",
"*",
"others",
")",
":",
"result",
"=",
"self",
".",
"__copy__",
"(",
")",
"_elements",
"=",
"result",
".",
"_elements",
"_total",
"=",
"result",
".",
"_total",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"_as_map... | r"""Return a new multiset with all elements from the multiset and the others with maximal multiplicities.
>>> ms = Multiset('aab')
>>> sorted(ms.union('bc'))
['a', 'a', 'b', 'c']
You can also use the ``|`` operator for the same effect. However, the operator version
will only ac... | [
"r",
"Return",
"a",
"new",
"multiset",
"with",
"all",
"elements",
"from",
"the",
"multiset",
"and",
"the",
"others",
"with",
"maximal",
"multiplicities",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L222-L256 | train |
wheerd/multiset | multiset.py | BaseMultiset.intersection | def intersection(self, *others):
r"""Return a new multiset with elements common to the multiset and all others.
>>> ms = Multiset('aab')
>>> sorted(ms.intersection('abc'))
['a', 'b']
You can also use the ``&`` operator for the same effect. However, the operator version
... | python | def intersection(self, *others):
r"""Return a new multiset with elements common to the multiset and all others.
>>> ms = Multiset('aab')
>>> sorted(ms.intersection('abc'))
['a', 'b']
You can also use the ``&`` operator for the same effect. However, the operator version
... | [
"def",
"intersection",
"(",
"self",
",",
"*",
"others",
")",
":",
"result",
"=",
"self",
".",
"__copy__",
"(",
")",
"_elements",
"=",
"result",
".",
"_elements",
"_total",
"=",
"result",
".",
"_total",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"... | r"""Return a new multiset with elements common to the multiset and all others.
>>> ms = Multiset('aab')
>>> sorted(ms.intersection('abc'))
['a', 'b']
You can also use the ``&`` operator for the same effect. However, the operator version
will only accept a set as other operator,... | [
"r",
"Return",
"a",
"new",
"multiset",
"with",
"elements",
"common",
"to",
"the",
"multiset",
"and",
"all",
"others",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L316-L354 | train |
wheerd/multiset | multiset.py | BaseMultiset.symmetric_difference | def symmetric_difference(self, other):
r"""Return a new set with elements in either the set or other but not both.
>>> ms = Multiset('aab')
>>> sorted(ms.symmetric_difference('abc'))
['a', 'c']
You can also use the ``^`` operator for the same effect. However, the operator versi... | python | def symmetric_difference(self, other):
r"""Return a new set with elements in either the set or other but not both.
>>> ms = Multiset('aab')
>>> sorted(ms.symmetric_difference('abc'))
['a', 'c']
You can also use the ``^`` operator for the same effect. However, the operator versi... | [
"def",
"symmetric_difference",
"(",
"self",
",",
"other",
")",
":",
"other",
"=",
"self",
".",
"_as_multiset",
"(",
"other",
")",
"result",
"=",
"self",
".",
"__class__",
"(",
")",
"_total",
"=",
"0",
"_elements",
"=",
"result",
".",
"_elements",
"self_e... | r"""Return a new set with elements in either the set or other but not both.
>>> ms = Multiset('aab')
>>> sorted(ms.symmetric_difference('abc'))
['a', 'c']
You can also use the ``^`` operator for the same effect. However, the operator version
will only accept a set as other oper... | [
"r",
"Return",
"a",
"new",
"set",
"with",
"elements",
"in",
"either",
"the",
"set",
"or",
"other",
"but",
"not",
"both",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L365-L405 | train |
wheerd/multiset | multiset.py | BaseMultiset.times | def times(self, factor):
"""Return a new set with each element's multiplicity multiplied with the given scalar factor.
>>> ms = Multiset('aab')
>>> sorted(ms.times(2))
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*`` operator for the same effect:
>>> sorted(ms... | python | def times(self, factor):
"""Return a new set with each element's multiplicity multiplied with the given scalar factor.
>>> ms = Multiset('aab')
>>> sorted(ms.times(2))
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*`` operator for the same effect:
>>> sorted(ms... | [
"def",
"times",
"(",
"self",
",",
"factor",
")",
":",
"if",
"factor",
"==",
"0",
":",
"return",
"self",
".",
"__class__",
"(",
")",
"if",
"factor",
"<",
"0",
":",
"raise",
"ValueError",
"(",
"'The factor must no be negative.'",
")",
"result",
"=",
"self"... | Return a new set with each element's multiplicity multiplied with the given scalar factor.
>>> ms = Multiset('aab')
>>> sorted(ms.times(2))
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*`` operator for the same effect:
>>> sorted(ms * 3)
['a', 'a', 'a', 'a', '... | [
"Return",
"a",
"new",
"set",
"with",
"each",
"element",
"s",
"multiplicity",
"multiplied",
"with",
"the",
"given",
"scalar",
"factor",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L416-L443 | train |
wheerd/multiset | multiset.py | Multiset.union_update | def union_update(self, *others):
r"""Update the multiset, adding elements from all others using the maximum multiplicity.
>>> ms = Multiset('aab')
>>> ms.union_update('bc')
>>> sorted(ms)
['a', 'a', 'b', 'c']
You can also use the ``|=`` operator for the same effect. How... | python | def union_update(self, *others):
r"""Update the multiset, adding elements from all others using the maximum multiplicity.
>>> ms = Multiset('aab')
>>> ms.union_update('bc')
>>> sorted(ms)
['a', 'a', 'b', 'c']
You can also use the ``|=`` operator for the same effect. How... | [
"def",
"union_update",
"(",
"self",
",",
"*",
"others",
")",
":",
"_elements",
"=",
"self",
".",
"_elements",
"_total",
"=",
"self",
".",
"_total",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"_as_mapping",
",",
"others",
")",
":",
"for",
"element",... | r"""Update the multiset, adding elements from all others using the maximum multiplicity.
>>> ms = Multiset('aab')
>>> ms.union_update('bc')
>>> sorted(ms)
['a', 'a', 'b', 'c']
You can also use the ``|=`` operator for the same effect. However, the operator version
will o... | [
"r",
"Update",
"the",
"multiset",
"adding",
"elements",
"from",
"all",
"others",
"using",
"the",
"maximum",
"multiplicity",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L719-L750 | train |
wheerd/multiset | multiset.py | Multiset.intersection_update | def intersection_update(self, *others):
r"""Update the multiset, keeping only elements found in it and all others.
>>> ms = Multiset('aab')
>>> ms.intersection_update('bc')
>>> sorted(ms)
['b']
You can also use the ``&=`` operator for the same effect. However, the opera... | python | def intersection_update(self, *others):
r"""Update the multiset, keeping only elements found in it and all others.
>>> ms = Multiset('aab')
>>> ms.intersection_update('bc')
>>> sorted(ms)
['b']
You can also use the ``&=`` operator for the same effect. However, the opera... | [
"def",
"intersection_update",
"(",
"self",
",",
"*",
"others",
")",
":",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"_as_mapping",
",",
"others",
")",
":",
"for",
"element",
",",
"current_count",
"in",
"list",
"(",
"self",
".",
"items",
"(",
")",
... | r"""Update the multiset, keeping only elements found in it and all others.
>>> ms = Multiset('aab')
>>> ms.intersection_update('bc')
>>> sorted(ms)
['b']
You can also use the ``&=`` operator for the same effect. However, the operator version
will only accept a set as ot... | [
"r",
"Update",
"the",
"multiset",
"keeping",
"only",
"elements",
"found",
"in",
"it",
"and",
"all",
"others",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L760-L787 | train |
wheerd/multiset | multiset.py | Multiset.difference_update | def difference_update(self, *others):
r"""Remove all elements contained the others from this multiset.
>>> ms = Multiset('aab')
>>> ms.difference_update('abc')
>>> sorted(ms)
['a']
You can also use the ``-=`` operator for the same effect. However, the operator version
... | python | def difference_update(self, *others):
r"""Remove all elements contained the others from this multiset.
>>> ms = Multiset('aab')
>>> ms.difference_update('abc')
>>> sorted(ms)
['a']
You can also use the ``-=`` operator for the same effect. However, the operator version
... | [
"def",
"difference_update",
"(",
"self",
",",
"*",
"others",
")",
":",
"for",
"other",
"in",
"map",
"(",
"self",
".",
"_as_multiset",
",",
"others",
")",
":",
"for",
"element",
",",
"multiplicity",
"in",
"other",
".",
"items",
"(",
")",
":",
"self",
... | r"""Remove all elements contained the others from this multiset.
>>> ms = Multiset('aab')
>>> ms.difference_update('abc')
>>> sorted(ms)
['a']
You can also use the ``-=`` operator for the same effect. However, the operator version
will only accept a set as other operato... | [
"r",
"Remove",
"all",
"elements",
"contained",
"the",
"others",
"from",
"this",
"multiset",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L797-L822 | train |
wheerd/multiset | multiset.py | Multiset.symmetric_difference_update | def symmetric_difference_update(self, other):
r"""Update the multiset to contain only elements in either this multiset or the other but not both.
>>> ms = Multiset('aab')
>>> ms.symmetric_difference_update('abc')
>>> sorted(ms)
['a', 'c']
You can also use the ``^=`` ope... | python | def symmetric_difference_update(self, other):
r"""Update the multiset to contain only elements in either this multiset or the other but not both.
>>> ms = Multiset('aab')
>>> ms.symmetric_difference_update('abc')
>>> sorted(ms)
['a', 'c']
You can also use the ``^=`` ope... | [
"def",
"symmetric_difference_update",
"(",
"self",
",",
"other",
")",
":",
"other",
"=",
"self",
".",
"_as_multiset",
"(",
"other",
")",
"elements",
"=",
"set",
"(",
"self",
".",
"distinct_elements",
"(",
")",
")",
"|",
"set",
"(",
"other",
".",
"distinc... | r"""Update the multiset to contain only elements in either this multiset or the other but not both.
>>> ms = Multiset('aab')
>>> ms.symmetric_difference_update('abc')
>>> sorted(ms)
['a', 'c']
You can also use the ``^=`` operator for the same effect. However, the operator versi... | [
"r",
"Update",
"the",
"multiset",
"to",
"contain",
"only",
"elements",
"in",
"either",
"this",
"multiset",
"or",
"the",
"other",
"but",
"not",
"both",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L832-L860 | train |
wheerd/multiset | multiset.py | Multiset.times_update | def times_update(self, factor):
"""Update each this multiset by multiplying each element's multiplicity with the given scalar factor.
>>> ms = Multiset('aab')
>>> ms.times_update(2)
>>> sorted(ms)
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*=`` operator for t... | python | def times_update(self, factor):
"""Update each this multiset by multiplying each element's multiplicity with the given scalar factor.
>>> ms = Multiset('aab')
>>> ms.times_update(2)
>>> sorted(ms)
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*=`` operator for t... | [
"def",
"times_update",
"(",
"self",
",",
"factor",
")",
":",
"if",
"factor",
"<",
"0",
":",
"raise",
"ValueError",
"(",
"\"The factor must not be negative.\"",
")",
"elif",
"factor",
"==",
"0",
":",
"self",
".",
"clear",
"(",
")",
"else",
":",
"_elements",... | Update each this multiset by multiplying each element's multiplicity with the given scalar factor.
>>> ms = Multiset('aab')
>>> ms.times_update(2)
>>> sorted(ms)
['a', 'a', 'a', 'a', 'b', 'b']
You can also use the ``*=`` operator for the same effect:
>>> ms = Multiset(... | [
"Update",
"each",
"this",
"multiset",
"by",
"multiplying",
"each",
"element",
"s",
"multiplicity",
"with",
"the",
"given",
"scalar",
"factor",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L870-L899 | train |
wheerd/multiset | multiset.py | Multiset.add | def add(self, element, multiplicity=1):
"""Adds an element to the multiset.
>>> ms = Multiset()
>>> ms.add('a')
>>> sorted(ms)
['a']
An optional multiplicity can be specified to define how many of the element are added:
>>> ms.add('b', 2)
>>> sorted(ms)... | python | def add(self, element, multiplicity=1):
"""Adds an element to the multiset.
>>> ms = Multiset()
>>> ms.add('a')
>>> sorted(ms)
['a']
An optional multiplicity can be specified to define how many of the element are added:
>>> ms.add('b', 2)
>>> sorted(ms)... | [
"def",
"add",
"(",
"self",
",",
"element",
",",
"multiplicity",
"=",
"1",
")",
":",
"if",
"multiplicity",
"<",
"1",
":",
"raise",
"ValueError",
"(",
"\"Multiplicity must be positive\"",
")",
"self",
".",
"_elements",
"[",
"element",
"]",
"+=",
"multiplicity"... | Adds an element to the multiset.
>>> ms = Multiset()
>>> ms.add('a')
>>> sorted(ms)
['a']
An optional multiplicity can be specified to define how many of the element are added:
>>> ms.add('b', 2)
>>> sorted(ms)
['a', 'b', 'b']
This extends the ... | [
"Adds",
"an",
"element",
"to",
"the",
"multiset",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L907-L932 | train |
wheerd/multiset | multiset.py | Multiset.remove | def remove(self, element, multiplicity=None):
"""Removes an element from the multiset.
If no multiplicity is specified, the element is completely removed from the multiset:
>>> ms = Multiset('aabbbc')
>>> ms.remove('a')
2
>>> sorted(ms)
['b', 'b', 'b', 'c']
... | python | def remove(self, element, multiplicity=None):
"""Removes an element from the multiset.
If no multiplicity is specified, the element is completely removed from the multiset:
>>> ms = Multiset('aabbbc')
>>> ms.remove('a')
2
>>> sorted(ms)
['b', 'b', 'b', 'c']
... | [
"def",
"remove",
"(",
"self",
",",
"element",
",",
"multiplicity",
"=",
"None",
")",
":",
"_elements",
"=",
"self",
".",
"_elements",
"if",
"element",
"not",
"in",
"_elements",
":",
"raise",
"KeyError",
"old_multiplicity",
"=",
"_elements",
".",
"get",
"("... | Removes an element from the multiset.
If no multiplicity is specified, the element is completely removed from the multiset:
>>> ms = Multiset('aabbbc')
>>> ms.remove('a')
2
>>> sorted(ms)
['b', 'b', 'b', 'c']
If the multiplicity is given, it is subtracted from ... | [
"Removes",
"an",
"element",
"from",
"the",
"multiset",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L934-L987 | train |
wheerd/multiset | multiset.py | Multiset.discard | def discard(self, element, multiplicity=None):
"""Removes the `element` from the multiset.
If multiplicity is ``None``, all occurrences of the element are removed:
>>> ms = Multiset('aab')
>>> ms.discard('a')
2
>>> sorted(ms)
['b']
Otherwise, the multip... | python | def discard(self, element, multiplicity=None):
"""Removes the `element` from the multiset.
If multiplicity is ``None``, all occurrences of the element are removed:
>>> ms = Multiset('aab')
>>> ms.discard('a')
2
>>> sorted(ms)
['b']
Otherwise, the multip... | [
"def",
"discard",
"(",
"self",
",",
"element",
",",
"multiplicity",
"=",
"None",
")",
":",
"_elements",
"=",
"self",
".",
"_elements",
"if",
"element",
"in",
"_elements",
":",
"old_multiplicity",
"=",
"_elements",
"[",
"element",
"]",
"if",
"multiplicity",
... | Removes the `element` from the multiset.
If multiplicity is ``None``, all occurrences of the element are removed:
>>> ms = Multiset('aab')
>>> ms.discard('a')
2
>>> sorted(ms)
['b']
Otherwise, the multiplicity is subtracted from the one in the multiset and the
... | [
"Removes",
"the",
"element",
"from",
"the",
"multiset",
"."
] | 1f002397096edae3da32d004e3159345a476999c | https://github.com/wheerd/multiset/blob/1f002397096edae3da32d004e3159345a476999c/multiset.py#L989-L1048 | train |
vinci1it2000/schedula | schedula/utils/asy.py | shutdown_executors | def shutdown_executors(wait=True):
"""
Clean-up the resources of all initialized executors.
:param wait:
If True then shutdown will not return until all running futures have
finished executing and the resources used by the executors have been
reclaimed.
:type wait: bool
:re... | python | def shutdown_executors(wait=True):
"""
Clean-up the resources of all initialized executors.
:param wait:
If True then shutdown will not return until all running futures have
finished executing and the resources used by the executors have been
reclaimed.
:type wait: bool
:re... | [
"def",
"shutdown_executors",
"(",
"wait",
"=",
"True",
")",
":",
"return",
"{",
"k",
":",
"shutdown_executor",
"(",
"k",
",",
"wait",
")",
"for",
"k",
"in",
"list",
"(",
"_EXECUTORS",
".",
"keys",
"(",
")",
")",
"}"
] | Clean-up the resources of all initialized executors.
:param wait:
If True then shutdown will not return until all running futures have
finished executing and the resources used by the executors have been
reclaimed.
:type wait: bool
:return:
Shutdown pool executor.
:rtyp... | [
"Clean",
"-",
"up",
"the",
"resources",
"of",
"all",
"initialized",
"executors",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/asy.py#L88-L102 | train |
vinci1it2000/schedula | schedula/utils/asy.py | async_thread | def async_thread(sol, args, node_attr, node_id, *a, **kw):
"""
Execute `sol._evaluate_node` in an asynchronous thread.
:param sol:
Solution to be updated.
:type sol: schedula.utils.sol.Solution
:param args:
Arguments to be passed to node calls.
:type args: tuple
:param nod... | python | def async_thread(sol, args, node_attr, node_id, *a, **kw):
"""
Execute `sol._evaluate_node` in an asynchronous thread.
:param sol:
Solution to be updated.
:type sol: schedula.utils.sol.Solution
:param args:
Arguments to be passed to node calls.
:type args: tuple
:param nod... | [
"def",
"async_thread",
"(",
"sol",
",",
"args",
",",
"node_attr",
",",
"node_id",
",",
"*",
"a",
",",
"*",
"*",
"kw",
")",
":",
"executor",
"=",
"_get_executor",
"(",
"_executor_name",
"(",
"kw",
".",
"get",
"(",
"'executor'",
",",
"False",
")",
",",... | Execute `sol._evaluate_node` in an asynchronous thread.
:param sol:
Solution to be updated.
:type sol: schedula.utils.sol.Solution
:param args:
Arguments to be passed to node calls.
:type args: tuple
:param node_attr:
Dictionary of node attributes.
:type node_attr: dic... | [
"Execute",
"sol",
".",
"_evaluate_node",
"in",
"an",
"asynchronous",
"thread",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/asy.py#L206-L277 | train |
vinci1it2000/schedula | schedula/utils/asy.py | await_result | def await_result(obj, timeout=None):
"""
Return the result of a `Future` object.
:param obj:
Value object.
:type obj: concurrent.futures.Future | object
:param timeout:
The number of seconds to wait for the result if the future isn't done.
If None, then there is no limit on... | python | def await_result(obj, timeout=None):
"""
Return the result of a `Future` object.
:param obj:
Value object.
:type obj: concurrent.futures.Future | object
:param timeout:
The number of seconds to wait for the result if the future isn't done.
If None, then there is no limit on... | [
"def",
"await_result",
"(",
"obj",
",",
"timeout",
"=",
"None",
")",
":",
"from",
"concurrent",
".",
"futures",
"import",
"Future",
"return",
"obj",
".",
"result",
"(",
"timeout",
")",
"if",
"isinstance",
"(",
"obj",
",",
"Future",
")",
"else",
"obj"
] | Return the result of a `Future` object.
:param obj:
Value object.
:type obj: concurrent.futures.Future | object
:param timeout:
The number of seconds to wait for the result if the future isn't done.
If None, then there is no limit on the wait time.
:type timeout: int
:retu... | [
"Return",
"the",
"result",
"of",
"a",
"Future",
"object",
"."
] | addb9fd685be81544b796c51383ac00a31543ce9 | https://github.com/vinci1it2000/schedula/blob/addb9fd685be81544b796c51383ac00a31543ce9/schedula/utils/asy.py#L440-L466 | train |
CI-WATER/gsshapy | gsshapy/lib/pivot.py | pivot | def pivot(table, left, top, value):
"""
Creates a cross-tab or pivot table from a normalised input table. Use this
function to 'denormalize' a table of normalized records.
* The table argument can be a list of dictionaries or a Table object.
(http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/... | python | def pivot(table, left, top, value):
"""
Creates a cross-tab or pivot table from a normalised input table. Use this
function to 'denormalize' a table of normalized records.
* The table argument can be a list of dictionaries or a Table object.
(http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/... | [
"def",
"pivot",
"(",
"table",
",",
"left",
",",
"top",
",",
"value",
")",
":",
"rs",
"=",
"{",
"}",
"ysort",
"=",
"[",
"]",
"xsort",
"=",
"[",
"]",
"for",
"row",
"in",
"table",
":",
"yaxis",
"=",
"tuple",
"(",
"[",
"row",
"[",
"c",
"]",
"fo... | Creates a cross-tab or pivot table from a normalised input table. Use this
function to 'denormalize' a table of normalized records.
* The table argument can be a list of dictionaries or a Table object.
(http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/334621)
* The left argument is a tuple of he... | [
"Creates",
"a",
"cross",
"-",
"tab",
"or",
"pivot",
"table",
"from",
"a",
"normalised",
"input",
"table",
".",
"Use",
"this",
"function",
"to",
"denormalize",
"a",
"table",
"of",
"normalized",
"records",
"."
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/lib/pivot.py#L14-L94 | train |
CI-WATER/gsshapy | gsshapy/grid/hrrr_to_gssha.py | download_hrrr_for_gssha | def download_hrrr_for_gssha(main_directory,
forecast_start_date_string, #EX. '20160913'
forecast_start_hour_string, #EX. '00' to '23'
leftlon=-180, rightlon=180,
toplat=90,bottomlat=-90):
"""
Function... | python | def download_hrrr_for_gssha(main_directory,
forecast_start_date_string, #EX. '20160913'
forecast_start_hour_string, #EX. '00' to '23'
leftlon=-180, rightlon=180,
toplat=90,bottomlat=-90):
"""
Function... | [
"def",
"download_hrrr_for_gssha",
"(",
"main_directory",
",",
"forecast_start_date_string",
",",
"#EX. '20160913'",
"forecast_start_hour_string",
",",
"#EX. '00' to '23'",
"leftlon",
"=",
"-",
"180",
",",
"rightlon",
"=",
"180",
",",
"toplat",
"=",
"90",
",",
"bottoml... | Function to download HRRR data for GSSHA
URL:
http://nomads.ncep.noaa.gov/cgi-bin/filter_hrrr_2d.pl
Args:
main_directory(str): Location of the output for the forecast data.
forecast_start_date_string(str): String for day of forecast. Ex. '20160913'
forecast_start_hour_string(st... | [
"Function",
"to",
"download",
"HRRR",
"data",
"for",
"GSSHA"
] | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/grid/hrrr_to_gssha.py#L24-L114 | train |
timofurrer/ramlient | ramlient/core.py | Node._patch_resource | def _patch_resource(self, method):
"""
Patch the current RAML ResourceNode by the resource with the
correct method if it exists
If the resource with the specified method does not exist
an exception is raised.
:param str method: the method of the reso... | python | def _patch_resource(self, method):
"""
Patch the current RAML ResourceNode by the resource with the
correct method if it exists
If the resource with the specified method does not exist
an exception is raised.
:param str method: the method of the reso... | [
"def",
"_patch_resource",
"(",
"self",
",",
"method",
")",
":",
"resource",
"=",
"self",
".",
"client",
".",
"get_resource",
"(",
"\"\"",
",",
"self",
".",
"resource",
".",
"path",
",",
"method",
")",
"if",
"not",
"resource",
":",
"raise",
"UnsupportedRe... | Patch the current RAML ResourceNode by the resource with the
correct method if it exists
If the resource with the specified method does not exist
an exception is raised.
:param str method: the method of the resource
:raises UnsupportedResourceMethodError: i... | [
"Patch",
"the",
"current",
"RAML",
"ResourceNode",
"by",
"the",
"resource",
"with",
"the",
"correct",
"method",
"if",
"it",
"exists"
] | e93092252635a6b3b0aca2c390b9f820368b791c | https://github.com/timofurrer/ramlient/blob/e93092252635a6b3b0aca2c390b9f820368b791c/ramlient/core.py#L61-L77 | train |
timofurrer/ramlient | ramlient/core.py | Client.parse_raml | def parse_raml(self):
"""
Parse RAML file
"""
if utils.is_url(self.ramlfile):
raml = utils.download_file(self.ramlfile)
else:
with codecs.open(self.ramlfile, "rb", encoding="utf-8") as raml_f:
raml = raml_f.read()
loader = raml... | python | def parse_raml(self):
"""
Parse RAML file
"""
if utils.is_url(self.ramlfile):
raml = utils.download_file(self.ramlfile)
else:
with codecs.open(self.ramlfile, "rb", encoding="utf-8") as raml_f:
raml = raml_f.read()
loader = raml... | [
"def",
"parse_raml",
"(",
"self",
")",
":",
"if",
"utils",
".",
"is_url",
"(",
"self",
".",
"ramlfile",
")",
":",
"raml",
"=",
"utils",
".",
"download_file",
"(",
"self",
".",
"ramlfile",
")",
"else",
":",
"with",
"codecs",
".",
"open",
"(",
"self",
... | Parse RAML file | [
"Parse",
"RAML",
"file"
] | e93092252635a6b3b0aca2c390b9f820368b791c | https://github.com/timofurrer/ramlient/blob/e93092252635a6b3b0aca2c390b9f820368b791c/ramlient/core.py#L112-L124 | train |
timofurrer/ramlient | ramlient/core.py | Client.get_resource | def get_resource(self, base_resource_path, resource_path, method=None):
"""
Gets a resource by it's path and optional by it's method
This method does not care about the supported resource methods
unless it is specified.
:param str resource_path: The path of the ... | python | def get_resource(self, base_resource_path, resource_path, method=None):
"""
Gets a resource by it's path and optional by it's method
This method does not care about the supported resource methods
unless it is specified.
:param str resource_path: The path of the ... | [
"def",
"get_resource",
"(",
"self",
",",
"base_resource_path",
",",
"resource_path",
",",
"method",
"=",
"None",
")",
":",
"basic_path",
"=",
"base_resource_path",
"+",
"resource_path",
"dynamic_path",
"=",
"base_resource_path",
"+",
"\"{\"",
"+",
"resource_path",
... | Gets a resource by it's path and optional by it's method
This method does not care about the supported resource methods
unless it is specified.
:param str resource_path: The path of the resource
:param str method: The method of the path.
:returns: the resou... | [
"Gets",
"a",
"resource",
"by",
"it",
"s",
"path",
"and",
"optional",
"by",
"it",
"s",
"method"
] | e93092252635a6b3b0aca2c390b9f820368b791c | https://github.com/timofurrer/ramlient/blob/e93092252635a6b3b0aca2c390b9f820368b791c/ramlient/core.py#L140-L163 | train |
Robpol86/etaprogress | etaprogress/components/units.py | UnitByte.auto_no_thousands | def auto_no_thousands(self):
"""Like self.auto but calculates the next unit if >999.99."""
if self._value >= 1000000000000:
return self.TiB, 'TiB'
if self._value >= 1000000000:
return self.GiB, 'GiB'
if self._value >= 1000000:
return self.MiB, 'MiB'
... | python | def auto_no_thousands(self):
"""Like self.auto but calculates the next unit if >999.99."""
if self._value >= 1000000000000:
return self.TiB, 'TiB'
if self._value >= 1000000000:
return self.GiB, 'GiB'
if self._value >= 1000000:
return self.MiB, 'MiB'
... | [
"def",
"auto_no_thousands",
"(",
"self",
")",
":",
"if",
"self",
".",
"_value",
">=",
"1000000000000",
":",
"return",
"self",
".",
"TiB",
",",
"'TiB'",
"if",
"self",
".",
"_value",
">=",
"1000000000",
":",
"return",
"self",
".",
"GiB",
",",
"'GiB'",
"i... | Like self.auto but calculates the next unit if >999.99. | [
"Like",
"self",
".",
"auto",
"but",
"calculates",
"the",
"next",
"unit",
"if",
">",
"999",
".",
"99",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/etaprogress/components/units.py#L96-L107 | train |
Robpol86/etaprogress | example_colors.py | error | def error(message, code=1):
"""Prints an error message to stderr and exits with a status of 1 by default."""
if message:
print('ERROR: {0}'.format(message), file=sys.stderr)
else:
print(file=sys.stderr)
sys.exit(code) | python | def error(message, code=1):
"""Prints an error message to stderr and exits with a status of 1 by default."""
if message:
print('ERROR: {0}'.format(message), file=sys.stderr)
else:
print(file=sys.stderr)
sys.exit(code) | [
"def",
"error",
"(",
"message",
",",
"code",
"=",
"1",
")",
":",
"if",
"message",
":",
"print",
"(",
"'ERROR: {0}'",
".",
"format",
"(",
"message",
")",
",",
"file",
"=",
"sys",
".",
"stderr",
")",
"else",
":",
"print",
"(",
"file",
"=",
"sys",
"... | Prints an error message to stderr and exits with a status of 1 by default. | [
"Prints",
"an",
"error",
"message",
"to",
"stderr",
"and",
"exits",
"with",
"a",
"status",
"of",
"1",
"by",
"default",
"."
] | 224e8a248c2bf820bad218763281914ad3983fff | https://github.com/Robpol86/etaprogress/blob/224e8a248c2bf820bad218763281914ad3983fff/example_colors.py#L30-L36 | train |
CI-WATER/gsshapy | gsshapy/grid/grid_to_gssha.py | update_hmet_card_file | def update_hmet_card_file(hmet_card_file_path, new_hmet_data_path):
"""This function updates the paths in the HMET card file to the new
location of the HMET data. This is necessary because the file paths
are absolute and will need to be updated if moved.
Args:
hmet_card_file_path(str): Location... | python | def update_hmet_card_file(hmet_card_file_path, new_hmet_data_path):
"""This function updates the paths in the HMET card file to the new
location of the HMET data. This is necessary because the file paths
are absolute and will need to be updated if moved.
Args:
hmet_card_file_path(str): Location... | [
"def",
"update_hmet_card_file",
"(",
"hmet_card_file_path",
",",
"new_hmet_data_path",
")",
":",
"hmet_card_file_path_temp",
"=",
"\"{0}_tmp\"",
".",
"format",
"(",
"hmet_card_file_path",
")",
"try",
":",
"remove",
"(",
"hmet_card_file_path_temp",
")",
"except",
"OSErro... | This function updates the paths in the HMET card file to the new
location of the HMET data. This is necessary because the file paths
are absolute and will need to be updated if moved.
Args:
hmet_card_file_path(str): Location of the file used for the HMET_ASCII card.
new_hmet_data_path(str):... | [
"This",
"function",
"updates",
"the",
"paths",
"in",
"the",
"HMET",
"card",
"file",
"to",
"the",
"new",
"location",
"of",
"the",
"HMET",
"data",
".",
"This",
"is",
"necessary",
"because",
"the",
"file",
"paths",
"are",
"absolute",
"and",
"will",
"need",
... | 00fd4af0fd65f1614d75a52fe950a04fb0867f4c | https://github.com/CI-WATER/gsshapy/blob/00fd4af0fd65f1614d75a52fe950a04fb0867f4c/gsshapy/grid/grid_to_gssha.py#L32-L67 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.