Initialisation depot

This commit is contained in:
Serge NOEL
2026-02-10 12:12:11 +01:00
commit c3176e8d79
818 changed files with 52573 additions and 0 deletions

21
AliExpress/pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "aliexpress-order-parser"
version = "0.1.0"
description = "AliExpress Order Parser - Extracts order information from HTML and inserts into MariaDB"
authors = ["Your Name <your.email@example.com>"]
readme = "README.md"
packages = [{include = "*.py"}]
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.12.3"
mysql-connector-python = "^8.3.0"
lxml = "^5.1.0"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"