Skip to content

Commit

Permalink
Update paperlens_rss.py
Browse files Browse the repository at this point in the history
  • Loading branch information
HeQinWill authored Aug 28, 2024
1 parent 77b8389 commit a7f542d
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions paperlens_rss.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
import feedparser
import requests
from bs4 import BeautifulSoup
import json
import os
import shutil
import subprocess
import pandas as pd
import time
from datetime import datetime, timezone, timedelta
from pathlib import Path
from tqdm import tqdm
import time
from typing import Dict, List, Tuple

import feedparser
import requests

import re
import json
import html
import subprocess
import shutil
import os
from typing import Dict, List, Tuple
import yaml
from bs4 import BeautifulSoup

import google.generativeai as genai
KEY_GENAI = os.getenv('KEY_GENAI')
genai.configure(api_key=KEY_GENAI, transport='rest')
Expand Down

0 comments on commit a7f542d

Please sign in to comment.