├── README.md
├── config
│ ├── __init__.py
│ └── __pycache__
├── driver
│ ├── __init__.py
│ ├── __pycache__
│ ├── base.py
│ ├── element.py
│ ├── execute.py
│ └── script.py
├── geckodriver.log
├── get_comment.py
├── get_document_url_by_json.py
├── get_document_url_by_page.py
├── get_iframe_url.py
├── log
│ ├── __init__.py
│ └── __pycache__
├── mysql
│ ├── __init__.py
│ ├── __pycache__
│ ├── delete.py
│ ├── insert.py
│ ├── select.py
│ └── update.py
├── request
│ ├── __init__.py
│ ├── __pycache__
│ ├── content.py
│ ├── cookie.py
│ └── uri.py
├── soup
│ ├── __init__.py
│ ├── __pycache__
│ ├── attribute.py
│ ├── content.py
│ └── dom.py
└── test.py