obspy.clients.nrl.client.NRLPath¶
- class NRLPath[source]¶
Bases: future.types.newstr.newstr
Attributes
__dict__ __doc__ __module__ str(object=’‘) -> string __weakref__ list of weak references to the object (if defined) no_convert_msg str(object=’‘) -> string unorderable_err str(object=’‘) -> string Public Methods
capitalize Return a capitalized version of S, i.e. make the first character center Return S centered in a Unicode string of length width. Padding is count Return the number of non-overlapping occurrences of substring sub in decode encode Returns bytes endswith expandtabs Return a copy of S where all tab characters are expanded using spaces. find format Return a formatted version of S, using substitutions from args and kwargs. format_map index Like newstr.find() but raise ValueError when the substring is not isalnum Return True if all characters in S are alphanumeric isalpha Return True if all characters in S are alphabetic isdecimal Return True if there are only decimal characters in S, isdigit Return True if all characters in S are digits isidentifier islower Return True if all cased characters in S are lowercase and there is isnumeric Return True if there are only numeric characters in S, isprintable isspace Return True if all characters in S are whitespace istitle Return True if S is a titlecased string and there is at least one isupper Return True if all cased characters in S are uppercase and there is join ljust Return S left-justified in a Unicode string of length width. Padding is lower Return a copy of the string S converted to lowercase. lstrip Return a copy of the string S with leading whitespace removed. maketrans Return a translation table usable for str.translate(). partition replace rfind rindex Like S.rfind() but raise ValueError when the substring is not found. rjust Return S right-justified in a Unicode string of length width. Padding is rpartition rsplit rstrip Return a copy of the string S with trailing whitespace removed. split splitlines Return a list of the lines in S, breaking at line boundaries. startswith strip Return a copy of the string S with leading and trailing swapcase Return a copy of S with uppercase characters converted to lowercase title Return a titlecased version of S, i.e. words start with title case translate Return a copy of the string S, where all characters have been mapped upper Return a copy of S converted to uppercase. zfill Pad a numeric string S with zeros on the left, to fill a field Private Methods
Warning
Private methods are mainly for internal/developer use and their API might change without notice.
_formatter_field_name_split _formatter_parser Special Methods
__add__ __contains__ __eq__ __format__ Return a formatted version of S as described by format_spec. __ge__ __getattribute__ A trick to cause the hasattr builtin-fn to return False for __getitem__ Warning: Python <= 2.7.6 has a bug that causes this method never to be called __getnewargs__ __gt__ __le__ __lt__ __mul__ __native__ A hook for the future.utils.native() function. __ne__ __new__ From the Py3 str docstring: __radd__ left + self __reduce__ helper for pickle __reduce_ex__ helper for pickle __repr__ Without the u prefix __rmul__ __sizeof__ __subclasshook__ Abstract classes can override this to customize issubclass().