Skip to content

Web-based data proxy for transforming, filtering, and validating humanitarian datasets. Supports Python 3.x **only.**

License

Notifications You must be signed in to change notification settings

HXLStandard/hxl-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

29cff47 · Oct 28, 2024
Nov 4, 2022
Aug 27, 2024
Nov 4, 2022
Aug 6, 2024
Oct 28, 2024
Jul 20, 2023
May 31, 2023
Oct 28, 2024
Aug 6, 2024
Feb 9, 2015
Aug 26, 2015
Jul 20, 2023
Jul 19, 2023
Jun 5, 2024
Jul 27, 2023
Jul 27, 2023
Jul 27, 2023
Apr 22, 2016
Oct 25, 2024
Apr 22, 2016
Aug 26, 2015
May 25, 2023
Feb 12, 2021
Oct 25, 2024
May 30, 2023

Repository files navigation

hxl-proxy

Python-/flask-based web proxy for transforming a HXL dataset dynamically. Requires Python3.

User documentation is available at https://github.com/HXLStandard/hxl-proxy/wiki

Installation

Installation from PyPi:

pip install hxl-proxy

Installation from source:

python setup.py install

Running unit tests:

python setup.py test

Configuration

To configure the proxy, make a copy of config.py.TEMPLATE (e.g. to config.py), and change its values as necessary. The environment variable HXL_PROXY_CONFIG should point to your local config file's location. More details appear below.

Caching

Choose and configure your input and output caches as needed, following the examples in the config template. You may need to create local directories or databases, depending on the caching backends you choose.

P-codes and mapping

For mapping, the Proxy uses a collection of GeoJSON files hosted online. If you want to use a local copy (e.g. for offline demos), clone the GitHub repository at https://github.com/hxlstandard/p-codes and set the new base URL as the value of PCODE_BASE_URL. Note that the server serving the local copy must implement CORS, since the shapes get loaded on the browser side: https://www.w3.org/TR/cors/

Edit PCODE_COUNTRY_MAP if you'd like to make more countries available in the map dropdown menu.

Usage

Launching a local server (usually on http://127.0.0.1:5000):

python run-server.py

For web deployment, see the hxl-proxy.wsgi.TEMPLATE file and the flask documentation.

For more on HXL, see http://hxlstandard.org

For more documentation about the underlying HXL engine and filters, see https://github.com/HXLStandard/libhxl-python/wiki