Skip to content

Commit 433f444

Browse files
committed
fix: minor changes
1 parent e078561 commit 433f444

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.pyc
2+
build
3+
crawlbase.egg-info
4+
dist

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ Then import the CrawlingAPI, ScraperAPI, etc as needed.
1515
from crawlbase import CrawlingAPI, ScraperAPI, LeadsAPI, ScreenshotsAPI, StorageAPI
1616
```
1717

18-
### Upgrading to version 3
19-
20-
Version 3 deprecates the usage of CrawlbaseAPI in favour of CrawlingAPI (although is still usable). Please test the upgrade before deploying to production.
21-
2218
## Crawling API
2319

2420
First initialize the CrawlingAPI class.

crawlbase/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from crawlbase.crawlbase_api import CrawlbaseAPI # For < 3.0 compatibility
21
from crawlbase.crawling_api import CrawlingAPI
32
from crawlbase.scraper_api import ScraperAPI
43
from crawlbase.leads_api import LeadsAPI

crawlbase/crawlbase_api.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
setup(
1313
name = 'crawlbase',
1414
license = 'Apache-2.0',
15-
version = '3.2.0',
15+
version = '1.0.0',
1616
description = 'A Python class that acts as wrapper for Crawlbase scraping and crawling API',
1717
long_description = readme,
1818
long_description_content_type = 'text/markdown',
1919
author = 'Crawlbase',
2020
author_email = '[email protected]',
21-
url = 'https://github.com/crawlbase/crawlbase-python',
21+
url = 'https://github.com/crawlbase-source/crawlbase-python',
2222
keywords = 'scraping scraper crawler crawling crawlbase api',
2323
include_package_data = True,
2424
packages = find_packages(),

0 commit comments

Comments
 (0)