| 12345678910111213141516171819202122232425262728293031 |
- # -*- coding: utf-8 -*-
- # Author : Charley
- # Python : 3.10.8
- # Date : 2025/9/8 11:59
- category_list = [
- # {
- # "category_name": "baseball",
- # "category_url": "https://www.breakninja.com/baseball_box_break_group_checklists.html"
- # },
- {
- "category_name": "basketball",
- "category_url": "https://www.breakninja.com/basketball_box_break_group_checklists.html"
- },
- {
- "category_name": "football",
- "category_url": "https://www.breakninja.com/football_box_break_group_checklists.html"
- },
- {
- "category_name": "hockey",
- "category_url": "https://www.breakninja.com/hockey_box_break_group_checklists.html"
- }
- ]
- base_url = 'https://www.breakninja.com/'
- headers = {
- "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7",
- "Referer": "https://www.breakninja.com/sports.html",
- "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36"
- }
- exclusion_words = ["Main Page", "Breaks", "First Page", "Advanced Ebay", "Ending Soon No Bids", "Best Contenders", "List Page"]
|