- Fetching rightmove listing api - Memoizing query - Writing to sqlite database with sqlalchemy - Poetry dependencies
18 lines
371 B
TOML
18 lines
371 B
TOML
[tool.poetry]
|
|
name = "rightmove-crawler"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Kadir Tugan <git@k8n.dev>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
SQLAlchemy = "^2.0.23"
|
|
requests = "^2.31.0"
|
|
cachetools = "^5.3.2"
|
|
diskcache = "^5.6.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|