nitrokey.updates

exception nitrokey.updates.DownloadError

Bases: Exception

__init__(msg)
Parâmetros:

msg (str)

Tipo de retorno:

None

exception nitrokey.updates.OverwriteError

Bases: Exception

__init__(path)
Parâmetros:

path (str)

Tipo de retorno:

None

class nitrokey.updates.Asset

Bases: object

Ativo(tag: str, url: str)

__init__(tag, url)
Parâmetros:
  • tag (str)

  • url (str)

Tipo de retorno:

None

download(f, callback=None)
Parâmetros:
  • f (BinaryIO)

  • callback (Callable[[int, int], None] | None)

Tipo de retorno:

None

download_to_dir(d, overwrite=False, callback=None)
Parâmetros:
  • d (str)

  • overwrite (bool)

  • callback (Callable[[int, int], None] | None)

Tipo de retorno:

str

read(callback=None)
Parâmetros:

callback (Callable[[int, int], None] | None)

Tipo de retorno:

bytes

tag: str
url: str
class nitrokey.updates.Release

Bases: object

Libertar(tag: str, activos: lista[str])

__init__(tag, assets)
Parâmetros:
  • tag (str)

  • assets (list[str])

Tipo de retorno:

None

find_asset(url_pattern)
Parâmetros:

url_pattern (Pattern[str])

Tipo de retorno:

Asset | None

require_asset(url_pattern)
Parâmetros:

url_pattern (Pattern[str])

Tipo de retorno:

Asset

assets: list[str]
tag: str
class nitrokey.updates.Repository

Bases: object

Repositório(proprietário: str, nome: str)

__init__(owner, name)
Parâmetros:
  • owner (str)

  • name (str)

Tipo de retorno:

None

get_latest_release()
Tipo de retorno:

Release

get_release(tag)
Parâmetros:

tag (str)

Tipo de retorno:

Release

get_release_or_latest(tag=None)
Parâmetros:

tag (str | None)

Tipo de retorno:

Release

name: str
owner: str