edit readme link y diagrama de secuencia
This commit is contained in:
parent
d5e5dbe2c6
commit
f6c8a74465
28
README.md
28
README.md
@ -43,19 +43,31 @@ Permite importar desde una base de datos de [NewPipe](https://github.com/TeamNew
|
|||||||
- sqlite3
|
- sqlite3
|
||||||
- Importa [newpipe](https://github.com/TeamNewPipe/NewPipe/).db, *opcional*
|
- Importa [newpipe](https://github.com/TeamNewPipe/NewPipe/).db, *opcional*
|
||||||
- unzip
|
- unzip
|
||||||
- Extrae [newpipe](https://github.com/newsboat/newsboat)-db.zip, *opcional*
|
- Extrae [newpipe](https://github.com/TeamNewPipe/NewPipe/)-db.zip, *opcional*
|
||||||
- **grep**
|
- **grep**
|
||||||
- **sed**
|
- **sed**
|
||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
### Script
|
### Script
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
graph TD
|
sequenceDiagram
|
||||||
Main[Script] --> Link --> GetID[Obtener ID]
|
participant Link
|
||||||
Main --> Lista[Lista de Links] --> GetID
|
participant Lista de Links
|
||||||
Main --> BD[Base de Datos] --> Extraer[Extraer ID y Nombre]
|
participant Base de Datos
|
||||||
Main --> JSON --> Validador
|
participant Json
|
||||||
Extraer --> Validador
|
participant Validador
|
||||||
GetID --> Validador --> AddRSS[Agregar RSS]
|
participant Agregar RSS
|
||||||
|
Link->>Validador: Obtener Id
|
||||||
|
loop Extraer Id y Nombre
|
||||||
|
Base de Datos->>Validador:
|
||||||
|
end
|
||||||
|
loop Obtener Id
|
||||||
|
Lista de Links->>Validador:
|
||||||
|
end
|
||||||
|
loop Obtener Id
|
||||||
|
Json->>Validador:
|
||||||
|
end
|
||||||
|
Validador->>Agregar RSS: a newsboat urls
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user