This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class ImdbReviewScraper(Scraper): | |
| """Implements methods for scraping IMDB. | |
| Inherited Attributes: | |
| chromedriver (chromedriver): a Chrome webdriver for Selenium. | |
| Own Methods: | |
| @staticmethod get_ratings_page | |
| @staticmethod get_reviews_page | |
| get_episodes_links | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | class ImdbReviewScraper(Scraper): | |
| """Implements methods for scraping IMDB. | |
| Inherited Attributes: | |
| chromedriver (chromedriver): a Chrome webdriver for Selenium. | |
| Own Methods: | |
| @staticmethod get_ratings_page | |
| @staticmethod get_reviews_page | |
| get_episodes_links | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """Python executable which scrapes IMDB for reviews.""" | |
| import argparse | |
| import pandas as pd | |
| from time import sleep | |
| from tqdm import tqdm | |
| from dependencies.general import timing | |
| from dependencies.scrapers import ImdbReviewScraper | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import pandas as pd | |
| from urllib import request | |
| from bs4 import BeautifulSoup | |
| from fake_useragent import UserAgent | |
| from typing import Union | |
| from time import sleep | |
| class WorldPostCodeScraper: | |
| """Scraper class for https://worldpostalcode.com/.""" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # Llama.cpp Docker Server Launcher | |
| # | |
| # This script can be configured using environment variables and/or command-line arguments. | |
| # Command-line arguments take precedence over environment variables. | |
| # | |
| # Environment variables: | |
| # LLAMA_HOST - Server host (default: 0.0.0.0) | |
| # LLAMA_PORT - Server port (default: 8000) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import os | |
| import sys | |
| from pprint import pprint | |
| import asyncio | |
| from loguru import logger | |
| from dotenv import load_dotenv | |
| from llama_index.core.agent.workflow import FunctionAgent | |
| from llama_index.llms.openai import OpenAI | |
| from llama_index.core import VectorStoreIndex, SimpleDirectoryReader | |
| from llama_index.readers.file import PandasCSVReader | 
OlderNewer
        