Skip to content

Commit

Permalink
Sort Import
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrevl committed Sep 1, 2023
1 parent fd136f0 commit d088bf8
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions ssai.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,24 @@
#!python
import requests
from bs4 import BeautifulSoup
import argparse
import json
import pyperclip
import sys
import os
import subprocess
import urllib3
import argparse
import sys
from pathlib import Path
from urllib.parse import urlparse
import PyPDF2

import openai
import PyPDF2
import pyperclip
import requests
import urllib3
from bs4 import BeautifulSoup
from dotenv import load_dotenv
import os
from youtube_transcript_api import YouTubeTranscriptApi

load_dotenv()
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)

import os
import openai

def parse_arguments():
parser = argparse.ArgumentParser(description='Summarize a URL, PDF and Youtube Video using ChatGPT.')

Expand Down

0 comments on commit d088bf8

Please sign in to comment.