-
Notifications
You must be signed in to change notification settings - Fork 117
Description
This is the code
from pywebcopy import save_webpage
kwargs = {'project_name': 'site folder'}
save_webpage(
# url pf the website
url='https://www.geeksforgeeks.org/data-structures/linked-list/',
# folder where the copy will be saved
project_folder='C:\\Desktop\free',
**kwargs
)
####################################################
This the error occurs
Traceback (most recent call last):
File "C:\Users\akmv\Desktop\free\app.py", line 14, in
from pywebcopy import save_webpage
File "C:\Users\akmv\AppData\Local\Programs\Python\Python310\lib\site-packages\pywebcopy_init_.py", line 49, in
from .configs import config, SESSION
File "C:\Users\akmv\AppData\Local\Programs\Python\Python310\lib\site-packages\pywebcopy\configs.py", line 18, in
from .exceptions import AccessError
File "C:\Users\akmv\AppData\Local\Programs\Python\Python310\lib\site-packages\pywebcopy\exceptions.py", line 46, in
class UrlTransformerNotSetup(PywebcopyError, UnboundLocalError):
TypeError: multiple bases have instance lay-out conflict
How can I solve this error?
Thank you very much in advance!