Installation:
Install the DgiKala library from PyPI or GitHub.
pip install DigiKala
or
git clone https://github.com/NuoQTe/DigiKala.git
Crate session
import asyncio
from DigiKala import Client
async def main()
app = Client("NuoQTe")
await app.login()
await app.close()
asyncio.run(main())
or
import asyncio
from DigiKala import Client
async def main()
async with Client('NuoQTe',do_login=True) as app:
pass
asyncio.run(main())
Examples:
import asyncio
from DigiKala import Client , SearchFilter
async def main():
async with Client('NuoQTe',do_login=True) as app:
# Search in DigiKala
result = await app.search(SearchFilter(
query="Laptop",
classification="notebook-netbook-ultrabook",
has_selling_stock=True,
price_range=(50000000 , 80000000),
sort_code=4
))
product = result.products[0]
print(product)
# add product in my cart
await product.add_cart()
asyncio.run(main())
- login phone number or email with sent code or password
- logout
- crate session file
- search with all filters
- search wuth product ID
- get product comments
- get account information
- get cart information
- add product to cart
- remove product from the cart
This project is licensed under the MIT License. See the LICENSE file for details.
- Telegram: t.me/NuoQTe