Conversation
목록 페이지의 재고는 1000건 전량이 "In stock" 으로 균일해 사실상 정보가 없다.
실제 수량은 상세 페이지에만 있어서, 수량이 필요한 요청은 상세 1000건을 따로
받아야 한다. 다음 수집이 이 비용 차이(목록 50요청 1분 vs 상세 포함 1050요청
18분)를 정찰 없이 미리 알고 판단할 수 있도록 selectors 와 notes 에 남긴다.
- 평점 셀렉터를 ::attr(class) 로 명시 — 텍스트가 아니라 CSS class 다
- 재고를 목록(상태)·상세(수량) 둘로 분리하고 수량 추출 정규식을 기록
- 상세링크 셀렉터와 상대경로('../') 처리 방법 추가
- pagination.total_pages=50 명시
- 제목 중복 1건('The Star-Touched Queen')은 가격·재고가 다른 별개 상품이라
중복 제거하면 안 된다는 점을 기록
- 2026-09-01 실측(1000건 전량·4필드 채움률 100%) 반영, last_used 갱신
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
무엇을
fingerprints/books_toscrape_com/profile.json의 selectors / pagination / notes 를 갱신했다.왜
목록 페이지의 재고는 1000건 전량이
In stock으로 균일해 사실상 정보가 없다.실제 수량은 상세 페이지의
In stock (22 available)에만 있다.그래서 "재고를 모아줘" 라는 요청은 비용이 두 갈래로 갈린다.
기존 프로필에는 이 갈림길이 적혀 있지 않아, 다음 수집자가 목록만 긁고
전부 같은 값인 컬럼을 납품하거나 정찰을 다시 해야 했다. 그 판단에 필요한
정보를 프로필에 남긴다.
바뀐 것
::attr(class)로 명시 — 텍스트가 아니라 CSS class 다목록(상태)/상세(수량)둘로 분리하고 수량 추출 정규식을 기록../) 처리 방법 추가pagination.total_pages = 50명시The Star-Touched Queen)은 수집 오류가 아니라 가격·재고가다른 별개 상품이므로 중복 제거하면 안 된다는 점을 기록
last_used를 2026-09-01 로 갱신리뷰어가 알아둘 것
plain_get) 으로 수집했다. 안티봇 없음, 에스컬레이션 없음,통지 게이트 해당 없음 →
consent블록 없음이 정상robots.txt는 404(미발행) 다. "허용" 이 아니라 "확인 못 함" 으로 기록해 뒀다output/이.gitignore대상이라 커밋에 포함되지 않았다🤖 Generated with Claude Code