bb_api 0.2.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bb_api
3
- Version: 0.2.0
3
+ Version: 0.4.0
4
4
  Summary: Wrapper da API do Banco do Brasil.
5
5
  Requires-Python: >=3.13
6
6
  Description-Content-Type: text/markdown
@@ -4,14 +4,22 @@ from importlib.metadata import version
4
4
  try:
5
5
  __version__ = version("bb_api")
6
6
  except:
7
- __version__ = "0.2.0"
7
+ __version__ = "0.4.0"
8
8
 
9
9
 
10
10
  from .common import Ambiente
11
11
  from .accountability import AccountabilityV3RepasseAPI, AccountabilityV3ControleAPI
12
+ from .sia import BBSiaAPI
13
+ from .gestao_agil import (
14
+ parse_retorno_abertura_massificada,
15
+ ler_retorno_abertura_massificada,
16
+ )
12
17
 
13
18
  __all__ = [
14
19
  "Ambiente",
15
20
  "AccountabilityV3RepasseAPI",
16
21
  "AccountabilityV3ControleAPI",
22
+ "BBSiaAPI",
23
+ "parse_retorno_abertura_massificada",
24
+ "ler_retorno_abertura_massificada",
17
25
  ]