Compare commits

..

No commits in common. "31ccee105d2e45b0ce341a6bcddf7836831d4201" and "ead61323a202b767c2dc8c13a4230513f23dd525" have entirely different histories.

3 changed files with 3 additions and 8 deletions

5
.gitignore vendored
View File

@ -18,7 +18,4 @@ logs/
style_temp/ style_temp/
services/styles/ services/styles/
cleansing_func.sql cleansing_func.sql
__pycache__/
*.pyc

View File

@ -3,6 +3,7 @@ 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

@ -13,7 +13,4 @@ python-dotenv==1.2.1
rapidfuzz==3.14.3 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