docode-managebd

libreria para el manejo de base de datos


License
MIT
Install
pip install docode-managebd==0.0.9

Documentation

docode-managebd

N|Solid

Build Status

docode-managebd es una libreria para manejar los procesos de la base de datos utlizando el framework Django==2.X

Tecnologia

docode-managebd se implementa con las siguientes tecnologias:

  • Django - Python base framework!

Instalacion

docode-managebd requiere Python v3+ para funcionar.

Instalar por medio de pip

$ pip install docode-managebd

Uso:

Una vez instalada la libreria en el entorno virtual

Importar la libreria en Python:

import docode_managebd.procesos_bd as proc

Metodos:

Una vez que se realiza el import se pueden utilizar los metodos de la libreria

proc.obtener_campos(modelo)
proc.verificar_formulario(request,modelo)
proc.alta_registro(request,modelo)
proc.eliminar_registro(request,modelo)
proc.editar_registro(request,modelo)
proc.modal_editar(id,modelo):

Configuracion de Template

Puedes utlizar tus propios templates con un oculto para identificar que tipo es: [tipo] = ('nuevo', 'eliminar', 'editar')

<input class="d-none" type="text" name="idForm" value="[tipo]">

Por cada formulario envia el [id] del registro para su proceso solamente para eliminar y editar.

Eliminar:

<input id="idEliminar" class="d-none" type="text" name="idEliminar" value="">

Editar:

<input id="idEditar" class="d-none" type="text" name="idEditar" value="">

Versiones

Version 0.0.5: Se implementa el uso de campos FileFiled para los modelos

Licencia

MIT License

Copyright (c) 2019 DoCode

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.