probcomp/bayeslite

Add open modes to bayeslite_open

Open

#238 aberto em 7 de out. de 2015

Ver no GitHub
 (4 comments) (0 reactions) (0 assignees)Python (63 forks)batch import
help wantedk min/hr

Métricas do repositório

Stars
 (915 stars)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

By analogy with standard file open modes. Useful modes include

  • read-only (get a database that exists, but don't save changes back)
  • force the database being opened actually exists (crash if absent)
  • force the database being opened is fresh (crash if exists)
  • overwrite the database being opened with a fresh one (truncate on open if exists)

Guia do colaborador