如何在python3中定义configparser

v2g6jxz6  于 2023-06-04  发布在  Python
关注(0)|答案(2)|浏览(236)

我正在做一个项目,将登录到网站,并将评论用户生成的内容。
我使用selenium,chrome驱动程序和python 3。所有凭据用户名、密码和chromedriver位置都在单独的config.ini文件中配置。
下面是Python脚本:

#!/usr/bin/python
import os
import time
import getpass
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from configparser import ConfigParser

# Reading configuration file
config = configparser.ConfigParser()
config.sections()

parser = ConfigParser()
parser.read('config.ini')
parameters = {}

for pairs in parser.sections():         # Parse the configuration file 
    for name, value in parser.items(pairs):
        parameters[name] = value

# Automating your browser 
chromedriver  = parameters["path"]
os.environ["webdriver.chrome.driver"] = chromedriver

#Uncomment this block if you don't want images to load(makes the procss a little bit faster)
'''
chromeOptions = webdriver.ChromeOptions()
prefs = {"profile.managed_default_content_settings.images":2}
chromeOptions.add_experimental_option("prefs",prefs)
browser = webdriver.Chrome(chromedriver, chrome_options=chromeOptions)
'''

browser = webdriver.Chrome(chromedriver)
browser.set_window_size(1120, 550)
browser.get("http://www.website.com")       # website home page 
time.sleep(3)                               

# Logging into website
form = browser.find_element_by_class_name('regular_login')
email = form.find_element_by_name("email")
password = form.find_element_by_name("password")
email.send_keys(parameters["email_id"])
try:
    pass_word = parameters["pass_word"]
except:
    pass_word = getpass.getpass()               # If you want to enter password on terminal
password.send_keys(pass_word)
password.send_keys(Keys.RETURN)
time.sleep(2)                                   

# Fetching answers page of t6he user
answers_url = "https://www.website.com/" + parameters["username"] + "/answers"      
browser.get(answers_url)                                    

 #commenting answers one by one from top to bottom 
counter=0
while True:
    try:
        elem=browser.find_element_by_xpath("//*[@action_click='enter']")
        counter=counter+1
        elem.click()
        time.sleep(4)
    except:
        break

print (str(counter) +" answers commented..")

我一直收到

config = configparser.ConfigParser()
NameError: name 'configparser' is not defined

请问,谁能回答我如何定义配置。

vs91vp4v

vs91vp4v1#

发生此错误的原因是您实际上尚未导入configparser。您已经从 * configparser导入了一些东西,但实际上并没有导入configparser本身。
对此有两种解决方案。
1)您可以通过导入模块来定义它。import configparser
2)或者按照从错误开始的第3行所做的操作,使用config = ConfigParser()
如果你正在使用configparser的其他部分,那么我建议你导入整个模块并使用选项1。如果你只使用ConfigParser,那么我会选择2。

zf9nrax1

zf9nrax12#

你有config = configparser.ConfigParser()你应该有config = ConfigParser()
你不需要指定configparser,因为你是从它导入的,所以你只需要使用你要导入的类ConfigParser

相关问题