Create your own Alibaba dataset and interact with it in plain English.
Project description
Alibaba-CLI-Scraper
🛒-💻- 🕸
Create your own Alibaba dataset and interact with it in plain English.
About
Alibaba-CLI-Scraper is a python CLI tool designed to scrape, save and interact in plain english with data from Alibaba.com. Based on user, some products data and theirs related suppliers data will be extracted and saved it in a local database (SQLite or MySQL) and then will be ready to be analysed and even visualized through a powefull ai-agent powered by data-horse. It's also be designed to be user-friendly and therefore has fairly simple and easy-to-use commands to navigate through all the features of this tool.
Features
-
Asynchronous API: Utilizes asynchronous API of Playwright and Brightdata Proxies for efficient handling of numerous pages results.
-
Text Mode: Provides easy-to-use commands with text mode for those who are not comfortable with commands in the terminal.
-
Export-As-Csv: Export your generated sqlite file to csv file.
-
Ai-agent: Interact with your scraped data in plain english to easily analyse an visualize what matter for you.
Which important informations will be retrieved from the Alibaba website ?
Fields related to Suppliers
:
`id`: int
`name`: str
`verification_mode`: str
`sopi_level`: int
`country_name`: str
`years_as_gold_supplier`: int
`supplier_service_score`: float
Fields related to Products
:
`id`: int
`name`: str
`alibaba_guranteed`: bool
`certifications`: str
`minimum_to_order`: int
`ordered_or_sold`: int
`supplier_id`: int
`min_price`: float
`max_price`: float
`product_score`: float
`review_count` : float
`review_score` : float
`shipping_time_score` : float
`is_full_promotion`: bool
`is_customizable`: bool
`is_instant_order`: bool
`trade_product`:bool
Sample of CSV output
When you will run command to export your sqlite file as a csv a OUTER FULL JOIN
operation will be made to join all the fields of the both tables. Bellow you have a sample results maching agricultural machinery
keywords.
id | name | alibaba_guranteed | minimum_to_order | supplier_id | alibaba_guranteed | certifications | ordered_or_sold | product_score | review_count | review_score | shipping_time_score | is_full_promotion | is_customizable | is_instant_order | trade_product | min_price | max_price | name | verification_mode | sopi_level | country_name | years_as_gold_supplier | supplier_service_score |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | mesh knitting weaving machine produce sunscreen net agricultural shade net anti net | 1 | 1 | 1 | 1 | 0 | 5.0 | 1.0 | 5.0 | 5.0 | 1 | 1 | 1 | 1 | 9997.0 | 18979.0 | qingdao shanzhong imp and exp ltd. | unverified | 0 | chine | 9 | 5.0 | |
2 | chinese small farm rotary tiller 12hp 15hp 20hp two wheel mini hand tractor walk behind tractors | 1 | 1 | 2 | 1 | 0 | 0.0 | 0.0 | 0.0 | 0.0 | 1 | 1 | 1 | 1 | 455.0 | 455.0 | shandong guoyoule agricultural machinery co., ltd. | unverified | 0 | chine | 1 | 0.0 | |
3 | small multifunctional flexible 130l orchard remote control garden crawler agriculture robot sprayer | 1 | 1 | 3 | 1 | 0 | 0.0 | 0.0 | 0.0 | 0.0 | 1 | 1 | 1 | 1 | 2350.0 | 4620.0 | shandong my agricultural facilities co., ltd. | unverified | 0 | chine | 1 | 0.0 | |
4 | 5hp/7hp/12hp rotary electric start agricultural farming walking tractor power tiller weeder cultivators | 1 | 1 | 4 | 1 | 2 | 0.0 | 0.0 | 0.0 | 0.0 | 1 | 1 | 1 | 1 | 244.0 | 371.0 | shandong jinlong lutai international trade co., ltd. | verified | 0 | chine | 1 | 0.0 | |
5 | free shipping 3.5 ton mini excavator 1 ton 2 ton kubota engine digger excavator mini pelle chinese cheap small excavator machine | 1 | 1 | 5 | 1 | CE | 95 | 4.6 | 25.0 | 4.6 | 4.6 | 1 | 1 | 1 | 1 | 988.0 | 1235.0 | shandong qilu industrial co., ltd. | unverified | 5 | chine | 4 | 4.6 |
Prerequisites
-
Python 3.11 or Higher
-
Scraping Browser API KEY from BrightData to know how to set your api key look at [here]
-
Windows or Linux as OS
Installation
It's recommended to use pipx instead of pip for end-user applications written in Python. pipx
installs the package, exposes his CLI() entrypoints in an isolated environment and makes it available everywhere in your system. This guarantees no dependency conflicts and clean uninstall.
let's install aba-cli-scrapper
using pipx:
-
Install pipx with a python 3.11 or higher version:
python/python3 -m pip install --user pipx
-
add pipx to your PATH:
pipx ensurepath
-
Install
aba-cli-scrapper
using pipx:pipx install aba-cli-scrapper
and you're ready to use aba-cli-scrapper
!
If you'd like to use pip
instead, just replace pipx
with pip
but obviously as usual you'll need to create a virtual environment and activate it before to use aba-cli-scrapper
to avoid any dependency conflicts issues. let's install aba-cli-scrapper
using pip:
- Create a virtual environment with Python 3.11 or higher:
python/python3 -m venv your-virtual-environment-name
- activate the virtual environment:
your-virtual-environment-name\\Scripts\\activate
Using the CLI Interface
Need Help? run any commands followed by --help
for detailed informations about its usage and options. For example: aba-run --help
will show you all subcommands available and how to use them.
Warnings:
aba-run
is the base command means all other commands that will be introduce bellow are sub-commands and should always be preceded byaba-run
. Practice make perfect isn't ? So let's get started with a use case example. Let's assume that you want to scrape data aboutelectric bikes
from Alibaba.com.
Available Commands:
Important Informations:
initialize
: Means create a new Mysql or SQLite database with products and suppliers table in it. Which will be used to store your scraped data. Especially for mysql engine, you will need to create an empty database in your mysql server before.update
: Means add your scraped data to a newly initialized Mysql or SQLite database. this action cannot be performed twice on the same database.
Scraper Demo
How to set My API KEY ?
by default scrapper
will use async mode which is supported by brightdata api, means if you want to use it you will need to provide your api key. set it by using command bellow:
aba-run set-api-key your_api_key
and now run scraper
sub-command without --sync-api
flag to use async mode.
-
scraper
sub-command: Initiates scraping of Alibaba.com based on the provided keywords. this command takes two required arguments and one optional argument:-
key_words
(required): The search term(s) for finding products on Alibaba. Enclose multiple keywords in quotes.
-
--page-results
or-pr
(required): Usually keys words will results to many pages macthing them. Then you must to indicate how many of them you want to pull out.If any value is not provided10
will be used by default.
-
--html-folder
or-hf
(optional): Specifies the directory to store the raw HTML files. If omitted, a folder with sanitized keywords as name will be automatically created. In this caseelectric_bikes
will be used as a results folder name.
-
--sync-api
or-sa
(optional): flag indicates that you want to use sync mode. By defaultasync
mode is used.
Example:
aba-run scraper "electric bikes" -hf "bike_results" -pr 15
-
However if you want to use sync mode you can use :
aba-run scraper "electric bikes" -hf "bike_results" -pr 15 --sync-api/-sa
and voila!
Now bike_results
(since you already provided name you wish to have) directory has been created and should contains all html files from alibaba.com matching your keywords.
db-init Demo with sqlite
-
db-init
sub-command: Creates a new database mysql/sqlite with products and suppliers as tables in it. this command takes one required arguments and six optional arguments(depends on engine you choose):-
engine
(required): Choose eithersqlite
ormysql
. Is set tosqlite
by default.
-
--sqlite-file
or-f
(optional, SQLite only): The name for your SQLite database file (without any extension).
-
--host
or-h
,--port
or-p
,--user
or-u
,--password
or-pw
,--db-name
or-db
(required for MySQL): Your MySQL database connection details.
-
--only-with
or-ow
(optional Mysql): If you just want to update some details of your credentials indb_credentials.json
file but not all, use this flag.
-
-
NB:
--host
and--port
are respectively set tolocalhost
and3306
by default. Also When you initialize your database with Mysql Engine for the first time, you must to set--user
,--password
and--db-name
arguments. this will create adb_credentials.json
file in your current directory with your credentials. Prevent you to set it again next time. Thus you will be able to set just import field when the time will come to [update] your database.
MySQL Use case:
aba-run db-init mysql -u "mysql_username" -pw "mysql_password" -db "alibaba_products"
SQLite Use case :
aba-run db-init sqlite --sqlite-file alibaba_data
db-init subcommand will try to use sqlite engine by default so if you are planning to use it run as bellow :
SQLite Use case V2 :
aba-run db-init -f alibaba_data
As soons as your database has been initialized, you can update it with the scraped data.
db-update Demo
db-update
sub-command: add scraped data from html files to your database (you can't use this command twice with same database name to avoid UNIQUE CONSTRAINT ERROR).
this command takes two required arguments and two optional arguments:
* - --db-engine
(required): Select your database engine: sqlite
or mysql
. Is set to sqlite
by default.
* - --kw-results
/-kr
(required): The path to the folder containing the HTML files generated by the scraper
sub command.
* - --filename
/-f
(required for SQLite): If you're using SQLite, provide the desired filename for your database. whitout any extension.
* - --db-name
/-db
(optional for MySQL): If you're using MySQL engine, and want to push the data to a different database, provide the desired database name.
MySQL Use case:
command bellow assuming that you already have your database credentials in db_credentials.json
file to autocomplete required parameter. if not this will raise an error.
aba-run db-update mysql --kw-results bike_results\
NB:What if you want to change something while you updating the database? Assuming that you have run another scraping command and you want to save this data in another database name whitout update credential file or rewriting all theses parameter just to change your database name then, simply run aba-run db-update mysql --kw-results another_keyword_folder_result\ --db-name "another_database_name"
.
SQLite Use case:
aba-run db-update sqlite --kw-results bike_results\ --filename alibaba_data
export-as-csv
sub-command: Exports scraped data from your sqlitedatabase to a CSV file. This csv file will contain aFULL OUTER JOIN
with theproducts
andsuppliers
tables.
this command takes one required argument and one optional argument:
-
--sqlite_file
(required): The name for your SQLite database file with his extension.
-
--to
or-t
(required): The name for your CSV file with his extension.
ai-agent Demo
ai-agent
sub-command: Calls an Ai agent to interact with your scraped data in plain english.
this command takes one required argument and one optional argument:
-
query
(required): content of the query that you want to ask to the ai agent.
-
--csv-file
or-f
(required): The name for your CSV file with his extension.
Contributions Welcome!
I believe in the power of open source! If you'd like to contribute to this project, feel free to fork the repository, make your changes, and submit a pull request. I'm always open to new ideas and improvements.
License
This project is licensed under the [Gnu General Public License Version 3].
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aba_cli_scrapper-0.6.1.tar.gz
.
File metadata
- Download URL: aba_cli_scrapper-0.6.1.tar.gz
- Upload date:
- Size: 8.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03b10b9f4f09cca700764b327ff76d366d7772c7f234611b9a3e6217c3337b34 |
|
MD5 | 09c442bacb17da7b141d8483777345b8 |
|
BLAKE2b-256 | 57cd1fe94da28efe190db69214f864ff270ec0258e96ec86d6f3ff1fe13a222f |
Provenance
File details
Details for the file aba_cli_scrapper-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: aba_cli_scrapper-0.6.1-py3-none-any.whl
- Upload date:
- Size: 8.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79de3cc8db4539016ad9ecc0e5e306cec996387baec1ae3e6956e7fc56671a8c |
|
MD5 | 86915353b52e863f2944165e6156cba4 |
|
BLAKE2b-256 | 26d877bbb712ee9299181db8c568402352220ac5ad25af76cbdda526e22aeb0a |