obspy.clients.nrl.client.NRLPath

class NRLPath[source]

Bases: builtins.str

Attributes

__dict__
__doc__
__module__ str(object=’‘) -> str
__weakref__ list of weak references to the object (if defined)

Public Methods

capitalize Return a capitalized version of S, i.e. make the first character
casefold Return a version of S suitable for caseless comparisons.
center Return S centered in a string of length width. Padding is
count Return the number of non-overlapping occurrences of substring sub in
encode Encode S using the codec registered for encoding. Default encoding
endswith Return True if S ends with the specified suffix, False otherwise.
expandtabs Return a copy of S where all tab characters are expanded using spaces.
find Return the lowest index in S where substring sub is found,
format Return a formatted version of S, using substitutions from args and kwargs.
format_map Return a formatted version of S, using substitutions from mapping.
index Like S.find() but raise ValueError when the substring is not found.
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 Return True if S is a valid identifier according
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 Return True if all characters in S are considered
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 Return a string which is the concatenation of the strings in the iterable.
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 Search for the separator sep in S, and return the part before it,
replace Return a copy of S with all occurrences of substring
rfind Return the highest index in S where substring sub is found,
rindex Like S.rfind() but raise ValueError when the substring is not found.
rjust Return S right-justified in a string of length width. Padding is
rpartition Search for the separator sep in S, starting at the end of S, and return
rsplit Return a list of the words in S, using sep as the
rstrip Return a copy of the string S with trailing whitespace removed.
split Return a list of the words in S, using sep as the
splitlines Return a list of the lines in S, breaking at line boundaries.
startswith Return True if S starts with the specified prefix, False otherwise.
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 in which each character has 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

Special Methods

__dir__ default dir() implementation
__format__ Return a formatted version of S as described by format_spec.
__getnewargs__
__new__ Create and return a new object.
__reduce__ helper for pickle
__reduce_ex__ helper for pickle
__sizeof__
__subclasshook__ Abstract classes can override this to customize issubclass().