Lista de Obras Sociales Argentinas
Project description
Obras sociales argentinas
Lista de las obras sociales argentinas
La lista oficial de obras sociales argentinas puede obtenerse por dos vías:
- Desde el sitio web de la superintendencia de sistemas de salud (SSSalud)
- Desde la página de SISA
Estas listas son diferentes y tienen alrededor de 300 elementos. No cambia mucho al parecer.
from oss_ar.oss import ObraSocialArgentina
import json
rnoss = ['900103', '800501', '117702']
for rnos in rnoss:
oss = ObraSocialArgentina(rnos=rnos)
nice_dict = json.dumps(oss.as_dict(), indent=2)
print(nice_dict)
{
"rnos": "900102",
"nombre": "OBRA SOCIAL DEL PERSONAL DE EMPRESAS FIAT Y EMPRESAS PEUGEOT CITROEN ARGENTINA",
"tipo_de_cobertura": "Obra social",
"sigla": "OSPEF Y EPCA",
"provincia": "CABA",
"localidad": "CIUDAD DE BUENOS AIRES",
"domicilio": "AVDA CORDOBA 487 6\u00ba PISO OFICINA \"L\"",
"cp": "",
"telefonos": [
"4 312-8261",
"4 312-8269"
],
"email": "obrasocial@osfp.com.ar",
"web": null
}
{
"rnos": "800501",
"nombre": "OBRA SOCIAL ACEROS PARANA",
"tipo_de_cobertura": "Obra social",
"sigla": "",
"provincia": "Buenos Aires",
"localidad": "SAN NICOLAS DE LOS ARROYOS",
"domicilio": "AVDA. MORENO 187",
"cp": "",
"telefonos": [
"03461-425632",
"03461-43-7600"
],
"email": "info@osap.org.ar",
"web": null
}
{
"rnos": "117801",
"nombre": " OBRA SOCIAL DEL PERSONAL DE PRENSA DE MENDOZA",
"tipo_de_cobertura": "Obra social",
"sigla": "",
"provincia": "Mendoza",
"localidad": "MENDOZA",
"domicilio": "CHILE 1661",
"cp": "5500",
"telefonos": [
"0261-4-251179",
"0261-4-251469"
],
"email": "prensaludmza@hprensaludmza.org.ar",
"web": null
}
Funcionamiento interno
Esta librería usa los CSVs de origen de estas dos fuentes y mezcla los datos. Expone tambien las clases internas
Descarga automatizada
Desde SSSalud: Hacer un post a https://www.sssalud.gob.ar/ con los parámetros:
{'obj': 'listRnosc', 'tipo': 7}
Desde SISA se requiere un scpae un poco más complejo.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
oss_ar-0.114-py3-none-any.whl
(2.2 kB
view hashes)