├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── README.md ├── api_calls.py ├── app.py ├── data_sources.txt ├── deployment.yaml ├── evaluation.py ├── indexation ├── data │ └── sections_codes_naf.json └── indexation.ipynb ├── init.sh ├── job_offers ├── README.md ├── _elastic_db.py ├── _eval.py ├── _firm_cleaner.py ├── _sector_matcher.py ├── _sirene_cols.py ├── appariemment_a_la_main.csv └── examples_name_siren.csv ├── license.md ├── queries.py ├── requirements.txt ├── testing_matchsiret.ipynb └── worksites.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/README.md -------------------------------------------------------------------------------- /api_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/api_calls.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/app.py -------------------------------------------------------------------------------- /data_sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/data_sources.txt -------------------------------------------------------------------------------- /deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/deployment.yaml -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/evaluation.py -------------------------------------------------------------------------------- /indexation/data/sections_codes_naf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/indexation/data/sections_codes_naf.json -------------------------------------------------------------------------------- /indexation/indexation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/indexation/indexation.ipynb -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/init.sh -------------------------------------------------------------------------------- /job_offers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/README.md -------------------------------------------------------------------------------- /job_offers/_elastic_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/_elastic_db.py -------------------------------------------------------------------------------- /job_offers/_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/_eval.py -------------------------------------------------------------------------------- /job_offers/_firm_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/_firm_cleaner.py -------------------------------------------------------------------------------- /job_offers/_sector_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/_sector_matcher.py -------------------------------------------------------------------------------- /job_offers/_sirene_cols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/_sirene_cols.py -------------------------------------------------------------------------------- /job_offers/appariemment_a_la_main.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/appariemment_a_la_main.csv -------------------------------------------------------------------------------- /job_offers/examples_name_siren.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/job_offers/examples_name_siren.csv -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/license.md -------------------------------------------------------------------------------- /queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/queries.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/requirements.txt -------------------------------------------------------------------------------- /testing_matchsiret.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/testing_matchsiret.ipynb -------------------------------------------------------------------------------- /worksites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etalab/matchSIRET/HEAD/worksites.py --------------------------------------------------------------------------------