Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Bright Data Python SDK Changelog

## Version 2.2.0 - Datasets API

### ✨ New Features

#### Datasets API
Access Bright Data's pre-collected datasets with filtering and export capabilities.

```python
async with BrightDataClient() as client:
# Filter dataset records
snapshot_id = await client.datasets.amazon_products(
filter={"name": "rating", "operator": ">=", "value": 4.5},
records_limit=100
)
# Download results
data = await client.datasets.amazon_products.download(snapshot_id)
```

**8 Datasets:** LinkedIn Profiles, LinkedIn Companies, Amazon Products, Crunchbase Companies, IMDB Movies, NBA Players Stats, Goodreads Books, World Population

**Export Utilities:**
```python
from brightdata.datasets import export_json, export_csv
export_json(data, "results.json")
export_csv(data, "results.csv")
```

### 📓 Notebooks
- `notebooks/datasets/linkedin/linkedin.ipynb` - LinkedIn datasets (profiles & companies)
- `notebooks/datasets/amazon/amazon.ipynb` - Amazon products dataset
- `notebooks/datasets/crunchbase/crunchbase.ipynb` - Crunchbase companies dataset

---

## Version 2.1.2 - Web Scrapers & Notebooks

### 🐛 Bug Fixes
Expand Down
1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ include CHANGELOG.md
include pyproject.toml
recursive-include src *.py
recursive-include src *.typed

Loading