From 57961f82982d54d27bb4257bdf8dfe7a4c7416aa Mon Sep 17 00:00:00 2001 From: Rachel Hu Date: Wed, 10 Apr 2024 19:25:35 -0700 Subject: [PATCH 1/2] Update from preprod to prod endpoint. --- open_parser/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/open_parser/base.py b/open_parser/base.py index b22a235..f91e334 100644 --- a/open_parser/base.py +++ b/open_parser/base.py @@ -3,13 +3,13 @@ import requests CAMBIO_UPLOAD_URL = ( - "https://nl6h9ycq39.execute-api.us-west-2.amazonaws.com/v1/cambio_api/upload" + "https://qreije6m7l.execute-api.us-west-2.amazonaws.com/v1/cambio_api/upload" ) CAMBIO_EXTRACT_URL = ( - "https://nl6h9ycq39.execute-api.us-west-2.amazonaws.com/v1/cambio_api/extract" + "https://qreije6m7l.execute-api.us-west-2.amazonaws.com/v1/cambio_api/extract" ) CAMBIO_PARSE_URL = ( - "https://nl6h9ycq39.execute-api.us-west-2.amazonaws.com/v1/cambio_api/parse" + "https://qreije6m7l.execute-api.us-west-2.amazonaws.com/v1/cambio_api/parse" ) From 96753f2926444cae7d744fdf7868f41a086509d2 Mon Sep 17 00:00:00 2001 From: Rachel Hu Date: Wed, 10 Apr 2024 19:26:37 -0700 Subject: [PATCH 2/2] Bump up version to 0.0.4. --- open_parser/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/open_parser/__init__.py b/open_parser/__init__.py index fc961e0..7690287 100644 --- a/open_parser/__init__.py +++ b/open_parser/__init__.py @@ -2,4 +2,4 @@ __all__ = ["OpenParser"] -__version__ = "0.0.3" +__version__ = "0.0.4" diff --git a/pyproject.toml b/pyproject.toml index c78c00c..ce23bd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "open-parser" -version = "0.0.3" +version = "0.0.4" description = "Open parser for all." authors = ["CambioML "] maintainers = ["Rachel Hu "]