Skip to content

Commit 43504e6

Browse files
authored
Merge pull request #34 from karaposu/dev
fix: remove broken target dataset import (module does not exist)
2 parents 916de61 + bf153dd commit 43504e6

3 files changed

Lines changed: 1 addition & 9 deletions

File tree

src/brightdata/datasets/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@
137137
from .apple_appstore import AppleAppStore, AppleAppStoreReviews
138138
from .ebay import EbayProducts
139139
from .etsy import EtsyProducts
140-
from .target import TargetProducts
141140
from .wayfair import WayfairProducts
142141
from .bestbuy import BestBuyProducts
143142
from .myntra import MyntraProducts
@@ -437,7 +436,7 @@
437436
# Etsy
438437
"EtsyProducts",
439438
# Target
440-
"TargetProducts",
439+
# "TargetProducts",
441440
# Wayfair
442441
"WayfairProducts",
443442
# Best Buy

src/brightdata/datasets/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@
113113
"walmart_sellers_info": (".walmart", "WalmartSellersInfo"),
114114
"ebay_products": (".ebay", "EbayProducts"),
115115
"etsy_products": (".etsy", "EtsyProducts"),
116-
"target_products": (".target", "TargetProducts"),
117116
"bestbuy_products": (".bestbuy", "BestBuyProducts"),
118117
"costco_products": (".costco", "CostcoProducts"),
119118
"macys_products": (".macys", "MacysProducts"),

src/brightdata/datasets/client.pyi

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ from .shopee import ShopeeProducts
176176
from .sleepnumber import SleepNumberProducts
177177
from .slintel import SlintelCompanies
178178
from .snapchat import SnapchatPosts
179-
from .target import TargetProducts
180179
from .tiktok import (
181180
TikTokComments,
182181
TikTokPosts,
@@ -950,11 +949,6 @@ class DatasetsClient:
950949
"""Etsy Products dataset."""
951950
...
952951

953-
@property
954-
def target_products(self) -> TargetProducts:
955-
"""Target Products dataset."""
956-
...
957-
958952
@property
959953
def wayfair_products(self) -> WayfairProducts:
960954
"""Wayfair Products dataset."""

0 commit comments

Comments
 (0)