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
from pdf2jpg import pdf2jpg | |
fileInput = r'C:/Users/your-user/fileLocal/file.png' | |
fileOutput = r'C:/Users/your-user/fileLocal/file.jpg' | |
image = pdf2jpg.convert_pdf2jpg(fileInput, fileOutput, pages="ALL") |
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 wordpress_login: | |
url = r'https://wordpress.com/log-in/pt-br?redirect_to=https%3A%2F%2Fwordpress.com%2F' | |
def __init__(self, user, phantomjs): | |
self.user = user | |
self.phantomjs = phantomjs | |
def login(self): | |
from selenium import webdriver | |
from selenium.common.exceptions import NoSuchElementException |
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
BeautifulSoup==3.2.0 | |
requests==2.22.0 | |
pandas==2.27.0 |
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
BeautifulSoup==3.2.0 | |
requests==2.22.0 | |
pandas>=2.27.0, <=2.30.0 |
OlderNewer