├── .Rbuildignore ├── .github └── workflows │ ├── R-build-test.yml │ └── py-build-test.yml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENCE.md ├── MANIFEST.in ├── NAMESPACE ├── R ├── Nomisweb.R └── UKCensusAPI.R ├── README.md ├── README.txt ├── UKCensusAPI.Rproj ├── doc ├── paper.bib └── paper.md ├── inst ├── examples │ ├── contextify.R │ ├── contextify.py │ ├── geoquery.R │ └── geoquery.py └── scripts │ ├── package.sh │ └── ukcensus-query ├── man ├── UKCensusAPI.Rd ├── contextify.Rd ├── geoCodeLookup.Rd ├── geoCodes.Rd ├── getData.Rd ├── getLADCodes.Rd ├── getMetadata.Rd ├── instance.Rd ├── queryInstance.Rd └── queryMetadata.Rd ├── pyproject.toml ├── requirements.txt ├── setup.py ├── tests ├── extended_scotland.py ├── test_all.py ├── testthat.R └── testthat │ └── test-all.R └── ukcensusapi ├── NISRA.py ├── NRScotland.py ├── Nomisweb.py ├── Query.py ├── __init__.py └── utils.py /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/.github/workflows/R-build-test.yml -------------------------------------------------------------------------------- /.github/workflows/py-build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/.github/workflows/py-build-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/LICENCE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/Nomisweb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/R/Nomisweb.R -------------------------------------------------------------------------------- /R/UKCensusAPI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/R/UKCensusAPI.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | See README.md 2 | -------------------------------------------------------------------------------- /UKCensusAPI.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/UKCensusAPI.Rproj -------------------------------------------------------------------------------- /doc/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/doc/paper.bib -------------------------------------------------------------------------------- /doc/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/doc/paper.md -------------------------------------------------------------------------------- /inst/examples/contextify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/examples/contextify.R -------------------------------------------------------------------------------- /inst/examples/contextify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/examples/contextify.py -------------------------------------------------------------------------------- /inst/examples/geoquery.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/examples/geoquery.R -------------------------------------------------------------------------------- /inst/examples/geoquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/examples/geoquery.py -------------------------------------------------------------------------------- /inst/scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/scripts/package.sh -------------------------------------------------------------------------------- /inst/scripts/ukcensus-query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/inst/scripts/ukcensus-query -------------------------------------------------------------------------------- /man/UKCensusAPI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/UKCensusAPI.Rd -------------------------------------------------------------------------------- /man/contextify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/contextify.Rd -------------------------------------------------------------------------------- /man/geoCodeLookup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/geoCodeLookup.Rd -------------------------------------------------------------------------------- /man/geoCodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/geoCodes.Rd -------------------------------------------------------------------------------- /man/getData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/getData.Rd -------------------------------------------------------------------------------- /man/getLADCodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/getLADCodes.Rd -------------------------------------------------------------------------------- /man/getMetadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/getMetadata.Rd -------------------------------------------------------------------------------- /man/instance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/instance.Rd -------------------------------------------------------------------------------- /man/queryInstance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/queryInstance.Rd -------------------------------------------------------------------------------- /man/queryMetadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/man/queryMetadata.Rd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | requests 4 | openpyxl 5 | xlrd -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/setup.py -------------------------------------------------------------------------------- /tests/extended_scotland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/tests/extended_scotland.py -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/tests/testthat/test-all.R -------------------------------------------------------------------------------- /ukcensusapi/NISRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/ukcensusapi/NISRA.py -------------------------------------------------------------------------------- /ukcensusapi/NRScotland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/ukcensusapi/NRScotland.py -------------------------------------------------------------------------------- /ukcensusapi/Nomisweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/ukcensusapi/Nomisweb.py -------------------------------------------------------------------------------- /ukcensusapi/Query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/ukcensusapi/Query.py -------------------------------------------------------------------------------- /ukcensusapi/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.6" 2 | 3 | -------------------------------------------------------------------------------- /ukcensusapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virgesmith/UKCensusAPI/HEAD/ukcensusapi/utils.py --------------------------------------------------------------------------------