Compare commits

...

3 Commits

Author SHA1 Message Date
31ccee105d add gitignore folder 2026-01-29 11:14:46 +07:00
a92081b9e8 remove unused deps 2026-01-29 11:14:27 +07:00
2e4d1993ba update requirements 2026-01-29 11:13:51 +07:00
3 changed files with 8 additions and 3 deletions

3
.gitignore vendored
View File

@ -19,3 +19,6 @@ style_temp/
services/styles/ services/styles/
cleansing_func.sql cleansing_func.sql
__pycache__/
*.pyc

View File

@ -3,7 +3,6 @@ from fastapi import APIRouter, File, Form, UploadFile, Depends
from pydantic import BaseModel from pydantic import BaseModel
from typing import Any, Dict, List, Optional from typing import Any, Dict, List, Optional
from services.upload_file.upload import handle_upload_file, handle_process_pdf, handle_to_postgis from services.upload_file.upload import handle_upload_file, handle_process_pdf, handle_to_postgis
from api.deps.role_dependency import require_role
from database.connection import engine from database.connection import engine
router = APIRouter() router = APIRouter()

View File

@ -14,3 +14,6 @@ rapidfuzz==3.14.3
Requests==2.32.5 Requests==2.32.5
Shapely==2.1.2 Shapely==2.1.2
SQLAlchemy==2.0.46 SQLAlchemy==2.0.46
asyncpg
psycopg2
python-multipart