File size: 902 Bytes
3930f07
 
 
 
 
 
d8b9a95
3930f07
 
 
83e1cf7
3930f07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d2d3ca7
3930f07
 
 
 
 
 
 
 
 
8257d41
3930f07
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
title: Real Estate Projects
emoji: 🏠
colorFrom: blue
colorTo: green
sdk: gradio
sdk_version: 5.15.0
python_version: 3.12.4
app_file: app.py
license: other
pinned: false
---


# Real Estate Projects Scraper and Analyzer

A Gradio interface that scrapes and analyzes real estate projects using LangChain and SQLite.

## Features
- Stores data in SQLite using Peewee ORM
- Chat interface to query project data

## Setup

1. Create and activate a virtual environment:
    ```sh
    uv venv --python 3.12
    ```

2. Compile the requirements file:
    ```sh
    uv pip compile requirements.in --generate-hashes -o requirements.txt
    ```

3. Install the dependencies:
    ```sh
    uv pip sync requirements.txt
    ```

4. Run the application:
    ```sh
    uv run app.py
    ```

5. Upgrade all packages to their latest versions:
    ```sh
   uv pip compile - -o requirements.txt --upgrade
    ```