Skip to content
View marvinvista's full-sized avatar

Block or report marvinvista

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Scrape PDF files from a website and ... Scrape PDF files from a website and convert them to markdown.
    1
    import os
    2
    import requests
    3
    from bs4 import BeautifulSoup
    4
    import PyPDF2
    5
    
                  
  2. Scrape webpages from the links in an... Scrape webpages from the links in an RSS feed and save their content as text files with the same name as the page link.
    1
    import os
    2
    import re
    3
    import requests
    4
    import feedparser
    5
    from bs4 import BeautifulSoup