Un paque te encargado de ayudarte a hacer base de datos censillas en json
Project description
facil-json-db
Iniciar
Para iniciar tu base de datos debes usar la clase BaseDeDatos() que te ayudara a modificar tu base de datos y la creara en caso de que no exista
import faciljsondb
db = faciljsondb("nombre")
leer
En este modulo hay dos funciones leer (leer y leer_async) esta funcion no retorna nada solo imprime en pantalla tu db.
leer
import faciljsondb
db = faciljsondb("nombre")
leer()
async
import faciljsondb
import asyncio
db = faciljsondb("nombre")
asyncio.run(leer([tiempo1,] [tiempo2]))
obtener
Te devuelve el json almacenado.
obtener
import faciljsondb
db = faciljsondb("nombre")
obtener()
async
import faciljsondb
import asyncio
db = faciljsondb("nombre")
asyncio.run(obtener([tiempo1,] [tiempo2]))
escribir
Sirve para escribir el json.
escribir
import faciljsondb
db = faciljsondb("nombre")
escribir(json)
async
import faciljsondb
import asyncio
db = faciljsondb("nombre")
asyncio.run(escribir(json, [tiempo1,] [tiempo2]))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
faciljsondb-0.0.5.tar.gz
(1.8 kB
view hashes)