From 86269bd5017a6c02f908ffc6433231e306dd1923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8Dtalo=20Gustavo?= <42496107+ItaloGustavoS@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:56:12 -0300 Subject: [PATCH] Added the scrapped Profile URL to the result --- recruitment/src/recruitment/tools/linkedin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recruitment/src/recruitment/tools/linkedin.py b/recruitment/src/recruitment/tools/linkedin.py index aeb8275b..7c35709c 100644 --- a/recruitment/src/recruitment/tools/linkedin.py +++ b/recruitment/src/recruitment/tools/linkedin.py @@ -22,7 +22,8 @@ def _format_publications_to_text(self, people): "-------------", p['name'], p['position'], - p['location'] + p['location'], + p["profile_link"], ]) for p in people] result = "\n\n".join(result)