Add files using upload-large-folder tool
Browse files- 69b-bis.csv +4 -0
- 69b.csv +0 -0
- README.md +13 -4
69b-bis.csv
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
articulo,numero,rfc,nombre_contribuyente,situacion_contribuyente,presuncion_oficio_sat,presuncion_oficio_sat_original,presuncion_fecha_sat,presuncion_oficio_dof,presuncion_oficio_dof_original,presuncion_fecha_dof,presuncion_tiene_extra,desvirtuados_oficio_sat,desvirtuados_oficio_sat_original,desvirtuados_fecha_sat,desvirtuados_oficio_dof,desvirtuados_oficio_dof_original,desvirtuados_fecha_dof,desvirtuados_tiene_extra,definitivos_oficio_sat,definitivos_oficio_sat_original,definitivos_fecha_sat,definitivos_oficio_dof,definitivos_oficio_dof_original,definitivos_fecha_dof,definitivos_tiene_extra,sentencia_favorable_oficio_sat,sentencia_favorable_oficio_sat_original,sentencia_favorable_fecha_sat,sentencia_favorable_oficio_dof,sentencia_favorable_oficio_dof_original,sentencia_favorable_fecha_dof,sentencia_favorable_tiene_extra,row_hash
|
| 2 |
+
69-B Bis,1,OAN151230HWA,"OPERADORA AUTOPISTAS NACIONALES EQUIVENT, S.A. DE C.V.",SENTENCIA_FAVORABLE,,,,,,,0,,,,,,,0,900-04-00-00-00-2024-80,900-04-00-00-00-2024-80 de 25 de enero de 2024,2024-01-25,900-04-00-00-00-2024-80,900-04-00-00-00-2024-80 de 25 de enero de 2024,2024-07-05,0,900,900 04 00 00 00 2026-254 de 12 de marzo de 2026,2026-03-12,,,,0,93dc5a6265f9f3c32b59aefa39163d9f2a66bd5f8ef96af6b951e8fdf9224d57
|
| 3 |
+
69-B Bis,2,CPH061010RB7,"CONSTRUCTORA DE PROYECTOS HIDROELECTRICOS, S.A. DE C.V.",DEFINITIVO,,,,,,,0,,,,,,,0,900-04-00-00-00-2024-80,900-04-00-00-00-2024-80 de 25 de enero de 2024,2024-01-25,900-04-00-00-00-2024-80,900-04-00-00-00-2024-80 de 25 de enero de 2024,2024-07-05,0,,,,,,,0,7170aa7af78908c179132608a789b3538f1e456afed089724e728c382677c22d
|
| 4 |
+
69-B Bis,3,BER160621KN5,"BERNABASTOS, S.A. DE C.V.",DEFINITIVO,,,,,,,0,,,,,,,0,900-04-00-00-00-2025-349,900-04-00-00-00-2025-349 de 14 de mayo de 2025,2025-05-14,900-04-00-00-00-2025-349,900-04-00-00-00-2025-349 de 14 de mayo de 2025,2025-05-30,0,,,,,,,0,193773fdd30b03aa59de40e0e220bc0a14f75d6976c57405d0c78c495797155b
|
69b.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
README.md
CHANGED
|
@@ -4,7 +4,12 @@ configs:
|
|
| 4 |
- config_name: listado_69b
|
| 5 |
data_files:
|
| 6 |
- split: train
|
| 7 |
-
path:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
- config_name: metadata
|
| 10 |
data_files:
|
|
@@ -29,9 +34,13 @@ Fuente: [http://omawww.sat.gob.mx/cifras_sat/Paginas/DatosAbiertos/contribuyente
|
|
| 29 |
```python
|
| 30 |
from datasets import load_dataset
|
| 31 |
|
| 32 |
-
# Listado
|
| 33 |
ds = load_dataset("mayrop/sat-listado-69b", "listado_69b")
|
| 34 |
df = ds["train"].to_pandas()
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
```
|
| 36 |
|
| 37 |
## Columnas
|
|
@@ -39,8 +48,7 @@ df = ds["train"].to_pandas()
|
|
| 39 |
| Columna | Descripción |
|
| 40 |
|---------|-------------|
|
| 41 |
| `articulo` | Fuente: `69-B` o `69-B Bis` |
|
| 42 |
-
| `
|
| 43 |
-
| `numero` | Número de registro en el listado original |
|
| 44 |
| `rfc` | RFC del contribuyente |
|
| 45 |
| `nombre_contribuyente` | Razón social |
|
| 46 |
| `situacion_contribuyente` | `PRESUNTO` / `DESVIRTUADO` / `DEFINITIVO` / `SENTENCIA_FAVORABLE` |
|
|
@@ -72,3 +80,4 @@ df = ds["train"].to_pandas()
|
|
| 72 |
| `sentencia_favorable_oficio_dof_original` | Texto completo |
|
| 73 |
| `sentencia_favorable_fecha_dof` | Fecha de publicación DOF (YYYY-MM-DD) |
|
| 74 |
| `sentencia_favorable_tiene_extra` | `1` si hay más de un oficio/fecha en la etapa de sentencia favorable |
|
|
|
|
|
|
| 4 |
- config_name: listado_69b
|
| 5 |
data_files:
|
| 6 |
- split: train
|
| 7 |
+
path: 69b.csv
|
| 8 |
+
|
| 9 |
+
- config_name: listado_69b_bis
|
| 10 |
+
data_files:
|
| 11 |
+
- split: train
|
| 12 |
+
path: 69b-bis.csv
|
| 13 |
|
| 14 |
- config_name: metadata
|
| 15 |
data_files:
|
|
|
|
| 34 |
```python
|
| 35 |
from datasets import load_dataset
|
| 36 |
|
| 37 |
+
# Listado 69-B
|
| 38 |
ds = load_dataset("mayrop/sat-listado-69b", "listado_69b")
|
| 39 |
df = ds["train"].to_pandas()
|
| 40 |
+
|
| 41 |
+
# Listado 69-B Bis
|
| 42 |
+
ds_bis = load_dataset("mayrop/sat-listado-69b", "listado_69b_bis")
|
| 43 |
+
df_bis = ds_bis["train"].to_pandas()
|
| 44 |
```
|
| 45 |
|
| 46 |
## Columnas
|
|
|
|
| 48 |
| Columna | Descripción |
|
| 49 |
|---------|-------------|
|
| 50 |
| `articulo` | Fuente: `69-B` o `69-B Bis` |
|
| 51 |
+
| `numero` | Consecutivo `No` del listado original del SAT; reinicia en cada archivo |
|
|
|
|
| 52 |
| `rfc` | RFC del contribuyente |
|
| 53 |
| `nombre_contribuyente` | Razón social |
|
| 54 |
| `situacion_contribuyente` | `PRESUNTO` / `DESVIRTUADO` / `DEFINITIVO` / `SENTENCIA_FAVORABLE` |
|
|
|
|
| 80 |
| `sentencia_favorable_oficio_dof_original` | Texto completo |
|
| 81 |
| `sentencia_favorable_fecha_dof` | Fecha de publicación DOF (YYYY-MM-DD) |
|
| 82 |
| `sentencia_favorable_tiene_extra` | `1` si hay más de un oficio/fecha en la etapa de sentencia favorable |
|
| 83 |
+
| `row_hash` | Hash SHA-256 estable del registro transformado |
|