Deployed API: https://g2nabpqw52.execute-api.eu-west-2.amazonaws.com/v1/
The API is built with the Chalice Python framework. Documentation can be found here. Chalice is a wrapper around the Flask Python web framework and deploys and configures the python application onto AWS Services:
-
AWS Lambdas
- Serverless functions, info here: https://aws.amazon.com/lambda/
-
AWS API Gateway
- An API service handling traffic management and routing requests to AWS Lambdas, info here: https://aws.amazon.com/api-gateway/
-
AWS CloudWatch
- Logs from all AWS services, info here: https://aws.amazon.com/cloudwatch/
- Local development environment
cd api
chalice local --stage local
- Linting
black -l 120 .
flake8 --max-line-length 120
- Testing
pytest --mypy api/tests/
- Upgrading
pip install -U -r api/requirements.txt
pip check
: checks for conflictspip freeze > api/requirements.txt
- Deployment
cd api && chalice deploy --stage v1
- https://g2nabpqw52.execute-api.eu-west-2.amazonaws.com/v1/
-
Clone this repository
git clone git@github.com:tom-clements/compounds-data.git
-
Change into the api directory
cd compounds-data/api
-
Create python environment
Python version has to be supported by AWS lambdas: https://docs.aws.amazon.com/lambda/latest/dg/lambda-python.html.
Latest supported version as of 2022-04-05:
Python 3.9
Please use a python environment manager of choice. Instructions here are shown using anaconda.
Installing anaconda from https://www.anaconda.com/products/individual will enable conda CLI.conda create -n <venv_name> python=3.9 conda activate <venv_name> conda install pip
-
Install python dependencies
pip install pytest black flake8 pytest-mypy pip install -r requirements.txt
-
Start a local development environment
chalice local --stage local
The environment should be accessible from http://localhost:8000/ by default.
This folder has a protected name, which is picked up by chalice and deployed onto AWS lambda.
Inside here should contain all application code.
This folder contains all the tests for the application. Please run using:
pytest --mypy tests/
The configuration file for the chalice deployment.
Follow this official guide https://aws.github.io/chalice/quickstart.html.
Refer to the Credentials section.
Ensure the access and secret keys are setup for your local profile.
Deploy using:
chalice deploy --stage v1
Endpoint is configured to: https://g2nabpqw52.execute-api.eu-west-2.amazonaws.com/v1/
The data was loaded into an Amazon DynamoDB table. Run the ETL process using:
cd etl
python run_pipeline --table-name "compounds"