Home > Enterprise >  How to parse HTML with ncbi nih?
How to parse HTML with ncbi nih?

Time:10-07

import requests
import re
import pandas as pd
from bs4 import BeautifulSoup

cds_id = "NP_001339842.1" 

fasta_url = ("https://www.ncbi.nlm.nih.gov/protein/%s/?report=fasta"            
  • Related