Skip to content

Commit

Permalink
docs: update README to include instructions for adding a new bank
Browse files Browse the repository at this point in the history
  • Loading branch information
gabino committed Dec 23, 2024
1 parent d84ee8a commit acb4644
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,20 @@ import clabe
clabe.generate_new_clabes(10, '002123456')
```

Para generar un nuevo banco
### Para agregar un nuevo banco

A partir de la versión 2.0.0, el paquete se actualizará a **Pydantic v2**, lo que significa que las versiones anteriores ya no recibirán soporte.

Sin embargo, hemos añadido una función para agregar bancos adicionales a la lista, en caso de que sea necesario. Esto se puede hacer sin necesidad de crear un PR. Para agregar un banco, simplemente llama a la siguiente función con el código de Banxico y el nombre del banco:

```python
import clabe
clabe.configure_additional_bank('12345', 'New Bank')
```

Para eliminar un banco

```python
import clabe
clabe.configure_additional_bank('777', '713', 'New Bank')
clabe.remove_bank('12345')
```

0 comments on commit acb4644

Please sign in to comment.