Change the project folder name from crawler to crawl4ai

This commit is contained in:
unclecode
2024-05-09 22:16:28 +08:00
parent 7ee8001b7d
commit 3ff1d15702
9 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
from crawler.web_crawler import WebCrawler from crawl4ai.web_crawler import WebCrawler
from crawler.models import UrlModel from crawl4ai.models import UrlModel
from crawler.utils import get_content_of_website from crawl4ai.utils import get_content_of_website
import os import os
def main(): def main():

View File

@@ -4,13 +4,13 @@ from fastapi.staticfiles import StaticFiles
from fastapi.responses import JSONResponse from fastapi.responses import JSONResponse
from pydantic import BaseModel, HttpUrl from pydantic import BaseModel, HttpUrl
from typing import List, Optional from typing import List, Optional
from crawler.web_crawler import WebCrawler from crawl4ai.web_crawler import WebCrawler
from crawler.models import UrlModel from crawl4ai.models import UrlModel
import asyncio import asyncio
from concurrent.futures import ThreadPoolExecutor, as_completed from concurrent.futures import ThreadPoolExecutor, as_completed
import chromedriver_autoinstaller import chromedriver_autoinstaller
from functools import lru_cache from functools import lru_cache
from crawler.database import get_total_count, clear_db from crawl4ai.database import get_total_count, clear_db
import os import os
import uuid import uuid