Skip to content

Commit 1cce4ba

Browse files
committedJul 5, 2024
feat(notes/post): BeautifulSoup to process note body HTML
1 parent 3f8227c commit 1cce4ba

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎.devcontainer/Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ WORKDIR /home/$USER/customer-success
1818
COPY pyproject.toml pyproject.toml
1919
COPY data/ data/
2020
COPY notes/ notes/
21+
RUN pip install -e .[dev,hubspot,notes,qr_codes]
2122

2223
COPY docs/requirements.txt docs/requirements.txt
2324
RUN pip install -r docs/requirements.txt

‎pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ hubspot = [
2424
"ipykernel",
2525
"pandas==2.2.2"
2626
]
27+
notes = [
28+
"beautifulsoup4==4.12.3"
29+
]
2730
qr_codes = [
2831
"pypng==0.20220715.0",
2932
"qrcode[pil]==7.4.2",

0 commit comments

Comments
 (0)
Please sign in to comment.