├── README.md ├── Unidad1 ├── Clase01 │ └── main.py ├── Clase02 │ ├── Triangulo.py │ ├── __pycache__ │ │ ├── acuaticos.cpython-312.pyc │ │ ├── animal.cpython-312.pyc │ │ └── granja.cpython-312.pyc │ ├── abstracto.py │ ├── acuaticos.py │ ├── animal.py │ ├── granja.py │ └── main.py └── README.md ├── Unidad2 └── README.md ├── Unidad3 ├── Clase04 │ ├── entrada │ │ ├── libros.xml │ │ ├── reservaciones.xml │ │ └── usuarios.xml │ ├── images │ │ ├── libro1.jpg │ │ ├── libro2.jpg │ │ ├── libro3.jpg │ │ ├── libro4.jpg │ │ ├── libro5.jpg │ │ └── libro6.jpg │ └── main.py ├── Clase10 │ ├── carrito.xml │ ├── main.py │ ├── numeros.xml │ └── usuarios.xml └── README.md ├── Unidad4 ├── Clase05 │ ├── Pizarron │ │ └── EjemploClase05.excalidraw │ ├── clases │ │ ├── __pycache__ │ │ │ ├── libro.cpython-312.pyc │ │ │ └── usuario.cpython-312.pyc │ │ ├── libro.py │ │ └── usuario.py │ ├── entrada │ │ ├── libros.xml │ │ ├── reservaciones.xml │ │ └── usuarios.xml │ ├── images │ │ ├── libro1.jpg │ │ ├── libro2.jpg │ │ ├── libro3.jpg │ │ ├── libro4.jpg │ │ ├── libro5.jpg │ │ └── libro6.jpg │ ├── lista_doble │ │ ├── __pycache__ │ │ │ ├── lista_doble.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_doble.py │ │ ├── main.py │ │ └── nodo.py │ ├── lista_simple │ │ ├── __pycache__ │ │ │ ├── lista_simple.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_simple.py │ │ ├── main.py │ │ └── nodo.py │ ├── main.py │ ├── reportedot │ │ ├── lista_doble.dot │ │ └── lista_simple.dot │ └── reportes │ │ ├── lista_doble.png │ │ ├── lista_simple.pdf │ │ └── lista_simple.png ├── Clase06 │ ├── clases │ │ ├── __pycache__ │ │ │ └── cancion.cpython-312.pyc │ │ └── cancion.py │ ├── lista_circular │ │ ├── __pycache__ │ │ │ ├── lista_circular.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_circular.py │ │ ├── main.py │ │ ├── nodo.py │ │ ├── reportedot │ │ │ └── lista_circular.dot │ │ └── reportes │ │ │ └── lista_circular.png │ ├── lista_doble_circular │ │ ├── __pycache__ │ │ │ ├── lista_doble_circular.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_doble_circular.py │ │ ├── main.py │ │ ├── nodo.py │ │ ├── reportedot │ │ │ └── lista_doble_circular.dot │ │ └── reportes │ │ │ └── lista_doble_circular.png │ ├── main.py │ ├── reportedot │ │ └── lista_doble_circular.dot │ └── reportes │ │ └── lista_doble_circular.png ├── Clase07 │ ├── cola │ │ ├── __pycache__ │ │ │ ├── cola.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── cola.py │ │ ├── main.py │ │ ├── nodo.py │ │ ├── reportedot │ │ │ └── cola.dot │ │ └── reportes │ │ │ └── cola.svg │ ├── main.py │ ├── pila │ │ ├── __pycache__ │ │ │ ├── nodo.cpython-312.pyc │ │ │ └── pila.cpython-312.pyc │ │ ├── main.py │ │ ├── nodo.py │ │ ├── pila.py │ │ ├── reportedot │ │ │ └── pila.dot │ │ └── reportes │ │ │ └── pila.svg │ ├── reportedot │ │ ├── cola.dot │ │ └── pila.dot │ └── reportes │ │ ├── cola.svg │ │ └── pila.svg ├── Clase08 │ ├── clases │ │ ├── __pycache__ │ │ │ ├── libro.cpython-312.pyc │ │ │ ├── reservacion.cpython-312.pyc │ │ │ └── usuario.cpython-312.pyc │ │ ├── libro.py │ │ ├── reservacion.py │ │ └── usuario.py │ ├── entrada.py │ │ ├── libros.xml │ │ ├── reservaciones.xml │ │ └── usuarios.xml │ ├── lista_circular │ │ ├── __pycache__ │ │ │ ├── lista_circular.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_circular.py │ │ ├── main.py │ │ ├── nodo.py │ │ ├── reportedot │ │ │ └── lista_circular.dot │ │ └── reportes │ │ │ └── lista_circular.png │ ├── lista_doble │ │ ├── __pycache__ │ │ │ ├── lista_doble.cpython-312.pyc │ │ │ └── nodo.cpython-312.pyc │ │ ├── lista_doble.py │ │ ├── main.py │ │ ├── nodo.py │ │ ├── reportedot │ │ │ └── lista_doble.dot │ │ └── reportes │ │ │ └── lista_doble.png │ ├── main.py │ ├── matriz_dispersa │ │ ├── __pycache__ │ │ │ ├── listaCabecera.cpython-312.pyc │ │ │ ├── matrizDispersa.cpython-312.pyc │ │ │ ├── nodoCabecera.cpython-312.pyc │ │ │ └── nodoCelda.cpython-312.pyc │ │ ├── listaCabecera.py │ │ ├── main.py │ │ ├── matrizDispersa.py │ │ ├── nodoCabecera.py │ │ ├── nodoCelda.py │ │ ├── reportedot │ │ │ └── matrizDispersa.dot │ │ └── reportes │ │ │ └── matrizDispersa.svg │ ├── reportedot │ │ ├── lista_circular.dot │ │ ├── lista_doble.dot │ │ └── matrizDispersa.dot │ └── reportes │ │ ├── lista_circular.png │ │ ├── lista_doble.png │ │ └── matrizDispersa.svg ├── Clase09 │ ├── diccionarios.py │ ├── entrada.txt │ ├── escritura.py │ ├── ficheros.py │ └── tuplas.py ├── Clase10 │ └── main.py ├── README.md └── images │ └── img1.png ├── Unidad5 ├── README.md ├── index.html └── styles.css ├── Unidad6 ├── Clase13 │ ├── .gitignore │ ├── clases │ │ └── usuario.py │ ├── estructuras │ │ └── estructuras.py │ └── main.py ├── Clase15 │ ├── Backend │ │ ├── controllers │ │ │ ├── __pycache__ │ │ │ │ ├── estructuras.cpython-312.pyc │ │ │ │ ├── librocontroller.cpython-312.pyc │ │ │ │ └── usercontroller.cpython-312.pyc │ │ │ ├── estructuras.py │ │ │ ├── librocontroller.py │ │ │ └── usercontroller.py │ │ ├── database │ │ │ ├── .gitkeep │ │ │ ├── libros.xml │ │ │ └── usuarios.xml │ │ ├── main.py │ │ └── models │ │ │ ├── __pycache__ │ │ │ ├── libro.cpython-312.pyc │ │ │ └── user.cpython-312.pyc │ │ │ ├── libro.py │ │ │ └── user.py │ ├── Frontend │ │ ├── Frontend │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── settings.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ └── wsgi.cpython-312.pyc │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── admin.cpython-312.pyc │ │ │ │ ├── apps.cpython-312.pyc │ │ │ │ ├── forms.cpython-312.pyc │ │ │ │ ├── models.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ └── views.cpython-312.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ ├── files │ │ │ │ │ └── Proyecto2IPC2 - Junio 2024.pdf │ │ │ │ ├── images │ │ │ │ │ └── Usac_logo.png │ │ │ │ └── js │ │ │ │ │ └── tailwind.config.js │ │ │ ├── templates │ │ │ │ ├── cargaadmin.html │ │ │ │ ├── estadisticas.html │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── sidebaradmin.html │ │ │ │ ├── user.html │ │ │ │ ├── verLibrosAdmin.html │ │ │ │ └── verpdf.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── db.sqlite3 │ │ └── manage.py │ └── entrada │ │ ├── libros.xml │ │ ├── reservaciones.xml │ │ └── usuarios.xml ├── Clase16 │ ├── Backend │ │ ├── controllers │ │ │ ├── __pycache__ │ │ │ │ ├── alquilercontroller.cpython-312.pyc │ │ │ │ ├── carritocontroller.cpython-312.pyc │ │ │ │ ├── estructuras.cpython-312.pyc │ │ │ │ ├── librocontroller.cpython-312.pyc │ │ │ │ └── usercontroller.cpython-312.pyc │ │ │ ├── alquilercontroller.py │ │ │ ├── carritocontroller.py │ │ │ ├── estructuras.py │ │ │ ├── librocontroller.py │ │ │ └── usercontroller.py │ │ ├── database │ │ │ ├── .gitkeep │ │ │ ├── alquileres.xml │ │ │ ├── libros.xml │ │ │ └── usuarios.xml │ │ ├── main.py │ │ └── models │ │ │ ├── __pycache__ │ │ │ ├── alquiler.cpython-312.pyc │ │ │ ├── carro.cpython-312.pyc │ │ │ ├── libro.cpython-312.pyc │ │ │ └── user.cpython-312.pyc │ │ │ ├── alquiler.py │ │ │ ├── carro.py │ │ │ ├── libro.py │ │ │ └── user.py │ ├── Frontend │ │ ├── Frontend │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── settings.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ └── wsgi.cpython-312.pyc │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── admin.cpython-312.pyc │ │ │ │ ├── apps.cpython-312.pyc │ │ │ │ ├── forms.cpython-312.pyc │ │ │ │ ├── models.cpython-312.pyc │ │ │ │ ├── urls.cpython-312.pyc │ │ │ │ └── views.cpython-312.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-312.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ ├── files │ │ │ │ │ └── Proyecto2IPC2 - Junio 2024.pdf │ │ │ │ ├── images │ │ │ │ │ └── Usac_logo.png │ │ │ │ └── js │ │ │ │ │ └── tailwind.config.js │ │ │ ├── templates │ │ │ │ ├── alquilar.html │ │ │ │ ├── cargaadmin.html │ │ │ │ ├── estadisticas.html │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── sidebaradmin.html │ │ │ │ ├── sidebaruser.html │ │ │ │ ├── user.html │ │ │ │ ├── verCarrito.html │ │ │ │ ├── verLibrosAdmin.html │ │ │ │ └── verpdf.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── db.sqlite3 │ │ └── manage.py │ └── entrada │ │ ├── libros.xml │ │ ├── reservaciones.xml │ │ └── usuarios.xml ├── Manual de Inicio Django.md ├── README.md └── imgs │ ├── img1.png │ └── img2.png ├── Unidad7 ├── Clase14 │ ├── controllers │ │ ├── __pycache__ │ │ │ ├── estructuras.cpython-312.pyc │ │ │ ├── librocontroller.cpython-312.pyc │ │ │ └── usercontroller.cpython-312.pyc │ │ ├── estructuras.py │ │ ├── librocontroller.py │ │ └── usercontroller.py │ ├── database │ │ ├── .gitkeep │ │ ├── libros.xml │ │ └── usuarios.xml │ ├── main.py │ └── models │ │ ├── __pycache__ │ │ ├── libro.cpython-312.pyc │ │ └── user.cpython-312.pyc │ │ ├── libro.py │ │ └── user.py └── README.md └── UnidadExtra ├── Clase18 ├── Backend │ ├── Dockerfile │ ├── controllers │ │ ├── __pycache__ │ │ │ ├── alquilercontroller.cpython-312.pyc │ │ │ ├── carritocontroller.cpython-312.pyc │ │ │ ├── estructuras.cpython-312.pyc │ │ │ ├── librocontroller.cpython-312.pyc │ │ │ └── usercontroller.cpython-312.pyc │ │ ├── alquilercontroller.py │ │ ├── carritocontroller.py │ │ ├── estructuras.py │ │ ├── librocontroller.py │ │ └── usercontroller.py │ ├── database │ │ ├── .gitkeep │ │ ├── alquileres.xml │ │ ├── libros.xml │ │ └── usuarios.xml │ ├── main.py │ ├── models │ │ ├── __pycache__ │ │ │ ├── alquiler.cpython-312.pyc │ │ │ ├── carro.cpython-312.pyc │ │ │ ├── libro.cpython-312.pyc │ │ │ └── user.cpython-312.pyc │ │ ├── alquiler.py │ │ ├── carro.py │ │ ├── libro.py │ │ └── user.py │ └── requirements.txt ├── Frontend │ ├── Dockerfile │ ├── Frontend │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── settings.cpython-312.pyc │ │ │ ├── urls.cpython-312.pyc │ │ │ └── wsgi.cpython-312.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── app │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── admin.cpython-312.pyc │ │ │ ├── apps.cpython-312.pyc │ │ │ ├── forms.cpython-312.pyc │ │ │ ├── models.cpython-312.pyc │ │ │ ├── urls.cpython-312.pyc │ │ │ └── views.cpython-312.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── models.py │ │ ├── static │ │ │ ├── files │ │ │ │ └── Proyecto2IPC2 - Junio 2024.pdf │ │ │ ├── images │ │ │ │ └── Usac_logo.png │ │ │ └── js │ │ │ │ └── tailwind.config.js │ │ ├── templates │ │ │ ├── alquilar.html │ │ │ ├── cargaadmin.html │ │ │ ├── estadisticas.html │ │ │ ├── index.html │ │ │ ├── login.html │ │ │ ├── sidebaradmin.html │ │ │ ├── sidebaruser.html │ │ │ ├── user.html │ │ │ ├── verCarrito.html │ │ │ ├── verLibrosAdmin.html │ │ │ └── verpdf.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── requirements.txt └── entrada │ ├── libros.xml │ ├── reservaciones.xml │ └── usuarios.xml └── README.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/README.md -------------------------------------------------------------------------------- /Unidad1/Clase01/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase01/main.py -------------------------------------------------------------------------------- /Unidad1/Clase02/Triangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/Triangulo.py -------------------------------------------------------------------------------- /Unidad1/Clase02/__pycache__/acuaticos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/__pycache__/acuaticos.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad1/Clase02/__pycache__/animal.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/__pycache__/animal.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad1/Clase02/__pycache__/granja.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/__pycache__/granja.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad1/Clase02/abstracto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/abstracto.py -------------------------------------------------------------------------------- /Unidad1/Clase02/acuaticos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/acuaticos.py -------------------------------------------------------------------------------- /Unidad1/Clase02/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/animal.py -------------------------------------------------------------------------------- /Unidad1/Clase02/granja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/granja.py -------------------------------------------------------------------------------- /Unidad1/Clase02/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/Clase02/main.py -------------------------------------------------------------------------------- /Unidad1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad1/README.md -------------------------------------------------------------------------------- /Unidad2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad2/README.md -------------------------------------------------------------------------------- /Unidad3/Clase04/entrada/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/entrada/libros.xml -------------------------------------------------------------------------------- /Unidad3/Clase04/entrada/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/entrada/reservaciones.xml -------------------------------------------------------------------------------- /Unidad3/Clase04/entrada/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/entrada/usuarios.xml -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro1.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro2.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro3.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro4.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro5.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/images/libro6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/images/libro6.jpg -------------------------------------------------------------------------------- /Unidad3/Clase04/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase04/main.py -------------------------------------------------------------------------------- /Unidad3/Clase10/carrito.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase10/carrito.xml -------------------------------------------------------------------------------- /Unidad3/Clase10/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase10/main.py -------------------------------------------------------------------------------- /Unidad3/Clase10/numeros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase10/numeros.xml -------------------------------------------------------------------------------- /Unidad3/Clase10/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/Clase10/usuarios.xml -------------------------------------------------------------------------------- /Unidad3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad3/README.md -------------------------------------------------------------------------------- /Unidad4/Clase05/Pizarron/EjemploClase05.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/Pizarron/EjemploClase05.excalidraw -------------------------------------------------------------------------------- /Unidad4/Clase05/clases/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/clases/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/clases/__pycache__/usuario.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/clases/__pycache__/usuario.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/clases/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/clases/libro.py -------------------------------------------------------------------------------- /Unidad4/Clase05/clases/usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/clases/usuario.py -------------------------------------------------------------------------------- /Unidad4/Clase05/entrada/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/entrada/libros.xml -------------------------------------------------------------------------------- /Unidad4/Clase05/entrada/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/entrada/reservaciones.xml -------------------------------------------------------------------------------- /Unidad4/Clase05/entrada/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/entrada/usuarios.xml -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro1.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro2.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro3.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro4.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro5.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/images/libro6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/images/libro6.jpg -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_doble/__pycache__/lista_doble.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_doble/__pycache__/lista_doble.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_doble/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_doble/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_doble/lista_doble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_doble/lista_doble.py -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_doble/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_doble/main.py -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_doble/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_doble/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_simple/__pycache__/lista_simple.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_simple/__pycache__/lista_simple.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_simple/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_simple/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_simple/lista_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_simple/lista_simple.py -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_simple/main.py -------------------------------------------------------------------------------- /Unidad4/Clase05/lista_simple/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/lista_simple/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase05/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/main.py -------------------------------------------------------------------------------- /Unidad4/Clase05/reportedot/lista_doble.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/reportedot/lista_doble.dot -------------------------------------------------------------------------------- /Unidad4/Clase05/reportedot/lista_simple.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/reportedot/lista_simple.dot -------------------------------------------------------------------------------- /Unidad4/Clase05/reportes/lista_doble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/reportes/lista_doble.png -------------------------------------------------------------------------------- /Unidad4/Clase05/reportes/lista_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/reportes/lista_simple.pdf -------------------------------------------------------------------------------- /Unidad4/Clase05/reportes/lista_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase05/reportes/lista_simple.png -------------------------------------------------------------------------------- /Unidad4/Clase06/clases/__pycache__/cancion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/clases/__pycache__/cancion.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase06/clases/cancion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/clases/cancion.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/__pycache__/lista_circular.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/__pycache__/lista_circular.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/lista_circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/lista_circular.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/main.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/reportedot/lista_circular.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/reportedot/lista_circular.dot -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_circular/reportes/lista_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_circular/reportes/lista_circular.png -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/__pycache__/lista_doble_circular.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/__pycache__/lista_doble_circular.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/lista_doble_circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/lista_doble_circular.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/main.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/reportedot/lista_doble_circular.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/reportedot/lista_doble_circular.dot -------------------------------------------------------------------------------- /Unidad4/Clase06/lista_doble_circular/reportes/lista_doble_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/lista_doble_circular/reportes/lista_doble_circular.png -------------------------------------------------------------------------------- /Unidad4/Clase06/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/main.py -------------------------------------------------------------------------------- /Unidad4/Clase06/reportedot/lista_doble_circular.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/reportedot/lista_doble_circular.dot -------------------------------------------------------------------------------- /Unidad4/Clase06/reportes/lista_doble_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase06/reportes/lista_doble_circular.png -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/__pycache__/cola.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/__pycache__/cola.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/cola.py -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/main.py -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/reportedot/cola.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/reportedot/cola.dot -------------------------------------------------------------------------------- /Unidad4/Clase07/cola/reportes/cola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/cola/reportes/cola.svg -------------------------------------------------------------------------------- /Unidad4/Clase07/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/main.py -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/__pycache__/pila.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/__pycache__/pila.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/main.py -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/pila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/pila.py -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/reportedot/pila.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/reportedot/pila.dot -------------------------------------------------------------------------------- /Unidad4/Clase07/pila/reportes/pila.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/pila/reportes/pila.svg -------------------------------------------------------------------------------- /Unidad4/Clase07/reportedot/cola.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/reportedot/cola.dot -------------------------------------------------------------------------------- /Unidad4/Clase07/reportedot/pila.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/reportedot/pila.dot -------------------------------------------------------------------------------- /Unidad4/Clase07/reportes/cola.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/reportes/cola.svg -------------------------------------------------------------------------------- /Unidad4/Clase07/reportes/pila.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase07/reportes/pila.svg -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/__pycache__/reservacion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/__pycache__/reservacion.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/__pycache__/usuario.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/__pycache__/usuario.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/libro.py -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/reservacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/reservacion.py -------------------------------------------------------------------------------- /Unidad4/Clase08/clases/usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/clases/usuario.py -------------------------------------------------------------------------------- /Unidad4/Clase08/entrada.py/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/entrada.py/libros.xml -------------------------------------------------------------------------------- /Unidad4/Clase08/entrada.py/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/entrada.py/reservaciones.xml -------------------------------------------------------------------------------- /Unidad4/Clase08/entrada.py/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/entrada.py/usuarios.xml -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/__pycache__/lista_circular.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/__pycache__/lista_circular.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/lista_circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/lista_circular.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/main.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/reportedot/lista_circular.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/reportedot/lista_circular.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_circular/reportes/lista_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_circular/reportes/lista_circular.png -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/__pycache__/lista_doble.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/__pycache__/lista_doble.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/__pycache__/nodo.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/__pycache__/nodo.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/lista_doble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/lista_doble.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/main.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/nodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/nodo.py -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/reportedot/lista_doble.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/reportedot/lista_doble.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/lista_doble/reportes/lista_doble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/lista_doble/reportes/lista_doble.png -------------------------------------------------------------------------------- /Unidad4/Clase08/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/main.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/__pycache__/listaCabecera.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/__pycache__/listaCabecera.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/__pycache__/matrizDispersa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/__pycache__/matrizDispersa.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/__pycache__/nodoCabecera.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/__pycache__/nodoCabecera.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/__pycache__/nodoCelda.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/__pycache__/nodoCelda.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/listaCabecera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/listaCabecera.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/main.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/matrizDispersa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/matrizDispersa.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/nodoCabecera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/nodoCabecera.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/nodoCelda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/nodoCelda.py -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/reportedot/matrizDispersa.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/reportedot/matrizDispersa.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/matriz_dispersa/reportes/matrizDispersa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/matriz_dispersa/reportes/matrizDispersa.svg -------------------------------------------------------------------------------- /Unidad4/Clase08/reportedot/lista_circular.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportedot/lista_circular.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/reportedot/lista_doble.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportedot/lista_doble.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/reportedot/matrizDispersa.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportedot/matrizDispersa.dot -------------------------------------------------------------------------------- /Unidad4/Clase08/reportes/lista_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportes/lista_circular.png -------------------------------------------------------------------------------- /Unidad4/Clase08/reportes/lista_doble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportes/lista_doble.png -------------------------------------------------------------------------------- /Unidad4/Clase08/reportes/matrizDispersa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase08/reportes/matrizDispersa.svg -------------------------------------------------------------------------------- /Unidad4/Clase09/diccionarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase09/diccionarios.py -------------------------------------------------------------------------------- /Unidad4/Clase09/entrada.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase09/entrada.txt -------------------------------------------------------------------------------- /Unidad4/Clase09/escritura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase09/escritura.py -------------------------------------------------------------------------------- /Unidad4/Clase09/ficheros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase09/ficheros.py -------------------------------------------------------------------------------- /Unidad4/Clase09/tuplas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase09/tuplas.py -------------------------------------------------------------------------------- /Unidad4/Clase10/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/Clase10/main.py -------------------------------------------------------------------------------- /Unidad4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/README.md -------------------------------------------------------------------------------- /Unidad4/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad4/images/img1.png -------------------------------------------------------------------------------- /Unidad5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad5/README.md -------------------------------------------------------------------------------- /Unidad5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad5/index.html -------------------------------------------------------------------------------- /Unidad5/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad5/styles.css -------------------------------------------------------------------------------- /Unidad6/Clase13/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /Unidad6/Clase13/clases/usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase13/clases/usuario.py -------------------------------------------------------------------------------- /Unidad6/Clase13/estructuras/estructuras.py: -------------------------------------------------------------------------------- 1 | lista_usuarios = [] -------------------------------------------------------------------------------- /Unidad6/Clase13/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase13/main.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/__pycache__/estructuras.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/controllers/__pycache__/estructuras.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/estructuras.py: -------------------------------------------------------------------------------- 1 | users =[] 2 | libros = [] -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/librocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/controllers/librocontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/controllers/usercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/controllers/usercontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/database/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/database/libros.xml -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/database/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/database/usuarios.xml -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/main.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/models/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/models/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/models/__pycache__/user.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/models/__pycache__/user.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/models/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/models/libro.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Backend/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Backend/models/user.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/__pycache__/settings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/__pycache__/settings.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/asgi.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/settings.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/urls.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/Frontend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/Frontend/wsgi.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/admin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/admin.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/apps.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/apps.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/forms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/forms.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/__pycache__/views.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/__pycache__/views.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/admin.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/apps.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/forms.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/models.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/static/images/Usac_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/static/images/Usac_logo.png -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/static/js/tailwind.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/cargaadmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/cargaadmin.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/estadisticas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/estadisticas.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/index.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/login.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/sidebaradmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/sidebaradmin.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/user.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/verLibrosAdmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/verLibrosAdmin.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/templates/verpdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/templates/verpdf.html -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/tests.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/urls.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/app/views.py -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase15/Frontend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/Frontend/manage.py -------------------------------------------------------------------------------- /Unidad6/Clase15/entrada/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/entrada/libros.xml -------------------------------------------------------------------------------- /Unidad6/Clase15/entrada/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/entrada/reservaciones.xml -------------------------------------------------------------------------------- /Unidad6/Clase15/entrada/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase15/entrada/usuarios.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/__pycache__/alquilercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/__pycache__/alquilercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/__pycache__/carritocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/__pycache__/carritocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/__pycache__/estructuras.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/__pycache__/estructuras.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/alquilercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/alquilercontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/carritocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/carritocontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/estructuras.py: -------------------------------------------------------------------------------- 1 | users =[] 2 | libros = [] -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/librocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/librocontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/controllers/usercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/controllers/usercontroller.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/database/alquileres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/database/alquileres.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/database/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/database/libros.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/database/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/database/usuarios.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/main.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/__pycache__/alquiler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/__pycache__/alquiler.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/__pycache__/carro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/__pycache__/carro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/__pycache__/user.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/__pycache__/user.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/alquiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/alquiler.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/carro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/carro.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/libro.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Backend/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Backend/models/user.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/__pycache__/settings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/__pycache__/settings.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/asgi.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/settings.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/urls.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/Frontend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/Frontend/wsgi.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/admin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/admin.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/apps.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/apps.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/forms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/forms.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/__pycache__/views.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/__pycache__/views.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/admin.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/apps.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/forms.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/models.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/static/images/Usac_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/static/images/Usac_logo.png -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/static/js/tailwind.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/alquilar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/alquilar.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/cargaadmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/cargaadmin.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/estadisticas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/estadisticas.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/index.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/login.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/sidebaradmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/sidebaradmin.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/sidebaruser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/sidebaruser.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/user.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/verCarrito.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/verCarrito.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/verLibrosAdmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/verLibrosAdmin.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/templates/verpdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/templates/verpdf.html -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/tests.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/urls.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/app/views.py -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad6/Clase16/Frontend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/Frontend/manage.py -------------------------------------------------------------------------------- /Unidad6/Clase16/entrada/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/entrada/libros.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/entrada/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/entrada/reservaciones.xml -------------------------------------------------------------------------------- /Unidad6/Clase16/entrada/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Clase16/entrada/usuarios.xml -------------------------------------------------------------------------------- /Unidad6/Manual de Inicio Django.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/Manual de Inicio Django.md -------------------------------------------------------------------------------- /Unidad6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/README.md -------------------------------------------------------------------------------- /Unidad6/imgs/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/imgs/img1.png -------------------------------------------------------------------------------- /Unidad6/imgs/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad6/imgs/img2.png -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/__pycache__/estructuras.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/controllers/__pycache__/estructuras.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/__pycache__/librocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/controllers/__pycache__/librocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/__pycache__/usercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/controllers/__pycache__/usercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/estructuras.py: -------------------------------------------------------------------------------- 1 | users =[] 2 | libros = [] -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/librocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/controllers/librocontroller.py -------------------------------------------------------------------------------- /Unidad7/Clase14/controllers/usercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/controllers/usercontroller.py -------------------------------------------------------------------------------- /Unidad7/Clase14/database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Unidad7/Clase14/database/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/database/libros.xml -------------------------------------------------------------------------------- /Unidad7/Clase14/database/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/database/usuarios.xml -------------------------------------------------------------------------------- /Unidad7/Clase14/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/main.py -------------------------------------------------------------------------------- /Unidad7/Clase14/models/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/models/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad7/Clase14/models/__pycache__/user.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/models/__pycache__/user.cpython-312.pyc -------------------------------------------------------------------------------- /Unidad7/Clase14/models/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/models/libro.py -------------------------------------------------------------------------------- /Unidad7/Clase14/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/Clase14/models/user.py -------------------------------------------------------------------------------- /Unidad7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/Unidad7/README.md -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/Dockerfile -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/__pycache__/alquilercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/__pycache__/alquilercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/__pycache__/carritocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/__pycache__/carritocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/__pycache__/estructuras.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/__pycache__/estructuras.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/__pycache__/librocontroller.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/__pycache__/usercontroller.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/alquilercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/alquilercontroller.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/carritocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/carritocontroller.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/estructuras.py: -------------------------------------------------------------------------------- 1 | users =[] 2 | libros = [] -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/librocontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/librocontroller.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/controllers/usercontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/controllers/usercontroller.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/database/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/database/alquileres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/database/alquileres.xml -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/database/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/database/libros.xml -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/database/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/database/usuarios.xml -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/main.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/__pycache__/alquiler.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/__pycache__/alquiler.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/__pycache__/carro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/__pycache__/carro.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/__pycache__/libro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/__pycache__/libro.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/__pycache__/user.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/__pycache__/user.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/alquiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/alquiler.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/carro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/carro.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/libro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/libro.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/models/user.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Backend/requirements.txt -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Dockerfile -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/__pycache__/settings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/__pycache__/settings.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/__pycache__/wsgi.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/asgi.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/settings.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/urls.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/Frontend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/Frontend/wsgi.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/admin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/admin.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/apps.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/apps.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/forms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/forms.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/__pycache__/views.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/__pycache__/views.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/admin.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/apps.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/forms.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/migrations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/models.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/static/files/Proyecto2IPC2 - Junio 2024.pdf -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/static/images/Usac_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/static/images/Usac_logo.png -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/static/js/tailwind.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/alquilar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/alquilar.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/cargaadmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/cargaadmin.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/estadisticas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/estadisticas.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/index.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/login.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/sidebaradmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/sidebaradmin.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/sidebaruser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/sidebaruser.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/user.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/verCarrito.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/verCarrito.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/verLibrosAdmin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/verLibrosAdmin.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/templates/verpdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/templates/verpdf.html -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/tests.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/urls.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/app/views.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/manage.py -------------------------------------------------------------------------------- /UnidadExtra/Clase18/Frontend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/Frontend/requirements.txt -------------------------------------------------------------------------------- /UnidadExtra/Clase18/entrada/libros.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/entrada/libros.xml -------------------------------------------------------------------------------- /UnidadExtra/Clase18/entrada/reservaciones.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/entrada/reservaciones.xml -------------------------------------------------------------------------------- /UnidadExtra/Clase18/entrada/usuarios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/Clase18/entrada/usuarios.xml -------------------------------------------------------------------------------- /UnidadExtra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodrialeh01/IPC2-VJ2024/HEAD/UnidadExtra/README.md --------------------------------------------------------------------------------