Skip to content

Commit

Permalink
update.
Browse files Browse the repository at this point in the history
  • Loading branch information
blacknon committed Sep 7, 2023
1 parent 5c0cd91 commit 194ed94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pydork/engine_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ def get_result(self, url: str, method='GET', data=None):
self.driver.execute_script(
"window.scrollTo(0,document.body.scrollHeight)"
)
time.sleep(3)
time.sleep(0.5)

# 優先度2: Splash経由でのアクセス(Seleniumが有効になってない場合はこちら)
elif self.USE_SPLASH:
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ def get_completefile_install_location(shell):
data_files = []
data_files.append((loc['bash'], files['bash']))
data_files.append((loc['zsh'], files['zsh']))

return data_files


name = 'pydork'
version = '1.1.6'
release = '1.1.6'
version = '1.1.7'
release = '1.1.7'

if __name__ == "__main__":
setuptools.setup(
Expand Down Expand Up @@ -126,6 +127,7 @@ def get_completefile_install_location(shell):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
],
data_files=get_data_files(),
Expand Down

0 comments on commit 194ed94

Please sign in to comment.