所有selenium相关的库

2022-12-23,

通过爬虫 获取 官方文档库 如果想获取 相应的库 修改对应配置即可

代码如下

from urllib.parse import urljoin
import requests
from lxml import etree def get_data(page_num, key, file_name):
"""
解析
page_num: 爬取页数
key: 爬取的关键字
file_name: 存入的文件
"""
headers = {
'authority': 'pypi.org',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'accept-language': 'zh-CN,zh;q=0.9',
'cookie': '_ga=GA1.2.219278849.1652147728; _gid=GA1.2.1817385364.1657850983; _gat_gtag_UA_55961911_1=1; session_id=vyEA1rOaU_76r8eeW8AeM5VBtXYQytU_SjTSCYtvkYk.YtDMZw.VRXbcY1ixEgQ9oFN3hTOs-uv-CGZawlkFmSjKOD70dCymJ9Nap2WXcKUXwEDZwmyI2hez5Y5DkJoAf0Y_bGveA',
'referer': 'https://pypi.org/search/?q=selenium&page=1',
'sec-ch-ua': '^\\^.Not/A)Brand^\\^;v=^\\^99^\\^, ^\\^Google',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '^\\^Windows^\\^',
'sec-fetch-dest': 'document',
'sec-fetch-mode': 'navigate',
'sec-fetch-site': 'same-origin',
'sec-fetch-user': '?1',
'upgrade-insecure-requests': '1',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',
}
for i in range(1, page_num):
params = (
('q', key),
('page', str(i)),
)
response = requests.get('https://pypi.org/search/', headers=headers, params=params)
tree = etree.HTML(response.text)
fp = open(file_name, "a+", encoding="utf-8")
for li in tree.xpath("//ul[@class=\"unstyled\"]/li"):
url = urljoin('https://pypi.org/search/', li.xpath("./a/@href")[0])
name = li.xpath("./a/h3/span[1]/text()")[0] + " " + li.xpath("./a/h3/span[2]/text()")[0]
try:
description = li.xpath("./a/p/text()")[0]
except IndexError:
description = "简介无内容"
print(name)
a = "库名:" + name + "\n" \
+ "库链接:" + url + "\n" + \
"库简介:" + description + "\r\n"
fp.write(a) if __name__ == '__main__':
get_data(80, "selenium", "a.txt")

库名:selenium-oxide 1.0.0

库链接:https://pypi.org/project/selenium-oxide/

库简介:A Selenium boilerplate for automating web exploits. Use responsibly and ethically.

库名:play-selenium 0.0.3

库链接:https://pypi.org/project/play-selenium/

库简介:pytest plugin that let you drive a browser with Selenium

库名:comun-selenium 0.3

库链接:https://pypi.org/project/comun-selenium/

库简介:简介无内容

库名:selenium-cmd 0.0.2

库链接:https://pypi.org/project/selenium-cmd/

库简介:Tool to control Selenium from command line

库名:selenium-chromedriver 1.3

库链接:https://pypi.org/project/selenium-chromedriver/

库简介:Install Stable version Chromedriver for Selenium on Windows, MacOS, M1 MacOS and Linux

库名:selenium-ai 0.1.2

库链接:https://pypi.org/project/selenium-ai/

库简介:AI utility functions for webscraping and selenium automation scripts

库名:selenium-stealth 1.0.6

库链接:https://pypi.org/project/selenium-stealth/

库简介:Trying to make python selenium more stealthy.

库名:edc-selenium 0.1.3

库链接:https://pypi.org/project/edc-selenium/

库简介:TestCaseMixins for selenium tests on the clinicedc/edc

库名:ctreport-selenium 1.1.4

库链接:https://pypi.org/project/ctreport-selenium/

库简介:ctreport-selenium is a simple, creative and a customizable report for automation testing using Python. Best suitable for pytest, unit test and nose framework.

库名:webtest-selenium 0.1

库链接:https://pypi.org/project/webtest-selenium/

库简介:Selenium testing with WebTest

库名:antiblock-selenium 0.0.3

库链接:https://pypi.org/project/antiblock-selenium/

库简介:Selenium Firefox e Chrome webdrivers com alguns mecanismos antibloqueios

库名:masonite-selenium 0.0.3

库链接:https://pypi.org/project/masonite-selenium/

库简介:Selenium Testing Package

库名:selenium-extension 1.9.1

库链接:https://pypi.org/project/selenium-extension/

库简介:Provides additional methods for selenium automation

库名:selenium-youtube 2.0.29

库链接:https://pypi.org/project/selenium-youtube/

库简介:selenium_youtube

库名:selenium-yaml 1.0.96

库链接:https://pypi.org/project/selenium-yaml/

库简介:Selenium bots using YAML

库名:buster-selenium 0.1

库链接:https://pypi.org/project/buster-selenium/

库简介:Manage buster.js slave browsers using selenium.

库名:bonobo-selenium 0.1.1

库链接:https://pypi.org/project/bonobo-selenium/

库简介:Bonobo Selenium Extension

库名:Easy2Selenium 0.0.1

库链接:https://pypi.org/project/easy2selenium/

库简介:Library for easy use of Selenium.

库名:selenium-account 0.2.1

库链接:https://pypi.org/project/selenium-account/

库简介:selenium_account

库名:dd-selenium 0.0.4

库链接:https://pypi.org/project/dd-selenium/

库简介:Providing drag and drop functionality in selenium python.

库名:selenium 4.3.0

库链接:https://pypi.org/project/selenium/

库简介:简介无内容

库名:amazon-selenium 0.1.2

库链接:https://pypi.org/project/amazon-selenium/

库简介:amazon_selenium

库名:selenium-wire 4.6.5

库链接:https://pypi.org/project/selenium-wire/

库简介:Extends Selenium to give you the ability to inspect requests made by the browser.

库名:selenium-configurator 0.1.1

库链接:https://pypi.org/project/selenium-configurator/

库简介:Helper API to define multiple webdrivers in config files.

库名:selenium-firefox 2.0.7

库链接:https://pypi.org/project/selenium-firefox/

库简介:selenium_firefox

库名:auto-selenium 1.0.1

库链接:https://pypi.org/project/auto-selenium/

库简介:Python tool to automate the download of Selenium Web Drivers for all browsers

库名:selenium-components 0.2

库链接:https://pypi.org/project/selenium-components/

库简介:Page objects for common components

库名:selenium_wrapper 0.1

库链接:https://pypi.org/project/selenium-wrapper/

库简介:Selenium driver wrapper and screenshots nosetests plugin

库名:fasttest-selenium 0.1.6

库链接:https://pypi.org/project/fasttest-selenium/

库简介:WEB自动化快速编写工具

库名:selenium-pinterest 0.0.84

库链接:https://pypi.org/project/selenium-pinterest/

库简介:Selenium Pinterest helps you follow / unfollow / pin / post to Pinterest

库名:selenium-generator 0.3

库链接:https://pypi.org/project/selenium-generator/

库简介:A framework for automated generating of Selenim WebDriver tests from yaml based on unittest framework.

库名:Selenium-Screenshot 1.7.0

库链接:https://pypi.org/project/selenium-screenshot/

库简介:This package is used to Clipped Images of Html Elements of Selenium Webdriver

库名:django-selenium 0.9.8

库链接:https://pypi.org/project/django-selenium/

库简介:Django Selenium Integration

库名:selenium-robot 0.0.6

库链接:https://pypi.org/project/selenium-robot/

库简介:This is a robot description base selenium.

库名:datetime-selenium 0.0.0

库链接:https://pypi.org/project/datetime-selenium/

库简介:Send and receive datetime objects from web forms.

库名:selenium-findtext 0.1.5

库链接:https://pypi.org/project/selenium-findtext/

库简介:Text finding helpers for Selenium tests

库名:selenium-elements 0.0.2

库链接:https://pypi.org/project/selenium-elements/

库简介:Page object model made easy.

库名:nose-selenium 0.07

库链接:https://pypi.org/project/nose-selenium/

库简介:Control the WebDriver instance in your scripts with command-line options

库名:selenium-toolkit 0.0.2

库链接:https://pypi.org/project/selenium-toolkit/

库简介:this is not a awesome description

库名:lemoncheesecake-selenium 0.1.0

库链接:https://pypi.org/project/lemoncheesecake-selenium/

库简介:Test Storytelling for Selenium

库名:selenium-oxide 1.0.0

库链接:https://pypi.org/project/selenium-oxide/

库简介:A Selenium boilerplate for automating web exploits. Use responsibly and ethically.

库名:play-selenium 0.0.3

库链接:https://pypi.org/project/play-selenium/

库简介:pytest plugin that let you drive a browser with Selenium

库名:comun-selenium 0.3

库链接:https://pypi.org/project/comun-selenium/

库简介:简介无内容

库名:selenium-cmd 0.0.2

库链接:https://pypi.org/project/selenium-cmd/

库简介:Tool to control Selenium from command line

库名:selenium-chromedriver 1.3

库链接:https://pypi.org/project/selenium-chromedriver/

库简介:Install Stable version Chromedriver for Selenium on Windows, MacOS, M1 MacOS and Linux

库名:selenium-ai 0.1.2

库链接:https://pypi.org/project/selenium-ai/

库简介:AI utility functions for webscraping and selenium automation scripts

库名:selenium-stealth 1.0.6

库链接:https://pypi.org/project/selenium-stealth/

库简介:Trying to make python selenium more stealthy.

库名:edc-selenium 0.1.3

库链接:https://pypi.org/project/edc-selenium/

库简介:TestCaseMixins for selenium tests on the clinicedc/edc

库名:ctreport-selenium 1.1.4

库链接:https://pypi.org/project/ctreport-selenium/

库简介:ctreport-selenium is a simple, creative and a customizable report for automation testing using Python. Best suitable for pytest, unit test and nose framework.

库名:webtest-selenium 0.1

库链接:https://pypi.org/project/webtest-selenium/

库简介:Selenium testing with WebTest

库名:antiblock-selenium 0.0.3

库链接:https://pypi.org/project/antiblock-selenium/

库简介:Selenium Firefox e Chrome webdrivers com alguns mecanismos antibloqueios

库名:masonite-selenium 0.0.3

库链接:https://pypi.org/project/masonite-selenium/

库简介:Selenium Testing Package

库名:selenium-extension 1.9.1

库链接:https://pypi.org/project/selenium-extension/

库简介:Provides additional methods for selenium automation

库名:selenium-youtube 2.0.29

库链接:https://pypi.org/project/selenium-youtube/

库简介:selenium_youtube

库名:selenium-yaml 1.0.96

库链接:https://pypi.org/project/selenium-yaml/

库简介:Selenium bots using YAML

库名:buster-selenium 0.1

库链接:https://pypi.org/project/buster-selenium/

库简介:Manage buster.js slave browsers using selenium.

库名:bonobo-selenium 0.1.1

库链接:https://pypi.org/project/bonobo-selenium/

库简介:Bonobo Selenium Extension

库名:Easy2Selenium 0.0.1

库链接:https://pypi.org/project/easy2selenium/

库简介:Library for easy use of Selenium.

库名:selenium-account 0.2.1

库链接:https://pypi.org/project/selenium-account/

库简介:selenium_account

库名:dd-selenium 0.0.4

库链接:https://pypi.org/project/dd-selenium/

库简介:Providing drag and drop functionality in selenium python.

库名:selenium-probes 0.1.0

库链接:https://pypi.org/project/selenium-probes/

库简介:A framework for building Selenium-based probes.

库名:snapshot-selenium 0.0.2

库链接:https://pypi.org/project/snapshot-selenium/

库简介:Render echarts using selenium

库名:types-selenium 3.141.9

库链接:https://pypi.org/project/types-selenium/

库简介:Typing stubs for selenium

库名:eyes-selenium 5.8.0

库链接:https://pypi.org/project/eyes-selenium/

库简介:Applitools Python SDK. Selenium package

库名:selenium-update 0.0.0

库链接:https://pypi.org/project/selenium-update/

库简介:Automate Selenium webdriver dependency set up

库名:selenium-screenshots 0.1.3

库链接:https://pypi.org/project/selenium-screenshots/

库简介:python package which helps to create many screenshots for selenium.webdriver

库名:selenium-recaptcha 0.0.1

库链接:https://pypi.org/project/selenium-recaptcha/

库简介:reCaptcha v2 solver for selenium

库名:gocept.selenium 7.1

库链接:https://pypi.org/project/gocept-selenium/

库简介:Test-friendly Python API for Selenium and integration with web application frameworks.

库名:selenium-docker 0.5.0

库链接:https://pypi.org/project/selenium-docker/

库简介:Additional selenium drivers that utilize docker containers for their UI.

库名:selenium-requests 2.0.0

库链接:https://pypi.org/project/selenium-requests/

库简介:Extends Selenium WebDriver classes to include the request function from the Requests library, while doing all the needed cookie and request headers handling.

库名:zc.selenium 1.2.1

库链接:https://pypi.org/project/zc-selenium/

库简介:Selenium integration for Zope 3

库名:scrapy-selenium 0.0.7

库链接:https://pypi.org/project/scrapy-selenium/

库简介:Scrapy with selenium

库名:selenium-chrome 0.0.29

库链接:https://pypi.org/project/selenium-chrome/

库简介:selenium_chrome

库名:selenium-actions 1.0.5

库链接:https://pypi.org/project/selenium-actions/

库简介:Selenium Actions - Action Based Selenium library - selenium in more accessible way

库名:selenium-po 0.0.7

库链接:https://pypi.org/project/selenium-po/

库简介:使用yaml实现selenium的po

库名:pytest-selenium 3.0.0

库链接:https://pypi.org/project/pytest-selenium/

库简介:pytest plugin for Selenium

库名:selenium-cookies 0.0.4

库链接:https://pypi.org/project/selenium-cookies/

库简介:Cookie handling for selenium webdrivers.

库名:selenium-helpers 1.0.5

库链接:https://pypi.org/project/selenium-helpers/

库简介:Tools to make certain selenium tasks more straightforward.

库名:Selenium4R 0.1.6

库链接:https://pypi.org/project/selenium4r/

库简介:Selenium for Researcher

库名:kings-selenium 1.0.3

库链接:https://pypi.org/project/kings-selenium/

库简介:encapsulation the web and phone(appium) functions used by selenium

库名:selenium-browser 0.0.15

库链接:https://pypi.org/project/selenium-browser/

库简介:selenium_browser

库名:noseapp_selenium 1.2.3

库链接:https://pypi.org/project/noseapp-selenium/

库简介:selenium extension for noseapp lib

库名:Selenium2LibraryExtension 1.1.0

库链接:https://pypi.org/project/selenium2libraryextension/

库简介:This library was created as an expansion to Selenium2Library. It was initially created as a solution to specific test cases that required overhead (such as calling inline javascripts or using many steps for one action). It also features bugfixes.

库名:airtest-selenium 1.0.3

库链接:https://pypi.org/project/airtest-selenium/

库简介:Selenium with airtest test framework.

库名:selenium-datatable 0.3.3

库链接:https://pypi.org/project/selenium-datatable/

库简介:A small library for simplifying a table object in selenium

库名:percy-selenium 1.0.5

库链接:https://pypi.org/project/percy-selenium/

库简介:Python client for visual testing with Percy

库名:selenium-pom 0.1.4

库链接:https://pypi.org/project/selenium-pom/

库简介:Page Object Model for Selenium

库名:more-selenium 1.25

库链接:https://pypi.org/project/more-selenium/

库简介:Better functionality for selenium

库名:Core-Selenium 0.1.3

库链接:https://pypi.org/project/core-selenium/

库简介:Selenium framework source code

库名:galaxy-selenium 21.9.0

库链接:https://pypi.org/project/galaxy-selenium/

库简介:Galaxy Selenium Interaction Framework

库名:selenium-utils 0.4

库链接:https://pypi.org/project/selenium-utils/

库简介:Common utils for working with Selenium

库名:selenium-clay 0.0.0

库链接:https://pypi.org/project/selenium-clay/

库简介:it is hard to use a web browser nowadays

库名:rabird.selenium 0.12.5

库链接:https://pypi.org/project/rabird-selenium/

库简介:An extension library for selenium

库名:selenium-aurelia 0.1.1

库链接:https://pypi.org/project/selenium-aurelia/

库简介:Wrapper around selenium driver to ease testing of Aurelia based applications.

库名:eric-selenium 1.0

库链接:https://pypi.org/project/eric-selenium/

库简介:首次测试

库名:sbo-selenium 0.7.2

库链接:https://pypi.org/project/sbo-selenium/

库简介:Selenium testing framework for Django applications

库名:selenium-async 0.1.0

库链接:https://pypi.org/project/selenium-async/

库简介:Wrapper for Selenium to make it easy, with asyncio support!

库名:whatsappbot-selenium 0.0.1

库链接:https://pypi.org/project/whatsappbot-selenium/

库简介:It is a module that has the function of sending and deleting whatsapp messages using Selenium

库名:selenium-respectful 0.1.0

库链接:https://pypi.org/project/selenium-respectful/

库简介:Minimalist Selenium webdriver wrapper to work within rate limits of any amount of services simultaneously. Parallel processing friendly.

库名:selenium-library 0.0.3

库链接:https://pypi.org/project/selenium-library/

库简介:A human readable wrapper class for selenium

库名:selenium-utilities 1.2.0

库链接:https://pypi.org/project/selenium-utilities/

库简介:Useful utilities for comfortable using selenium.

库名:selenium-shortcuts 1.6

库链接:https://pypi.org/project/selenium-shortcuts/

库简介:Selenium shortcut functions

库名:selenium-pages 0.1.0a0

库链接:https://pypi.org/project/selenium-pages/

库简介:A page based framework for creating Selenium test suites

库名:JT-Selenium 0.0.10

库链接:https://pypi.org/project/jt-selenium/

库简介:My Selenium API Wrapper/Utility

库名:selenium_extensions 0.1.2

库链接:https://pypi.org/project/selenium-extensions/

库简介:Tools that will make writing tests, bots and scrapers using Selenium much easier

库名:selenium_visitor 0.0.1

库链接:https://pypi.org/project/selenium-visitor/

库简介:A helper class for selenium driver

库名:selenium-astride 0.3.1

库链接:https://pypi.org/project/selenium-astride/

库简介:Framework to use Selenium loud and clear, astride. Use it with Django, Flask or your favourite web framework.

库名:selenium-logging 0.0.6

库链接:https://pypi.org/project/selenium-logging/

库简介:Log messages and images in HTML file

库名:selenium-tools 0.0.2

库链接:https://pypi.org/project/selenium-tools/

库简介:Datetime and range slider tools for python selenium

库名:selenium-support 0.0.1

库链接:https://pypi.org/project/selenium-support/

库简介:Usefull function for Selenium umbrella project

库名:selenium-essentials 1.0.1

库链接:https://pypi.org/project/selenium-essentials/

库简介:Speed up selenium development

库名:selenium-linux 3.144.13

库链接:https://pypi.org/project/selenium-linux/

库简介:selenium_linux Python language bindings for Selenium WebDriver.

库名:gerapy-selenium 0.0.3

库链接:https://pypi.org/project/gerapy-selenium/

库简介:Selenium Components for Scrapy & Gerapy

库名:haufe.selenium 0.3.0

库链接:https://pypi.org/project/haufe-selenium/

库简介:A Python wrapper for controlling the Selenium Remote Server

库名:easy-selenium 0.1.1

库链接:https://pypi.org/project/easy-selenium/

库简介:Tool to make the use of selenium library easier

库名:selenium2mysql 1.5.8

库链接:https://pypi.org/project/selenium2mysql/

库简介:scraper using selenium for general purposes

库名:selenium-helper 0.1.2.2

库链接:https://pypi.org/project/selenium-helper/

库简介:简介无内容

库名:selenium_unittest 0.2.3

库链接:https://pypi.org/project/selenium-unittest/

库简介:Selenium Unit Test Framework

库名:selenium-enhancer 0.2.22

库链接:https://pypi.org/project/selenium-enhancer/

库简介:A package to enhance your Selenium WebDriver experience

库名:screenpy-selenium 4.0.2

库链接:https://pypi.org/project/screenpy-selenium/

库简介:ScreenPy extension to enable interacting with Selenium.

库名:selenium-base 3.5.5

库链接:https://pypi.org/project/selenium-base/

库简介:A complete web automation framework for end-to-end testing.

库名:selenium-unittest-common 1.0.3

库链接:https://pypi.org/project/selenium-unittest-common/

库简介:Python modules for selenium unit test

库名:kw-selenium-wrapper 0.0.0

库链接:https://pypi.org/project/kw-selenium-wrapper/

库简介:This is a dummy package.

库名:robotframework-selenium2accessibility 0.2.1

库链接:https://pypi.org/project/robotframework-selenium2accessibility/

库简介:Robot Framework resources for automating accessibility tools

库名:scrapy-headless-selenium 0.1.2

库链接:https://pypi.org/project/scrapy-headless-selenium/

库简介:Scrapy with Headless Selenium

库名:selenium_page_adapter 0.2.0

库链接:https://pypi.org/project/selenium-page-adapter/

库简介:PageAdapter pattern for Python Selenium browser test abstraction.

库名:scrapy-selenium-middleware 0.0.5

库链接:https://pypi.org/project/scrapy-selenium-middleware/

库简介:Scrapy middleware for downloading a page html source using selenium, and interacting with the web driver in the request context eventually returning an HtmlResponse to the spider

库名:selenium-smart-locator 0.3.0

库链接:https://pypi.org/project/selenium-smart-locator/

库简介:A (somewhat) smart locator class for Selenium.

库名:django-selenium-pdfmaker 0.0.4

库链接:https://pypi.org/project/django-selenium-pdfmaker/

库简介:A Light Django Application which uses selenium to convert any html page to pdf. Using this approach you can easily make pdf of HTML pages with charts, tables and having their loaded Styles.

库名:robotframework-selenium-mouseextensions 0.1

库链接:https://pypi.org/project/robotframework-selenium-mouseextensions/

库简介:Extra mouse actions missing from the standard SeleniumLibrary

库名:selenium-python-tools 0.0.2

库链接:https://pypi.org/project/selenium-python-tools/

库简介:Quick driver instantiation for M1 Selenium

库名:youtube-uploader-selenium 0.1.0

库链接:https://pypi.org/project/youtube-uploader-selenium/

库简介:The package that helps to upload videos on YouTube using Selenium

库名:selenium-move-cursor 0.0.8

库链接:https://pypi.org/project/selenium-move-cursor/

库简介:Move mouse cursor to element in browser

库名:pageplanner-selenium-benjihughes 0.14

库链接:https://pypi.org/project/pageplanner-selenium-benjihughes/

库简介:Offers a selenium interface to gather arguments for pageplanner.

库名:selenium-saucelabs-python 0.3.1

库链接:https://pypi.org/project/selenium-saucelabs-python/

库简介:Sauce OnDemand driver for Python

库名:django-selenium-boilerplate 0.0.6

库链接:https://pypi.org/project/django-selenium-boilerplate/

库简介:Boilerplate for setting up selenium tests in Django

库名:django-selenium-test 1.1.0

库链接:https://pypi.org/project/django-selenium-test/

库简介:Write clean Selenium tests in Django

库名:selenium-react-select 0.0.4

库链接:https://pypi.org/project/selenium-react-select/

库简介:package for react select : version 1 and 2

库名:zs-selenium-youtube 2.0.20

库链接:https://pypi.org/project/zs-selenium-youtube/

库简介:zs_selenium_youtube

库名:pytest-selenium-enhancer 1.7.1

库链接:https://pypi.org/project/pytest-selenium-enhancer/

库简介:pytest plugin for Selenium

库名:selenium-cookie-helper 1.7

库链接:https://pypi.org/project/selenium-cookie-helper/

库简介:the easy way to save and load cookies while using selenium.

库名:selenium-webdriver-extender 0.0.0

库链接:https://pypi.org/project/selenium-webdriver-extender/

库简介:Selenium webdriver extender for simplifying webdriver installation and managment, webdriver execution and more.

库名:Zyte-SmartProxy-Selenium 1.0.4

库链接:https://pypi.org/project/zyte-smartproxy-selenium/

库简介:A wrapper over Selenium Wire to provide Zyte Smart Proxy Manager specific functionalities.

库名:python-selenium-helper 0.0.3

库链接:https://pypi.org/project/python-selenium-helper/

库简介:python selenium helper

库名:twitter-scraper-selenium 2.0.0

库链接:https://pypi.org/project/twitter-scraper-selenium/

库简介:Python package to scrap twitter's front-end easily with selenium

库名:react-select-selenium 0.0.1

库链接:https://pypi.org/project/react-select-selenium/

库简介:package for react select

库名:percy-python-selenium 1.0.0

库链接:https://pypi.org/project/percy-python-selenium/

库简介:Python client for visual testing with Percy

库名:pytest-selenium-pdiff 0.4.0

库链接:https://pypi.org/project/pytest-selenium-pdiff/

库简介:A pytest package implementing perceptualdiff for Selenium tests.

库名:django-nose-selenium 0.7.3

库链接:https://pypi.org/project/django-nose-selenium/

库简介:A nose plugin to run selenium tests with django

库名:selenium-youtube-firefox 0.0.2

库链接:https://pypi.org/project/selenium-youtube-firefox/

库简介:selenium_youtube_firefox

库名:selenium-page-elements 0.1.6

库链接:https://pypi.org/project/selenium-page-elements/

库简介:A small library for simplifying page objects.

库名:django-selenium-login 2.0.0

库链接:https://pypi.org/project/django-selenium-login/

库简介:A quick login for selenium tests to be used in Django projects

库名:eyes-selenium-images 3.6

库链接:https://pypi.org/project/eyes-selenium-images/

库简介:Applitools Eyes SDK For Selenium Python WebDriver

库名:aquality-selenium-core 0.0.4

库链接:https://pypi.org/project/aquality-selenium-core/

库简介:Core functionality for python-based aquality selenium libraries

库名:scrapy-selenium-mark 0.0.10

库链接:https://pypi.org/project/scrapy-selenium-mark/

库简介:Scrapy with selenium

库名:selenium-uploader-account 0.2.1

库链接:https://pypi.org/project/selenium-uploader-account/

库简介:selenium_uploader_account

库名:selenium-page-factory 2.5

库链接:https://pypi.org/project/selenium-page-factory/

库简介:Python library provides page factory approach to implement page object model in selenium

库名:easy-selenium-pkg 0.1

库链接:https://pypi.org/project/easy-selenium-pkg/

库简介:This is a selenium easy library which has easy syntax build on selenium.all the things are running in background we are calling only functions..This is too easy for begineers

库名:selenium-testing-module 1.0.3

库链接:https://pypi.org/project/selenium-testing-module/

库简介:A module to be used with Selenium; helps make test scripts easier to write.

库名:robotframework-selenium2library 3.0.0

库链接:https://pypi.org/project/robotframework-selenium2library/

库简介:Web testing library for Robot Framework

库名:selenium-session-client 1.0.3

库链接:https://pypi.org/project/selenium-session-client/

库简介:Bypass your app login screen by managing your browser session (cookies)

库名:galaxy-test-selenium 21.9.0

库链接:https://pypi.org/project/galaxy-test-selenium/

库简介:Galaxy Selenium Tests

库名:selenium-page-objects 0.2.1

库链接:https://pypi.org/project/selenium-page-objects/

库简介:page object based on selenium.

库名:robotframework-selenium2screenshots 0.8.1

库链接:https://pypi.org/project/robotframework-selenium2screenshots/

库简介:Robot Framework keyword library for capturing annotated screenshots with Selenium2Library

库名:selenium-testing-library 2022.3b0

库链接:https://pypi.org/project/selenium-testing-library/

库简介:A Python Selenium library inspired by the Testing Library

库名:py-selenium-scrapy 0.0.8

库链接:https://pypi.org/project/py-selenium-scrapy/

库简介:Scrapy with selenium in Python

库名:selenium_ui_tool 0.0.1

库链接:https://pypi.org/project/selenium-ui-tool/

库简介:简介无内容

库名:selenium-chrome-screenshot 0.0.1

库链接:https://pypi.org/project/selenium-chrome-screenshot/

库简介:UNKNOWN

库名:selenium-youtube-chrome 0.0.5

库链接:https://pypi.org/project/selenium-youtube-chrome/

库简介:selenium_youtube_chrome

库名:axe-selenium-python 2.1.6

库链接:https://pypi.org/project/axe-selenium-python/

库简介:Python library to integrate axe and selenium for web accessibility testing.

库名:bbb-selenium-exporter 0.1.1

库链接:https://pypi.org/project/bbb-selenium-exporter/

库简介:Export Prometheus metrics scraped from BigBlueButton servers using Selenium

库名:selenium-odoo-pages 0.4.0

库链接:https://pypi.org/project/selenium-odoo-pages/

库简介:A set of pages and elements used to interact with odoo pages and widget using the page selenium objects pattern

库名:dce-mh-selenium 0.3.0

库链接:https://pypi.org/project/dce-mh-selenium/

库简介:Selenium tasks and page objects for DCE Matterhorn

库名:selenium-duration-50ms 4.0.0b3

库链接:https://pypi.org/project/selenium-duration-50ms/

库简介:Python bindings for Selenium

库名:django-selenium-clean 0.3.3

库链接:https://pypi.org/project/django-selenium-clean/

库简介:Write clean Selenium tests in Django

库名:k-selenium-cookies 0.0.4

库链接:https://pypi.org/project/k-selenium-cookies/

库简介:k_selenium_cookies

库名:antiblock-scrapy-selenium 0.0.1

库链接:https://pypi.org/project/antiblock-scrapy-selenium/

库简介:Mecanismos antibloqueios para Scrapy-Selenium

库名:test-ai-selenium 0.1.20

库链接:https://pypi.org/project/test-ai-selenium/

库简介:A package to bring ai to selenium scripts.

库名:selenium-requests-html 1.0

库链接:https://pypi.org/project/selenium-requests-html/

库简介:Fork of selenium-requests that extends Selenium WebDriver classes to include the functionality from the Requests-HTML library, while doing all the needed cookie and request headers handling. Credit for most of what makes this work goes toto Chris Braun and his original work done on Selenium-Requestshttps://github.com/cryzed/Selenium-Requests

库名:simple-nose-selenium 0.2.1

库链接:https://pypi.org/project/simple-nose-selenium/

库简介:Run your Selenium TestCase's in chrome, firefox or saucelabs

库名:questions-three-selenium 3.12.0.0

库链接:https://pypi.org/project/questions-three-selenium/

库简介:Selenium integration and tools for questions-three

库名:selenium-crawler-template 0.4.0

库链接:https://pypi.org/project/selenium-crawler-template/

库简介:Boilerplate for developing crawler with Selenium.

库名:local-selenium-pool 1.0.7

库链接:https://pypi.org/project/local-selenium-pool/

库简介:Concurrent local selenium execution using multiprocessing_on_dill

库名:selenium-driver-updater 5.1.3

库链接:https://pypi.org/project/selenium-driver-updater/

库简介:Download or update your Selenium driver binaries and their browsers automatically with this package

库名:msedge-selenium-tools 3.141.4

库链接:https://pypi.org/project/msedge-selenium-tools/

库简介:An updated EdgeDriver implementation for Selenium 3 with newly-added support for Microsoft Edge (Chromium).

库名:django-selenium-test-runner 0.1.0

库链接:https://pypi.org/project/django-selenium-test-runner/

库简介:Django Selenium test runner.

Incorporate functional testing into Django's manage.py test subcommand

using Selenium web testing tools.

库名:axe-selenium-python-dev 2.4.0

库链接:https://pypi.org/project/axe-selenium-python-dev/

库简介:Python library to integrate axe and selenium for web accessibility testing.

库名:simpleelistener 3.140.0

库链接:https://pypi.org/project/simpleelistener/

库简介:sdofpksodpfksdpf

库名:rh-axe-selenium-python 21.5.19.2

库链接:https://pypi.org/project/rh-axe-selenium-python/

库简介:Python library to integrate axe and selenium for web accessibility testing.

库名:extensiveautomation-plugin-gui 1.4.0

库链接:https://pypi.org/project/extensiveautomation-plugin-gui/

库简介:GUI plugin for extensiveautomation server

库名:collective.recipe.seleniumrc 0.6.1.1

库链接:https://pypi.org/project/collective-recipe-seleniumrc/

库简介:zc.buildout recipe for installing the Selenium RC distribution.

库名:scrapy-selenium-python-pi 0.2.0

库链接:https://pypi.org/project/scrapy-selenium-python-pi/

库简介:Scrapy with selenium

库名:niobium 0.3.1

库链接:https://pypi.org/project/niobium/

库简介:Niobium extends the Python Selenium client with nice features

库名:collective.ploneseltest 1.0b2

库链接:https://pypi.org/project/collective-ploneseltest/

库简介:Selenium test support for Plone

库名:pyselenese2 0.1.2

库链接:https://pypi.org/project/pyselenese2/

库简介:Python Selenese translator

库名:django-webdriver 0.1.2

库链接:https://pypi.org/project/django-webdriver/

库简介:Django app to run selenium webdriver tests.

库名:webdriver-manager 3.8.1

库链接:https://pypi.org/project/webdriver-manager/

库简介:Library provides the way to automatically manage drivers for different browsers

库名:fsbotlogin 0.0.1

库链接:https://pypi.org/project/fsbotlogin/

库简介:A simple auto-login bot using python

库名:tbselenium 0.6.2

库链接:https://pypi.org/project/tbselenium/

库简介:Tor Browser automation with Selenium

库名:robotframework-seleniumlibrary 6.0.0

库链接:https://pypi.org/project/robotframework-seleniumlibrary/

库简介:Web testing library for Robot Framework

库名:selenium-fb-group-automator 0.1.1

库链接:https://pypi.org/project/selenium-fb-group-automator/

库简介:Manage Facebook Groups using Selenium

库名:PyWebScraper 0.1.5

库链接:https://pypi.org/project/pywebscraper/

库简介:A web scraper that combines both Beautiful Soup (bs4) and Selenium.

库名:HLISA 1.4.0

库链接:https://pypi.org/project/hlisa/

库简介:A reimplementation of the Selenium API, emulating human interactions

库名:extensiveautomation-agent-plugin-selenium 1.0.0

库链接:https://pypi.org/project/extensiveautomation-agent-plugin-selenium/

库简介:Selenium plugin for extensiveautomation agent

库名:rcom.recipe.seleniumenv 1.0dev-r4475

库链接:https://pypi.org/project/rcom-recipe-seleniumenv/

库简介:A recipe for setting a ready-to-use selenium RC environment

库名:fakerlocationer 1.0

库链接:https://pypi.org/project/fakerlocationer/

库简介:A simple class that can be used to fake Selenium Browser Geolocation

库名:miqsel 2.3

库链接:https://pypi.org/project/miqsel/

库简介:Miq Selenium Server for local testing

库名:ruamel.browser.server.selenium 0.1.2

库链接:https://pypi.org/project/ruamel-browser-server-selenium/

库简介:selenium firefox browser plugin

库名:robotframework-selenium2library-divfor 1.8.1

库链接:https://pypi.org/project/robotframework-selenium2library-divfor/

库简介:Web testing library for Robot Framework with locator wrapper feature

库名:youtube-uploader-selenium-aug 1.1

库链接:https://pypi.org/project/youtube-uploader-selenium-aug/

库简介:youtube-uploader-selenium dependency works August 2021

库名:odoo9-addon-web_selenium 9.0.1.0.2

库链接:https://pypi.org/project/odoo9-addon-web-selenium/

库简介:Record your testcases with Selenium

库名:requestium 0.1.13

库链接:https://pypi.org/project/requestium/

库简介:Adds a Selenium webdriver and parsel's parser to a request's Session object, and makes switching between them seamless. Handles cookie, proxy and header transfer.

库名:webguitest-scubbx 0.1

库链接:https://pypi.org/project/webguitest-scubbx/

库简介:A web user interface test module combining Selenium and pyautogui into one interface

库名:zeit.nightwatch 1.5.1

库链接:https://pypi.org/project/zeit-nightwatch/

库简介:pytest helpers for http smoke tests

库名:easelenium 0.6.2

库链接:https://pypi.org/project/easelenium/

库简介:easelenium - Selenium-based Test Automation Framework

库名:gambit-bromine 0.4

库链接:https://pypi.org/project/gambit-bromine/

库简介:Pythonic web testing

库名:qalaboratory 0.2.0

库链接:https://pypi.org/project/qalaboratory/

库简介:QALAB, proyect manager for QA open source proyects, managing selenium, appium, selendroid drivers

库名:behave-webdriver 0.3.1

库链接:https://pypi.org/project/behave-webdriver/

库简介:Selenium webdriver step library for behave BDD testing

库名:wwshc 0.0.11

库链接:https://pypi.org/project/wwshc/

库简介:简介无内容

库名:pywad 0.1.4

库链接:https://pypi.org/project/pywad/

库简介:The Python Web Auto Drive framework using selenium.webdriver.

库名:selenate 0.4.0

库链接:https://pypi.org/project/selenate/

库简介:Web Automation made easy

库名:webdriverplus 0.1.5

库链接:https://pypi.org/project/webdriverplus/

库简介:WebDriver Plus.

库名:pytanium 0.1

库链接:https://pypi.org/project/pytanium/

库简介:Selenium wrapper to add additional features

库名:pyleniumio 1.16.1

库链接:https://pypi.org/project/pyleniumio/

库简介:The best of Selenium and Cypress in a single Python Package

库名:pwdriver 0.22.0

库链接:https://pypi.org/project/pwdriver/

库简介:It will download a WebDriver, and then set basic configuration automatically.

库名:whats-app-bot 0.0.3

库链接:https://pypi.org/project/whats-app-bot/

库简介:For automating whatsapp chats

库名:Promium 3.3.3

库链接:https://pypi.org/project/promium/

库简介:Selenium wrapper for testing Web UI

库名:stripcodecheats 1.4

库链接:https://pypi.org/project/stripcodecheats/

库简介:Cheats for the game StripCode by benawad utilizing the selenium library.

库名:django-selenosis 2.0.0

库链接:https://pypi.org/project/django-selenosis/

库简介:Helpers for writing selenium tests for Django

库名:siderunner 0.2.5

库链接:https://pypi.org/project/siderunner/

库简介:Runs Selenium IDE tests without Selenium IDE.

库名:djangosanetesting 0.5.11

库链接:https://pypi.org/project/djangosanetesting/

库简介:Integrate Django with nose, Selenium, Twill and more.

库名:pixiv-bulk-downloader 2.7.1

库链接:https://pypi.org/project/pixiv-bulk-downloader/

库简介:Pixiv Bulk Downloader for bookmarks and works of followed authors

库名:webrobot 1.5.0

库链接:https://pypi.org/project/webrobot/

库简介:This is a Selenium based Web automation wheel that is more user-friendly than Selenium!

库名:the-octopus-test 2.0.10

库链接:https://pypi.org/project/the-octopus-test/

库简介:The-Octopus-Test is a Python project for E2E testing, based on Selenium, Appium and the Test Automation Hybrid Framework concepts.

库名:arges 0.8.9

库链接:https://pypi.org/project/arges/

库简介:Simple and multi platform automated testing and tasks execution tool, that can be used straight from the command line.

库名:waunit 0.0.4a1

库链接:https://pypi.org/project/waunit/

库简介:Web analytics unit testing framework

库名:sauceclient 1.0.0

库链接:https://pypi.org/project/sauceclient/

库简介:Python client library for Sauce Labs API.

库名:easyium 2.0.0

库链接:https://pypi.org/project/easyium/

库简介:easy use of selenium and appium

库名:ui-automation-tools-mbt 1.3.1

库链接:https://pypi.org/project/ui-automation-tools-mbt/

库简介:Tools for UI automation using model based testing

库名:scrape-fast 0.101

库链接:https://pypi.org/project/scrape-fast/

库简介:Common web scraping functions

库名:pytractor 0.2.1

库链接:https://pypi.org/project/pytractor/

库简介:Selenium testing for Angular.js apps

库名:pytractor-new 0.1.5

库链接:https://pypi.org/project/pytractor-new/

库简介:Selenium testing for Angular.js apps

库名:etiqa-pytractor 0.2.1.1

库链接:https://pypi.org/project/etiqa-pytractor/

库简介:Pytractor fork (obsolete and no longer maintained) by Etiqa s.r.l.

库名:pytractor-back 0.2.2

库链接:https://pypi.org/project/pytractor-back/

库简介:Selenium testing for Angular.js apps. Adopted for Python 3.7.

库名:twitterUsernameviaUserID 0.0.4

库链接:https://pypi.org/project/twitterusernameviauserid/

库简介:An advanced Twitter scraping tool. No authentication. No API. No limits to fetching usernames from the user id's.

库名:robotframework_germaniumlibrary 1.0.1

库链接:https://pypi.org/project/robotframework-germaniumlibrary/

库简介:GermaniumLibrary

库名:bromine 0.4.0

库链接:https://pypi.org/project/bromine/

库简介:A high-level web testing library based on Selenium and PageObject Pattern

库名:cromdriver 0.4.1

库链接:https://pypi.org/project/cromdriver/

库简介:Auto downloader for chromedrivers

库名:webdriver-selector 1.1.1

库链接:https://pypi.org/project/webdriver-selector/

库简介:webdriver_selector automatically configures a selenium webdriver on all available system browsers

库名:elemental 0.4.0

库链接:https://pypi.org/project/elemental/

库简介:Faster, easier and more robust Selenium automation.

库名:seletools 1.2.1

库链接:https://pypi.org/project/seletools/

库简介:Helpful tools for Selenium on Python

库名:hitchchrome 85.0

库链接:https://pypi.org/project/hitchchrome/

库简介:Build chrome and chromedriver for use with selenium

库名:lettuce_webdriver 0.3.5

库链接:https://pypi.org/project/lettuce-webdriver/

库简介:Selenium webdriver extension for lettuce

库名:theark 0.0.9

库链接:https://pypi.org/project/theark/

库简介:meltQA Tools Common Library.

库名:genie.webdriver 22.6

库链接:https://pypi.org/project/genie-webdriver/

库简介:A collection of tools and base classes intended to simplify and standardize how automation engineers develop Selenium based libraries

库名:django-polymorphic-foreignkey 2.0.0

库链接:https://pypi.org/project/django-polymorphic-foreignkey/

库简介:A polymorphic ForeignKey field that acts like a generic ForeignKey

库名:infrae.testbrowser 2.0.2

库链接:https://pypi.org/project/infrae-testbrowser/

库简介:Sane functionnal test browser for WSGI applications

库名:autoselenium 0.1.10

库链接:https://pypi.org/project/autoselenium/

库简介:Ready-to-run Selenium.

库名:fbgs 1.0.0

库链接:https://pypi.org/project/fbgs/

库简介:Python and selenium based (mobile) Facebook groups scraper, independent of obfuscated css selectors.

库名:koverj 0.1.105

库链接:https://pypi.org/project/koverj/

库简介:Test coverage for selenium based tests

库名:pshmodule 0.1.12

库链接:https://pypi.org/project/pshmodule/

库简介:Modules related to preprocessing, crawling, collection, database, data load & save

库名:hydratk-ext-datagen 0.1.3

库链接:https://pypi.org/project/hydratk-ext-datagen/

库简介:Utilities for data generation

库名:SMSmartPy 1.0

库链接:https://pypi.org/project/smsmartpy/

库简介:A Python package.

库名:manen 0.2.0

库链接:https://pypi.org/project/manen/

库简介:A package around Selenium with an implementation of the page object model, an enhanced WebDriver and a CLI.

库名:scrapy-ajax-utils 0.1272

库链接:https://pypi.org/project/scrapy-ajax-utils/

库简介:ajax utils for scrapy.

库名:django-liveserver 0.1a-2

库链接:https://pypi.org/project/django-liveserver/

库简介:A backport of the Django 1.4 LiveServerTestCase for 1.3

库名:aws-close-account 0.2.0

库链接:https://pypi.org/project/aws-close-account/

库简介:Programmatically close an AWS account using Selenium

库名:jsConsole 1.0.2

库链接:https://pypi.org/project/jsconsole/

库简介:A JS Console written for and in python

库名:morningstar-stmt 0.0.2

库链接:https://pypi.org/project/morningstar-stmt/

库简介:Morningstar Financials Statement Downloader

库名:pyseleniumfox 0.1

库链接:https://pypi.org/project/pyseleniumfox/

库简介:Create a firefox profile for use in selenium tests that includes a preconfigured selenium IDE, so that you can debug and write tests on the fly.

库名:explicit 0.1.3

库链接:https://pypi.org/project/explicit/

库简介:Easy explicit wait helpers for Selenium

库名:poium 1.1.6

库链接:https://pypi.org/project/poium/

库简介:Selenium/appium-based Page Objects test library.

库名:pythonbs 0.0.2

库链接:https://pypi.org/project/pythonbs/

库简介:A python client for running tests in browserstack

库名:autoparaselenium 0.1.14

库链接:https://pypi.org/project/autoparaselenium/

库简介:简介无内容

库名:py-bs 0.0.1

库链接:https://pypi.org/project/py-bs/

库简介:A python client for running tests in browserstack

库名:CzechTVSrt 0.1.0

库链接:https://pypi.org/project/czechtvsrt/

库简介:Scraper for Czech TV subtitles.

库名:marionette-transport 1.2.0

库链接:https://pypi.org/project/marionette-transport/

库简介:Transport layer for Marionette client

库名:iselenium 0.0.1

库链接:https://pypi.org/project/iselenium/

库简介:简介无内容

库名:bromo 0.2

库链接:https://pypi.org/project/bromo/

库简介:lib to help with page loading strategy

库名:pytest-axe 1.1.6

库链接:https://pypi.org/project/pytest-axe/

库简介:pytest plugin for axe-selenium-python

库名:pytest-splinter4 0.3.0

库链接:https://pypi.org/project/pytest-splinter4/

库简介:Pytest plugin for the splinter automation library

库名:gossamerui 0.9.5

库链接:https://pypi.org/project/gossamerui/

库简介:Website user interface regression testing

库名:selwsgi 0.1

库链接:https://pypi.org/project/selwsgi/

库简介:A simple library to wrap wsgi apps in an evironment suitable to be unit tested with Selenium WebDriver

库名:mobilenium 0.0.4

库链接:https://pypi.org/project/mobilenium/

库简介:Mobilenium uses BrowserMob Proxy to give superpowers to Selenium.

库名:yandex-images-download 1.0.4

库链接:https://pypi.org/project/yandex-images-download/

库简介:Python Script to download images from Yandex.Images

库名:selenious 0.2.1

库链接:https://pypi.org/project/selenious/

库简介:Enhancement to Selenium WebDriver for timeouts and more.

库名:altair-saver 0.5.0

库链接:https://pypi.org/project/altair-saver/

库简介:Altair extension for saving charts to various formats.

库名:scrapealong 0.1.7

库链接:https://pypi.org/project/scrapealong/

库简介:Library for scraping data from web sites with async flavour

库名:Products.Zelenium 1.0.3

库链接:https://pypi.org/project/products-zelenium/

库简介:Run Selenium test suites from within Zope2

库名:yawn 0.1.1

库链接:https://pypi.org/project/yawn/

库简介:Yawn is Awesome WickedNess for tests (it is a helper for selenium testing)

库名:pythonsl 0.0.1

库链接:https://pypi.org/project/pythonsl/

库简介:A python client for running tests in sauce labs

库名:adp-webscrape 0.1.0

库链接:https://pypi.org/project/adp-webscrape/

库简介:Log into and download reports from ADP Resource and ezLaborManager.

库名:ossd 1.0.8

库链接:https://pypi.org/project/ossd/

库简介:OpenSubtitles Subtitles Downloader

库名:browler 0.1.3

库链接:https://pypi.org/project/browler/

库简介:Selenium Based Web Crawler

库名:puppet-master 0.1.0

库链接:https://pypi.org/project/puppet-master/

库简介:简介无内容

库名:uitestcore 8.0.0

库链接:https://pypi.org/project/uitestcore/

库简介:Package providing common functionality for UI automation test packs

库名:force-backup-automator 1.4

库链接:https://pypi.org/project/force-backup-automator/

库简介:Automates download of the Export Data Weekly Service

库名:cleverutils 0.22.3

库链接:https://pypi.org/project/cleverutils/

库简介:Some handy Python utilities and code snippets used repeatedly by the author and considered beginner to intermediate level of difficulty. Published just in case they're of use to other Pythonistas somehwere, some time.

库名:SEO-Analise-UFPI 0.0.3

库链接:https://pypi.org/project/seo-analise-ufpi/

库简介:Pacote para analisar o SEO de uma URL

库名:pyhtml2pdf 0.0.5

库链接:https://pypi.org/project/pyhtml2pdf/

库简介:Simple python wrapper to convert HTML to PDF with headless Chrome via selenium.

库名:SEO-Analise-UPFI 0.0.1

库链接:https://pypi.org/project/seo-analise-upfi/

库简介:Pacote para analisar o SEO de uma URL

库名:twimage 0.1.2

库链接:https://pypi.org/project/twimage/

库简介:简介无内容

库名:ta-captcha-solver 0.2.0

库链接:https://pypi.org/project/ta-captcha-solver/

库简介:Thoughtful Automation BitWarden CLI installation package

库名:open-webdriver 1.3.0

库链接:https://pypi.org/project/open-webdriver/

库简介:Easiest zero-config selenium webdriver for Python

库名:pyshadow 0.0.4

库链接:https://pypi.org/project/pyshadow/

库简介:Selenium plugin to manage shadow DOM elements on web page.

库名:scr 0.10.1

库链接:https://pypi.org/project/scr/

库简介:Command-line Utility for Web Scraping

库名:odooselenium 1.0.3

库链接:https://pypi.org/project/odooselenium/

库简介:Tools to interact with Odoo using Selenium

库名:jure 0.3.1

库链接:https://pypi.org/project/jure/

库简介:An utility that extends Jupytext. Allows to auto-refresh browser when source file is changed.

库名:B3Bovespa 0.1.1

库链接:https://pypi.org/project/b3bovespa/

库简介:Package for web-scrapping companies from B3Bovespa

库名:whapy 0.2.0

库链接:https://pypi.org/project/whapy/

库简介:A python API for whatsapp web

库名:HamperCLITest 0.1.0

库链接:https://pypi.org/project/hamperclitest/

库简介:A CLI for iOS app provisioning.

库名:Layback 0.0.7

库链接:https://pypi.org/project/layback/

库简介:Creates an animated GIF of a given URLs history.

库名:yorumsepeti 0.0.4

库链接:https://pypi.org/project/yorumsepeti/

库简介:A package for fetching restaurant reviews from Yemeksepeti.com.

库名:skreep 0.1.5

库链接:https://pypi.org/project/skreep/

库简介:Data scraper

库名:FuncBrows 0.1.7

库链接:https://pypi.org/project/funcbrows/

库简介:Web functional testing abstraction layer

库名:pytest-track 0.1.3

库链接:https://pypi.org/project/pytest-track/

库简介:简介无内容

库名:proximus 0.0.2

库链接:https://pypi.org/project/proximus/

库简介:A web automation of Bbox3 web interface.

库名:simpleselenium 0.1.0

库链接:https://pypi.org/project/simpleselenium/

库简介:Python package to easily work with Selenium.

库名:pyshotty 0.0.3.5

库链接:https://pypi.org/project/pyshotty/

库简介:Python website screen grabber

库名:box-oauth 0.3.1

库链接:https://pypi.org/project/box-oauth/

库简介:Box headless OAuth2 client

库名:harvest-for-mightyhive 0.0.4

库链接:https://pypi.org/project/harvest-for-mightyhive/

库简介:An automation tool to speed up the process of updating entries in harvest

库名:umdriver 0.0.9

库链接:https://pypi.org/project/umdriver/

库简介:An extension of the selenium webdriver bindings for python with U-M weblogin baked in.

库名:BakalariAPI 4.0.0

库链接:https://pypi.org/project/bakalariapi/

库简介:Rádoby API pro Bakaláře

库名:django-xss-fuzzer 0.3.1

库链接:https://pypi.org/project/django-xss-fuzzer/

库简介:django-xss-fuzzer: An XSS vulnerability fuzz tester for Django views.

库名:nopo 1.2.0

库链接:https://pypi.org/project/nopo/

库简介:not only page object: A package for Page Object Model (POM), a tool based on Selenium that helps you build POM in web test.

库名:centaurminer 0.1.0

库链接:https://pypi.org/project/centaurminer/

库简介:A selenium wrapper to help mining data from scientific literature.

库名:byerecaptcha 1.2.2

库链接:https://pypi.org/project/byerecaptcha/

库简介:Google Recaptcha solver with selenium.

库名:pytest-firefox 0.1.1

库链接:https://pypi.org/project/pytest-firefox/

库简介:pytest plugin to manipulate firefox

库名:django-admin-testutils 1.0.8

库链接:https://pypi.org/project/django-admin-testutils/

库简介:Helpers for writing selenium tests for the django admin

库名:fastselenium 0.0.3

库链接:https://pypi.org/project/fastselenium/

库简介:make it easy to use selenium

库名:e2e.pom 0.1.1

库链接:https://pypi.org/project/e2e-pom/

库简介:Human-friendly rich class-based modeling for the Page Object Model pattern

库名:seleniumqt 1.1.13.1

库链接:https://pypi.org/project/seleniumqt/

库简介:test@qtp

库名:SeleniumTest 1.0.1

库链接:https://pypi.org/project/seleniumtest/

库简介:write a yaml to test selenium

库名:robotframework-seleniumhelperlibrary 0.1.8

库链接:https://pypi.org/project/robotframework-seleniumhelperlibrary/

库简介:Helper keywords for robotframework-selenium

库名:SeleniumRunner 1.0.3

库链接:https://pypi.org/project/seleniumrunner/

库简介:write a yaml to test selenium

库名:telemeter 3.0.7

库链接:https://pypi.org/project/telemeter/

库简介:Retrieves information about Telenet internet usage

库名:http-requests-viewer 0.1

库链接:https://pypi.org/project/http-requests-viewer/

库简介:A Django app to view http(s) from a driver session.

库名:rtsf-web 1.3.5

库链接:https://pypi.org/project/rtsf-web/

库简介:only for web ui test, base on rtsf

库名:hed-utils 5.0.0

库链接:https://pypi.org/project/hed-utils/

库简介:Personal utils collection for (mostly) automation projects.

库名:zope.testrecorder 0.4

库链接:https://pypi.org/project/zope-testrecorder/

库简介:Test recorder for functional tests

库名:easy_test 0.0.1

库链接:https://pypi.org/project/easy-test/

库简介:A python mini framework for tests that use Selenium

库名:Autogovernance 0.8.0

库链接:https://pypi.org/project/autogovernance/

库简介:Package to update information in Governance

库名:pexels 0.0.11

库链接:https://pypi.org/project/pexels/

库简介:pexels

库名:cdcwonderpy 0.0.1

库链接:https://pypi.org/project/cdcwonderpy/

库简介:A Python package to automatically fill out the CDC WONDER MCD form

库名:asyncselenium 0.0.2

库链接:https://pypi.org/project/asyncselenium/

库简介:A async selenium package to improve performance

库名:pytest-failed-screenshot 1.0.2

库链接:https://pypi.org/project/pytest-failed-screenshot/

库简介:Test case fails,take a screenshot,save it,attach it to the allure

库名:DrissionPage 2.7.2

库链接:https://pypi.org/project/drissionpage/

库简介:A module that integrates selenium and requests session, encapsulates common page operations.

库名:scribd-dl 0.4.5

库链接:https://pypi.org/project/scribd-dl/

库简介:Command-line program to download Scribd documents in pdf format

库名:youcos 0.0.6

库链接:https://pypi.org/project/youcos/

库简介:youcos is a simple Python package for collecting YouTube videos and comments

库名:emailtoolspython 0.4.5

库链接:https://pypi.org/project/emailtoolspython/

库简介:A series of methods to help you work with validation and extraction of e-mails

库名:seleniumer 1.0.3

库链接:https://pypi.org/project/seleniumer/

库简介:seleniumer library.

库名:seleniumx 0.1.1

库链接:https://pypi.org/project/seleniumx/

库简介:Selenium extension

库名:robotframework-seleniumproxy 0.0.4

库链接:https://pypi.org/project/robotframework-seleniumproxy/

库简介:Capture requests/responses generated with Seleniums Webdriver

库名:haufe.testrunner 0.6.13

库链接:https://pypi.org/project/haufe-testrunner/

库简介:A wrapper for the Zope testrunner providing email support, HTML generation and RSS support

库名:seleniumHelper 0.0.4

库链接:https://pypi.org/project/seleniumhelper/

库简介:simple selenium functions

库名:envuitest 0.0.15

库链接:https://pypi.org/project/envuitest/

库简介:Web Auto Test Framework with Selenium

库名:hydratk-lib-network 0.2.2

库链接:https://pypi.org/project/hydratk-lib-network/

库简介:Clients/API for many network protocols and technologies

库名:raccy-utils 0.3.0

库链接:https://pypi.org/project/raccy-utils/

库简介:A collection of utility functions, and classes.

库名:title-checker 0.9

库链接:https://pypi.org/project/title-checker/

库简介:A Python script for checking the titles of each youtube links in a text file

库名:robotframework-seleniumwire 0.1.1

库链接:https://pypi.org/project/robotframework-seleniumwire/

库简介:Robot Framework keyword library wrapper around selenium-wire library

库名:seleniumpm 2.13.0

库链接:https://pypi.org/project/seleniumpm/

库简介:Selenium Pagemodel implementation for Python.

库名:seebotesttrix 0.0.2

库链接:https://pypi.org/project/seebotesttrix/

库简介:Qualitest package automation infrastructure kit tools for GUI and API tests

库名:base-qualitest-package 1.0.2

库链接:https://pypi.org/project/base-qualitest-package/

库简介:Qualitest package automation infrastructure kit tools for GUI and API tests

库名:reCaptchaBypasser 1.3

库链接:https://pypi.org/project/recaptchabypasser/

库简介:This Package For Bypassing Any reCaptcha For Selenium Python .

库名:thonny-struktog-test 0.0.2

库链接:https://pypi.org/project/thonny-struktog-test/

库简介:Struktog webdriver client plugin for thonny

库名:easyselenium 1.4

库链接:https://pypi.org/project/easyselenium/

库简介:This is a selenium easy library which has easy syntax build on selenium.all the things are running in background we are calling only functions..This is too easy for begineers

库名:pscore 0.4.8

库链接:https://pypi.org/project/pscore/

库简介:Python-Selenium framework module

库名:dsgrid 0.1.6

库链接:https://pypi.org/project/dsgrid/

库简介:Build and Manage a Selenium Grid using Docker.

库名:askfmcrawler 0.1.5

库链接:https://pypi.org/project/askfmcrawler/

库简介:Python askfm crawler.

库名:rubypass 0.2.5.1

库链接:https://pypi.org/project/rubypass/

库简介:A package made to extract video urls from 2 russian websites

库名:seleniuth 0.1

库链接:https://pypi.org/project/seleniuth/

库简介:Selenium Web Login

库名:icraw 0.0.2

库链接:https://pypi.org/project/icraw/

库简介:run_continuously with schedule

库名:easy-chrome 1.0.4

库链接:https://pypi.org/project/easy-chrome/

库简介:Easy selenium chrome for window

库名:pkgTests 0.0.3

库链接:https://pypi.org/project/pkgtests/

库简介:My first Python Hello world library

库名:mp3norm 0.6

库链接:https://pypi.org/project/mp3norm/

库简介:Extract tags from filename and/or fetch album name/cover from Google Search

库名:bandcamp_get 0.1.4

库链接:https://pypi.org/project/bandcamp-get/

库简介:automated music downloading via selenium

库名:scode 0.4.9

库链接:https://pypi.org/project/scode/

库简介:The Private Package of Showm Company.

库名:trading212api 0.1.1

库链接:https://pypi.org/project/trading212api/

库简介:An unofficial API library for Trading212 based on Selenium

库名:fsubot 0.4.1

库链接:https://pypi.org/project/fsubot/

库简介:Base bot for developing FSU bots.

库名:boas 1.7

库链接:https://pypi.org/project/boas/

库简介:Bank of America personal financial web scraper

库名:atframework 0.1.8.73

库链接:https://pypi.org/project/atframework/

库简介:this is one automation framework base on selenium

库名:webdriver-components-py2 0.0.6

库链接:https://pypi.org/project/webdriver-components-py2/

库简介:Webdriver_components

库名:selenose 1.3

库链接:https://pypi.org/project/selenose/

库简介:Selenium plugin for nose and django-jenkins

库名:compliance-assist 0.1.dev2

库链接:https://pypi.org/project/compliance-assist/

库简介:Webdriver for Compliance Assist scripting, built on Selenium

库名:webdriver-components 1.0.0

库链接:https://pypi.org/project/webdriver-components/

库简介:Webdriver_components

库名:pypatent 1.2.0

库链接:https://pypi.org/project/pypatent/

库简介:Search and retrieve USPTO patent data

库名:LeetTool 0.4

库链接:https://pypi.org/project/leettool/

库简介:Selenium for Researcher

库名:SelScrape 0.1

库链接:https://pypi.org/project/selscrape/

库简介:A semplifcation of Selenium

库名:anna-lib 0.0.13

库链接:https://pypi.org/project/anna-lib/

库简介:selenium interface

库名:brome 1.2.1

库链接:https://pypi.org/project/brome/

库简介:Selenium Framework

库名:je-web-runner-dev 0.0.46

库链接:https://pypi.org/project/je-web-runner-dev/

库简介:selenium get_webdriver_wrapper

库名:webdriver-bot 0.33

库链接:https://pypi.org/project/webdriver-bot/

库简介:wrapper for selenium

库名:iridium 0.1.61

库链接:https://pypi.org/project/iridium/

库简介:Selenium wrapper

库名:je-web-runner 0.0.24

库链接:https://pypi.org/project/je-web-runner/

库简介:selenium get_webdriver_wrapper

库名:imgscrape 0.1.1

库链接:https://pypi.org/project/imgscrape/

库简介:A piece of cake way to scrape product images from Amazon or flipkart

库名:testlinkconsole 0.3

库链接:https://pypi.org/project/testlinkconsole/

库简介:Testlink Console

库名:devtools-ai 0.0.9

库链接:https://pypi.org/project/devtools-ai/

库简介:A package to bring ai to selenium scripts.

库名:unsplashbot 0.0.1

库链接:https://pypi.org/project/unsplashbot/

库简介:unsplash bot

库名:testarsenal 0.3.0

库链接:https://pypi.org/project/testarsenal/

库简介:Testing tools

库名:selenide 0.0.15

库链接:https://pypi.org/project/selenide/

库简介:Automation powered by Selenium WebDriver.

库名:webdriver-auto-update 0.0.3.1

库链接:https://pypi.org/project/webdriver-auto-update/

库简介:Checks local chrome driver version and automatically download the latest available version online

库名:FlynnID 0.3

库链接:https://pypi.org/project/flynnid/

库简介:Registers Selenium nodes to a Selenium Grid hub.

库名:eyes-common 5.0.0

库链接:https://pypi.org/project/eyes-common/

库简介:Applitools Python SDK common package stub. Can be uninstalled safely.

库名:pageobject 0.0.52

库链接:https://pypi.org/project/pageobject/

库简介:Page Object implementation

库名:eyes-core 5.0.0

库链接:https://pypi.org/project/eyes-core/

库简介:Applitools Python SDK core package stub. Can be uninstalled safely.

库名:robotframework-webscreens 0.1.1

库链接:https://pypi.org/project/robotframework-webscreens/

库简介:Library to simulate different web screen resolutions using selenium library

库名:zklibweb 0.3.2

库链接:https://pypi.org/project/zklibweb/

库简介:Library for read data from zklib maquines, using selenium and requests

库名:pexelsbot 0.0.1

库链接:https://pypi.org/project/pexelsbot/

库简介:pexels bot

库名:uc-browser 0.2.6

库链接:https://pypi.org/project/uc-browser/

库简介:简介无内容

库名:htmllogger 1.2

库链接:https://pypi.org/project/htmllogger/

库简介:Python library provides interactive test report for selenium

库名:BTKSorgu 0.1.5

库链接:https://pypi.org/project/btksorgu/

库简介:Hedef websitesinin BTK Tarafından Erişim Engeli Sorgusu

库名:amazonreviewscrap 0.1

库链接:https://pypi.org/project/amazonreviewscrap/

库简介:Amazon review scrapper

库名:robotframework-axelibrary 0.1.5

库链接:https://pypi.org/project/robotframework-axelibrary/

库简介:Robot Framework keyword library wrapper around axe-selenium-python library

库名:PythonImageSearch 1.0.4

库链接:https://pypi.org/project/pythonimagesearch/

库简介:Simple image search

库名:docrawl 0.2.9

库链接:https://pypi.org/project/docrawl/

库简介:Do automated crawling of pages using scrapy

库名:Web-Scraping-Utility 1.0.0

库链接:https://pypi.org/project/web-scraping-utility/

库简介:Web Scraping Utility

库名:walscript 0.2.4

库链接:https://pypi.org/project/walscript/

库简介:web automation layer

库名:tube-toolkit 0.0.8

库链接:https://pypi.org/project/tube-toolkit/

库简介:tube is a toolkit for creating RPAs and other softwares that need selenium support.

库名:leanium 0.1a2

库链接:https://pypi.org/project/leanium/

库简介:A lean wrapper around Selenium to handle common try, except, else scenarios

库名:pypise 0.0.1

库链接:https://pypi.org/project/pypise/

库简介:WebUI automation testing framework based on Selenium and unittest.

库名:bet365 0.0.3

库链接:https://pypi.org/project/bet365/

库简介:ninja25538@tutanota.de

库名:lucd 0.1.4

库链接:https://pypi.org/project/lucd/

库简介:Create Local Undetectable Chrome Driver

库名:fritzremote 0.0.1

库链接:https://pypi.org/project/fritzremote/

库简介:Let's you remote your Fritz!Box via selenium

库名:wsgi-liveserver 0.3.1

库链接:https://pypi.org/project/wsgi-liveserver/

库简介:start/stop WSGI applications in the background for functional testing

库名:pywhapbot 1.0.2

库链接:https://pypi.org/project/pywhapbot/

库简介:WhatsApp Web API Wrapper for Chrome, Firefox, Opera, Brave and Edge.

库名:violent-webdriver 1.0.30

库链接:https://pypi.org/project/violent-webdriver/

库简介:violent webdriver based on selenium

库名:chromeless 0.9.1

库链接:https://pypi.org/project/chromeless/

库简介:Serverless selenium which dynamically execute any given code.

库名:donerkebab 0.0.2

库链接:https://pypi.org/project/donerkebab/

库简介:Super easy to use selenium wrapper

库名:bandcamp-name-your-price-dl 0.0.11

库链接:https://pypi.org/project/bandcamp-name-your-price-dl/

库简介:Automate process of downloading name your price albums from bandcamp.

库名:fxapom 1.10.2

库链接:https://pypi.org/project/fxapom/

库简介:Mozilla Firefox Accounts Page Object Model

库名:worker-killer 0.1.5

库链接:https://pypi.org/project/worker-killer/

库简介:Worker killer - library for managing zombie processes

库名:selsunpool 0.0.5

库链接:https://pypi.org/project/selsunpool/

库简介:A local selenium pool executor

库名:testingbotclient 0.0.8

库链接:https://pypi.org/project/testingbotclient/

库简介:Python client library for TestingBot API.

库名:lazyTest 2.1.0

库链接:https://pypi.org/project/lazytest/

库简介:自动化测试框架

库名:pom-elements 0.1.0

库链接:https://pypi.org/project/pom-elements/

库简介:The Python Page Object Model that extends to Page Elements

库名:pynut-API 2.1.4

库链接:https://pypi.org/project/pynut-api/

库简介:Function easing life

库名:questions-three-aws 3.12.0.0

库链接:https://pypi.org/project/questions-three-aws/

库简介:Amazon Web Services integrations for Questions Three

库名:autojoiner 0.2.2

库链接:https://pypi.org/project/autojoiner/

库简介:简介无内容

库名:getmovieinfo 0.1.4

库链接:https://pypi.org/project/getmovieinfo/

库简介:Package to search specific video or keyword on a set of av websites

库名:seleniumdirector 0.10.0

库链接:https://pypi.org/project/seleniumdirector/

库简介:Interact using selenium in a readable way with unreadable labels.

库名:psscraper 2.0.0

库链接:https://pypi.org/project/psscraper/

库简介:A web scrapper library for powerschool websites.

库名:selen-kaa 0.2.2

库链接:https://pypi.org/project/selen-kaa/

库简介:A lightweight wrapper around Selenium python repo.

库名:SeleniumCommonSetting 1.2.1

库链接:https://pypi.org/project/seleniumcommonsetting/

库简介:常用的selenium-webdriver设置

库名:sst 0.2.4

库链接:https://pypi.org/project/sst/

库简介:SST - Web Test Framework

库名:pytest-webdriver 1.7.0

库链接:https://pypi.org/project/pytest-webdriver/

库简介:Selenium webdriver fixture for py.test

库名:webdriver_controller 0.0.4

库链接:https://pypi.org/project/webdriver-controller/

库简介:a tool manages local Selenium Webdriver installation

库名:curse-app-api 1.0.1

库链接:https://pypi.org/project/curse-app-api/

库简介:Cuseforge App API

库名:thmbooom 0.114

库链接:https://pypi.org/project/thmbooom/

库简介:Module to auto download lecture slides https://moodle.thm.de

库名:boxfish 0.1.1

库链接:https://pypi.org/project/boxfish/

库简介:A lightweight tool for table extraction from HTML pages.

库名:dyatel-wrapper 1.0.5

库链接:https://pypi.org/project/dyatel-wrapper/

库简介:Wrapper of Selenium, Appium and Playwright with single API

库名:ChromePy 0.0.5

库链接:https://pypi.org/project/chromepy/

库简介:Python Selenium Remote for ChromeDriver

库名:easy-automation-test 0.0.4.9

库链接:https://pypi.org/project/easy-automation-test/

库简介:Easy to create a web, mobile or api automation test project

库名:aamras 0.0.3

库链接:https://pypi.org/project/aamras/

库简介:Library for headless browser manipulation

库名:GoogleScraper 0.2.4

库链接:https://pypi.org/project/googlescraper/

库简介:A module to scrape and extract links, titles and descriptions from various search engines. Supports google,bing,yandex and many more.

库名:pyngdom 0.1.2

库链接:https://pypi.org/project/pyngdom/

库简介:A simple pingdom API interface for read RUM information

库名:ghuc 0.1

库链接:https://pypi.org/project/ghuc/

库简介:Upload images/documents to GitHub as issue attachments

库名:ruamel.browser.server 0.4.3

库链接:https://pypi.org/project/ruamel-browser-server/

库简介:server providing decoupled browser creation/driving via zmq

库名:whatsapp-web 0.0.1

库链接:https://pypi.org/project/whatsapp-web/

库简介:A Python library to automate easily whatsapp web

库名:pytest-splinter 3.3.1

库链接:https://pypi.org/project/pytest-splinter/

库简介:Splinter plugin for pytest testing framework

库名:egybest 2.2

库链接:https://pypi.org/project/egybest/

库简介:A Selenium-less Python EgyBest Library

库名:webreg 0.2

库链接:https://pypi.org/project/webreg/

库简介:Python API for UCI WebReg

库名:pyhtmlreport 1.1

库链接:https://pypi.org/project/pyhtmlreport/

库简介:Implement html reporting in Test Automation

库名:trophyfetcher 0.1.0

库链接:https://pypi.org/project/trophyfetcher/

库简介:A package used to fetch public information about trophies from PSN.

库名:xvfbwrapper 0.2.9

库链接:https://pypi.org/project/xvfbwrapper/

库简介:run headless display inside X virtual framebuffer (Xvfb)

库名:pychromedriver 104.0

库链接:https://pypi.org/project/pychromedriver/

库简介:A package to sync chrome driver to lastest version

库名:pygeckodriver 0.31.0

库链接:https://pypi.org/project/pygeckodriver/

库简介:A package to sync gecko driver to lastest version

库名:phantomjs-binary 2.1.3

库链接:https://pypi.org/project/phantomjs-binary/

库简介:A pip package for installing binary files of phantomjs

库名:WhatsPy 0.0.3

库链接:https://pypi.org/project/whatspy/

库简介:Python Whatsapp API based on Selenium and ChromeDriver

库名:selexe 0.1.0

库链接:https://pypi.org/project/selexe/

库简介:A tool to directly execute selenese files created by Selenium IDE

库名:fbwisher 1.2.0

库链接:https://pypi.org/project/fbwisher/

库简介:View cricket scores,commentary and scorecard from the command line

库名:myanimelist-downloader 0.0.9

库链接:https://pypi.org/project/myanimelist-downloader/

库简介:Download manga and anime lists from MyAnimeList.

库名:daboi 0.1.3

库链接:https://pypi.org/project/daboi/

库简介:Selenium instagram automation.

库名:super-rpa 0.1.4

库链接:https://pypi.org/project/super-rpa/

库简介:二次封装 Selenium,并且后期会维护搭载各种文本、csv、xlsx、本地文件等操作。

库名:SuperRPA 0.0.9

库链接:https://pypi.org/project/superrpa/

库简介:二次封装 Selenium,并且后期会维护搭载各种文本、csv、xlsx、本地文件等操作。

库名:web-render 0.1.2

库链接:https://pypi.org/project/web-render/

库简介:Web sites render.

库名:BrowserUpMitmProxyClient 1.0.1

库链接:https://pypi.org/project/browserupmitmproxyclient/

库简介:BrowserUp MitmProxy

库名:pylenium 1.0

库链接:https://pypi.org/project/pylenium/

库简介:A wrapper around Selenium with a more pythonic interface

库名:cloudfeaster 0.9.59

库链接:https://pypi.org/project/cloudfeaster/

库简介:Cloudfeaster

库名:webdriver-kaifuku 22.6.28.0

库链接:https://pypi.org/project/webdriver-kaifuku/

库简介:Restartable webdriver instances

库名:reconium 0.6

库链接:https://pypi.org/project/reconium/

库简介:record selenium test video

库名:se-com-opts 1.0.5

库链接:https://pypi.org/project/se-com-opts/

库简介:常用的selenium-webdriver设置

库名:selenic 0.14.0

库链接:https://pypi.org/project/selenic/

库简介:Some selenium infrastructure for testing.

库名:selebutilities 0.0.3

库链接:https://pypi.org/project/selebutilities/

库简介:Lots of functionalities (methods) for selenium webdriver. Should take a look!

库名:PyWebAutomator 1.0

库链接:https://pypi.org/project/pywebautomator/

库简介:A Python Package developed using selenium for web automation

库名:chromedriver-py 104.0.5112.29

库链接:https://pypi.org/project/chromedriver-py/

库简介:chromedriver binaries for all platforms

库名:arackpy 0.1.0a1

库链接:https://pypi.org/project/arackpy/

库简介:A multithreaded webcrawler and scraper

库名:facebook-online-friend-tracker 2.0.1

库链接:https://pypi.org/project/facebook-online-friend-tracker/

库简介:This tool tracks the number of online friends a user has on Facebook at any given time.

库名:planterbox-webdriver 0.4.0

库链接:https://pypi.org/project/planterbox-webdriver/

库简介:Steps for web testing using selenium and planterbox

库名:robotframework-bjrobot 0.6.4

库链接:https://pypi.org/project/robotframework-bjrobot/

库简介:BJRobot is a web testing library for Robot Framework

that leverages the Selenium 3 (WebDriver) libraries.

库名:Testingbot 0.0.5

库链接:https://pypi.org/project/testingbot/

库简介:Python selenium package to be used with TestingBot.com's Selenium Grid

库名:webnovelbot 0.3.0

库链接:https://pypi.org/project/webnovelbot/

库简介:webnovel scraper using selenium

库名:instabotpy 0.0.1

库链接:https://pypi.org/project/instabotpy/

库简介:A small Instagram bot package that uses some basic functions. Download and have fun

库名:mescrappy 1.0.0

库链接:https://pypi.org/project/mescrappy/

库简介:python selenium youtube scrapper

库名:SocialCommons 0.0.5

库链接:https://pypi.org/project/socialcommons/

库简介:Common library for all XPy bots under socialbotspy

库名:UI-Automation-Framework 0.1.6.1

库链接:https://pypi.org/project/ui-automation-framework/

库简介:UI自动化框架,集成APPIUM、selenium

库名:instapy 0.6.16

库链接:https://pypi.org/project/instapy/

库简介:Tool for automated Instagram interactions

库名:sulfur 0.1.4

库链接:https://pypi.org/project/sulfur/

库简介:A lightweight interface to python-selenium.

库名:recaptcha-solver 1.0.4

库链接:https://pypi.org/project/recaptcha-solver/

库简介:简介无内容

库名:cheope 0.3.1

库链接:https://pypi.org/project/cheope/

库简介:CHEOPE: studying transiting exoplanets

库名:robotframework-anywherelibrary 1.1.0

库链接:https://pypi.org/project/robotframework-anywherelibrary/

库简介:Robot Framework Automation Library for cross platform(desktop,android,ios)

库名:richcontext-scholapi 1.2.0

库链接:https://pypi.org/project/richcontext-scholapi/

库简介:Rich Context API integrations for federating discovery services and metadata exchange across multiple scholarly infrastructure providers

库名:django-chromepdf 1.3.2

库链接:https://pypi.org/project/django-chromepdf/

库简介:A small Python 3 library that uses Selenium and Google Chrome to convert HTML into a PDF.

库名:xpathwebdriver 2.0.4

库链接:https://pypi.org/project/xpathwebdriver/

库简介:Simpler selenium/webdriver API through a wrapper

库名:kameleo.local-api-client 2.6.0

库链接:https://pypi.org/project/kameleo-local-api-client/

库简介:This Python package provides convenient access to the Local API REST interface of the Kameleo Client.

库名:autoscrape 1.6.14

库链接:https://pypi.org/project/autoscrape/

库简介:An automated, programming-free web scraper for interactive sites

库名:vpscrape 0.0.1

库链接:https://pypi.org/project/vpscrape/

库简介:Web scraping based on selenium. supported for several website to do instantly webscraping with less code

库名:seleniumprocessor 0.1.5

库链接:https://pypi.org/project/seleniumprocessor/

库简介:A simple library to set up Selenium processes

库名:find-episodes 0.9.2

库链接:https://pypi.org/project/find-episodes/

库简介:Easily find consecutive episodes using Selenium & chromedriver

库名:django-thummer 2.0.6

库链接:https://pypi.org/project/django-thummer/

库简介:A website screenshot and thumbnailing app for Django.

库名:reahl-browsertools 6.0.2

库链接:https://pypi.org/project/reahl-browsertools/

库简介:An alternative API for working with Selenium and WebTest.

库名:Robot-AppEyes 1.2

库链接:https://pypi.org/project/robot-appeyes/

库简介:Visual Verification testing library for Robot Framework

库名:webautomators 0.7

库链接:https://pypi.org/project/webautomators/

库简介:Application Interaction Library with Web

库名:scrapy-webdriver 0.67

库链接:https://pypi.org/project/scrapy-webdriver/

库简介:Class based on selenium webdriver.Firefox with methods for scraping.

库名:acmenewscollectors-pkg-rioatmadja2018 0.1.1619577675

库链接:https://pypi.org/project/acmenewscollectors-pkg-rioatmadja2018/

库简介:Python wheel to collect news articles, videos, and images.

库名:way2smswrapper 0.1.2

库链接:https://pypi.org/project/way2smswrapper/

库简介:A Python Messaging Module Using Way2SMS & Selenium Module.

库名:westeros 2.0.1

库链接:https://pypi.org/project/westeros/

库简介:Test automation framework based on robot framework.

库名:pomidor 0.0.2

库链接:https://pypi.org/project/pomidor/

库简介:A BDD-style Selenium-driven browser automation in Python

库名:page-objects 1.1.0

库链接:https://pypi.org/project/page-objects/

库简介:Page Objects for Python

库名:Trading212 0.1.6

库链接:https://pypi.org/project/trading212/

库简介:This package is an unofficial API for Trading212.

库名:pyselenium-framework 0.2.0

库链接:https://pypi.org/project/pyselenium-framework/

库简介:A Python Selenium Framework Which Makes Code More Easy to Maintain and Read

库名:pydesktopbrowserrecorder 0.0.6

库链接:https://pypi.org/project/pydesktopbrowserrecorder/

库简介:Module to record videos of an automation session using Selenium webdriver or the desktop.

库名:edw.seleniumtesting 1.1

库链接:https://pypi.org/project/edw-seleniumtesting/

库简介:Selenium testing metapackage

库名:SeleniumCookie 0.2

库链接:https://pypi.org/project/seleniumcookie/

库简介:COOKIE INJECTION FOR SELENIUM

库名:rf-seleniumextensionlibrary 0.3.2

库链接:https://pypi.org/project/rf-seleniumextensionlibrary/

库简介:Selenium Extension Library

库名:SeleniumCookies 0.4

库链接:https://pypi.org/project/seleniumcookies/

库简介:COOKIE INJECTION FOR SELENIUM

库名:webparser 1.0

库链接:https://pypi.org/project/webparser/

库简介:Tiny framework for parsing web.

库名:django-nose-qunit 1.6.1

库链接:https://pypi.org/project/django-nose-qunit/

库简介:Integrate QUnit JavaScript tests into a Django test suite via nose

库名:django-functest 1.4.1

库链接:https://pypi.org/project/django-functest/

库简介:Helpers for creating functional tests in Django, with a unified API for WebTest and Selenium tests.

库名:pywakit 0.0.6

库链接:https://pypi.org/project/pywakit/

库简介:Automate the sending process of message in whatsapp through selenium

库名:whalesong 0.9.0

库链接:https://pypi.org/project/whalesong/

库简介:Whalesong is a python library to manage WebApps remotely. Currently WhatsappWeb is implemented

库名:Auto-Fill-In 0.0.1

库链接:https://pypi.org/project/auto-fill-in/

库简介:Auto fill in your form using your saved information (or answer on the spot).

库名:sa11y 0.2.3

库链接:https://pypi.org/project/sa11y/

库简介:The Selenium Accessibility Project

库名:GooglePlayStoreScrape 0.0.4

库链接:https://pypi.org/project/googleplaystorescrape/

库简介:GooglePlayStoreScrape Package for Scraping Play Store Reviews and App Information

库名:get-gecko-driver 1.3.3

库链接:https://pypi.org/project/get-gecko-driver/

库简介:A tool to download and install GeckoDriver.

库名:webdriver-helper 1.0.0

库链接:https://pypi.org/project/webdriver-helper/

库简介:自动下载浏览器驱动,使selenium 4.0开箱即用

库名:gtrans 0.2

库链接:https://pypi.org/project/gtrans/

库简介:Free Google Translate API service

库名:webdriver-wharf 0.4.0

库链接:https://pypi.org/project/webdriver-wharf/

库简介:A docker-based warehouse of Selenium servers running chrome and firefox

库名:gocept.jasmine 0.7

库链接:https://pypi.org/project/gocept-jasmine/

库简介:Jasmine integration for selenium.

库名:automatic-test-tool 0.2.3

库链接:https://pypi.org/project/automatic-test-tool/

库简介:Automatic web browser tests

库名:etpy2png 0.0.10

库链接:https://pypi.org/project/etpy2png/

库简介:Converting .py Code-Files to .png with Code-Highlighting.

库名:gfiberspeedtest 1.0.1

库链接:https://pypi.org/project/gfiberspeedtest/

库简介:Run a Google Fiber speedtest via cli

库名:remecap 1.5.0

库链接:https://pypi.org/project/remecap/

库简介:A simple python library that bypasses H-Captcha automatically using yolov5

库名:icommandlib 0.5.0

库链接:https://pypi.org/project/icommandlib/

库简介:Pythonic interactive command runner

库名:robotframework-debuglibrary 2.3.0

库链接:https://pypi.org/project/robotframework-debuglibrary/

库简介:RobotFramework debug library and an interactive shell

库名:import-guard 0.1.2

库链接:https://pypi.org/project/import-guard/

库简介:Enforce that some modules can't be imported from other modules.

库名:graze 0.1.8

库链接:https://pypi.org/project/graze/

库简介:Cache (a tiny part of) the internet

库名:WebElemental 1.4.5

库链接:https://pypi.org/project/webelemental/

库简介:An elemental force for driving web pages using Selenium and Python.

库名:aceui 1.0.21

库链接:https://pypi.org/project/aceui/

库简介:基于Selenium的UI自动化测试框架

库名:SFChat 0.13.0

库链接:https://pypi.org/project/sfchat/

库简介:Secure Free Chat (SFChat) is long pulling REST chat based on Django and Mongodb.

库名:pytholenium 1.0.0

库链接:https://pypi.org/project/pytholenium/

库简介:Python-Selenium selector to improve your Automation

库名:papajohnsapi-mehtaarn000 0.2.2

库链接:https://pypi.org/project/papajohnsapi-mehtaarn000/

库简介:A python module that will allow users to use selenium to order pizza from Papa Johns.

库名:newsscraper 0.1.4

库链接:https://pypi.org/project/newsscraper/

库简介:News scraping and reporting.

库名:perftracker-cp-crawler 0.1.6

库链接:https://pypi.org/project/perftracker-cp-crawler/

库简介:Python package with the perftracker control panels crawler

库名:autogroceries 1.0.1

库链接:https://pypi.org/project/autogroceries/

库简介:Automate your grocery shop

库名:sjb.browserdriver 0.1.3

库链接:https://pypi.org/project/sjb-browserdriver/

库简介:Browser Driver is a Wrapper for Selenium Web Automation

库名:twitter-scraper-without-api 0.0.6

库链接:https://pypi.org/project/twitter-scraper-without-api/

库简介:twitter_scraper without API

库名:cabu 0.0.2

库链接:https://pypi.org/project/cabu/

库简介:cabu is a simple REST microservice to scrap content from anywhere.

库名:crunchy-bot 4.5.5

库链接:https://pypi.org/project/crunchy-bot/

库简介:Crunchyroll Guest Pass Publisher for Reddit

库名:TestAuto 0.0.2

库链接:https://pypi.org/project/testauto/

库简介:简介无内容

库名:pintium 1.1.0

库链接:https://pypi.org/project/pintium/

库简介:Pinterest + Selenium = Pintium

库名:Dyson 1.1.2

库链接:https://pypi.org/project/dyson/

库简介:Dyson Selenium framework.

库名:wasd 1.0.99

库链接:https://pypi.org/project/wasd/

库简介:The Kostyan Selenium Wrapper

库名:new-pytest-needle 0.1.3

库链接:https://pypi.org/project/new-pytest-needle/

库简介:VT pytest + selenium

库名:python-brimstone 0.20140122

库链接:https://pypi.org/project/python-brimstone/

库简介:convenient selenium wrapper

库名:seleup 1.3

库链接:https://pypi.org/project/seleup/

库简介:selenium automate update

库名:SelSik 0.0.9

库链接:https://pypi.org/project/selsik/

库简介:@KekikAkademi Selenium Kütüphanesi

库名:py.saunter 0.63

库链接:https://pypi.org/project/py-saunter/

库简介:An opinionated Selenium framework

库名:pombo-correio 0.2.1

库链接:https://pypi.org/project/pombo-correio/

库简介:simple selenium wrapper

库名:UiComparePicRec 1.1.1

库链接:https://pypi.org/project/uicomparepicrec/

库简介:Selenium plugin library

库名:pybrowsertest 0.0.5

库链接:https://pypi.org/project/pybrowsertest/

库简介:Facility to use Selenium

库名:driloader 1.2.5

库链接:https://pypi.org/project/driloader/

库简介:Driver downloader for Selenium

库名:izSelenium 1.0.0

库链接:https://pypi.org/project/izselenium/

库简介:a decent selenium wrapper

库名:selext 0.2.1

库链接:https://pypi.org/project/selext/

库简介:Selenium Extension for Python

库名:selenible 0.0.4

库链接:https://pypi.org/project/selenible/

库简介:selenium like ansible

库名:spotify-web-controller 0.1.3

库链接:https://pypi.org/project/spotify-web-controller/

库简介:Spotify_Web_Controller using Selenium

库名:google-image-extractor 1.0.4b1

库链接:https://pypi.org/project/google-image-extractor/

库简介:Utility to search and download images from google image search

库名:xintesis 0.1

库链接:https://pypi.org/project/xintesis/

库简介:Simple Python Flask based REST API builder

库名:vf-utils 0.1.3

库链接:https://pypi.org/project/vf-utils/

库简介:Doing bulk edit jobs for vereinsflieger.de

库名:instabrade 0.0.7

库链接:https://pypi.org/project/instabrade/

库简介:Selenium based Instagram Scraper

库名:widgetastic-patternfly4 1.1.1

库链接:https://pypi.org/project/widgetastic-patternfly4/

库简介:Patternfly4 widget library for Widgetastic.

库名:jsreport 0.2.5

库链接:https://pypi.org/project/jsreport/

库简介:Simple tool to pull basic reporting data out of JustServe (https://www.justserve.org/).

库名:s-tool 0.0.3

库链接:https://pypi.org/project/s-tool/

库简介:Selenium wrapper to make your life easy.

库名:tweetpy-janmarkuslanger 0.0.3

库链接:https://pypi.org/project/tweetpy-janmarkuslanger/

库简介:Create your own twitter bot without the api

库名:chromedriver-autodownloader 0.2.0

库链接:https://pypi.org/project/chromedriver-autodownloader/

库简介:简介无内容

库名:tweetpy-janmarkuslanger-test 0.0.1

库链接:https://pypi.org/project/tweetpy-janmarkuslanger-test/

库简介:Create your own twitter bot without the api

库名:YSL-H-isaac23 1.6.0.3

库链接:https://pypi.org/project/ysl-h-isaac23/

库简介:A package for automated liking of Active YouTube Streams programmatically using selenium and requests.

库名:robotframework-extendedselenium2library 0.9.2

库链接:https://pypi.org/project/robotframework-extendedselenium2library/

库简介:Extended Selenium2 web testing library for Robot Framework with AngularJS support

库名:dscore 0.3.2

库链接:https://pypi.org/project/dscore/

库简介:Python tool for automated, multiserver query for disordered regions in protein sequences.

库名:tweety 0.1.6

库链接:https://pypi.org/project/tweety/

库简介:Python package which to access the Twitter database without API

库名:unblockr 2.1.2

库链接:https://pypi.org/project/unblockr/

库简介:A python package used for creating alternate browsers

库名:aloe-webdriver 0.6.0

库链接:https://pypi.org/project/aloe-webdriver/

库简介:Selenium webdriver extension for Aloe

库名:cbthelper 0.1.3

库链接:https://pypi.org/project/cbthelper/

库简介:a helper library for cross browser testing's selenium api

库名:perfecto-py3 1.0.1

库链接:https://pypi.org/project/perfecto-py3/

库简介:Perfecto Reporting SDK for Python

库名:SafeDriver 1.2.7

库链接:https://pypi.org/project/safedriver/

库简介:自动检测并更新driver文件,提高selenium代码的稳定性

库名:bostas 0.0.2

库链接:https://pypi.org/project/bostas/

库简介:Tool for social media automation

库名:instapymad 0.6.14

库链接:https://pypi.org/project/instapymad/

库简介:Tool for automated Instagram interactions

库名:Appium-Python-Client-Monkey 1.0.0

库链接:https://pypi.org/project/appium-python-client-monkey/

库简介:Hot Patch For Appium-Pyhton-Client

库名:instapy-mad 0.6.14

库链接:https://pypi.org/project/instapy-mad/

库简介:Tool for automated Instagram interactions

库名:BrowseDrive 2.2

库链接:https://pypi.org/project/browsedrive/

库简介:简介无内容

库名:nzme-skynet 0.5.0

库链接:https://pypi.org/project/nzme-skynet/

库简介:NZME Test Automation Library

库名:pyscalpel 0.2.0

库链接:https://pypi.org/project/pyscalpel/

库简介:Your easy-to-use, fast and powerful web scraping library

库名:tobbetu-classFetcher 2020.11

库链接:https://pypi.org/project/tobbetu-classfetcher/

库简介:A simple library to fetch class Zoom links from the TOBB ETU class portal.

库名:loglevel 0.1.2

库链接:https://pypi.org/project/loglevel/

库简介:简介无内容

库名:bibimbap 1.0.2

库链接:https://pypi.org/project/bibimbap/

库简介:selenium based visual automation testing tool

库名:Appium-Python-Client 2.6.0

库链接:https://pypi.org/project/appium-python-client/

库简介:Python client for Appium

库名:auto-whatsapp 0.0.5

库链接:https://pypi.org/project/auto-whatsapp/

库简介:Automating WhatsApp using python with custom multiple messaging options, attachment options and supporting images and video sending

库名:discord-musicbot 0.0.3.dev20170604

库链接:https://pypi.org/project/discord-musicbot/

库简介:MusicBot bot for Discord.

库名:forumpy 0.0.3

库链接:https://pypi.org/project/forumpy/

库简介:An unofficial SA-MP forum api

库名:cfmmc 2017.12.5

库链接:https://pypi.org/project/cfmmc/

库简介:中国期货监控中心模拟浏览器操作

库名:wtrobot 1.0.0rc0

库链接:https://pypi.org/project/wtrobot/

库简介:WTRobot is keyword driven web testing framework

库名:scrapeGG 0.0.5

库链接:https://pypi.org/project/scrapegg/

库简介:Pulling League of Legends profile and match data from op.gg website.

库名:investment 0.2.17

库链接:https://pypi.org/project/investment/

库简介:A Python App for Investment

库名:har2requests 0.2.3

库链接:https://pypi.org/project/har2requests/

库简介:Generate Python Requests code from HAR file

库名:speedapply 0.0.1

库链接:https://pypi.org/project/speedapply/

库简介:Package for automatically applying to relevant jobs on popular job boards.

库名:raccy 2.0.0

库链接:https://pypi.org/project/raccy/

库简介:Web Scraping Library Based on Selenium

库名:GoogleToken 0.7.6

库链接:https://pypi.org/project/googletoken/

库简介:Google User Account login automation

库名:python-darc 1.0.0

库链接:https://pypi.org/project/python-darc/

库简介:Darkweb crawler & search engine.

库名:sillybot 0.1

库链接:https://pypi.org/project/sillybot/

库简介:SillyBot: fastest way to develop scrapping bots

库名:balautil 0.1.5

库链接:https://pypi.org/project/balautil/

库简介:A simple utililty package of my everyday task

库名:himama 0.0.1

库链接:https://pypi.org/project/himama/

库简介:himama: HiMama Downloader

库名:bot-assistant 0.2.9

库链接:https://pypi.org/project/bot-assistant/

库简介:Bot Assistant for Python to avoid getting Blocked for Web Automation

库名:AXUI 0.2.4

库链接:https://pypi.org/project/axui/

库简介:A cross platform UI auto framework

库名:te-eg-usage 1.0.1

库链接:https://pypi.org/project/te-eg-usage/

库简介:Telecome Egypt Usage - Selenium simple scraper to get your data usage info

库名:vaccinewatcher 0.0.1

库链接:https://pypi.org/project/vaccinewatcher/

库简介:Monitor Vaccine Availability from your Local CVS and Walgreens (US Only).

库名:videodrone 0.9.9

库链接:https://pypi.org/project/videodrone/

库简介:WebRTC python unit tests inspired to '80s

库名:pyveoliaidf 0.1.13

库链接:https://pypi.org/project/pyveoliaidf/

库简介:Retrieve water consumption from Veolia Ile-de-France web site (French Water Company)

库名:bggcli 0.9

库链接:https://pypi.org/project/bggcli/

库简介:Command Line Interface for BoardGameGeek.com

库名:TinyEarn 0.0.13

库链接:https://pypi.org/project/tinyearn/

库简介:Simple selenium webscaper to pull earnings data from zacks.com

库名:judah 0.0.6

库链接:https://pypi.org/project/judah/

库简介:A simple service-oriented ETL framework for integrations

库名:deform_bootstrap 0.2.9

库链接:https://pypi.org/project/deform-bootstrap/

库简介:Twitter Bootstrap compatible widgets, templates and styles for the deform form library

库名:chromedriver-autoinstaller 0.3.1

库链接:https://pypi.org/project/chromedriver-autoinstaller/

库简介:Automatically install chromedriver that supports the currently installed version of chrome.

库名:testproject-robot-library 0.65.2

库链接:https://pypi.org/project/testproject-robot-library/

库简介:TestProject.io Library for the Robot Framrwork

库名:hearthgen 0.0.2

库链接:https://pypi.org/project/hearthgen/

库简介:Library to make hearthstone cards in python!

库名:django-testing-base 0.4.0

库链接:https://pypi.org/project/django-testing-base/

库简介:Simple Django testing base classes and patterns

库名:dnevnik-mos-ru 2.3.0

库链接:https://pypi.org/project/dnevnik-mos-ru/

库简介:This package is kind of wrapper for dnevnik.mos.ru API service

库名:NetflixParser 0.1.2

库链接:https://pypi.org/project/netflixparser/

库简介:Netflix parser

库名:setuptest 1.1.7

库链接:https://pypi.org/project/setuptest/

库简介:The Selenium based setuptest for the CYBR CSCW-SUITE (CCS) - check the README.md to follow the steps for making it run from your PyCharm IDE

库名:viaduct 0.1.3

库链接:https://pypi.org/project/viaduct/

库简介:Viaduct is a Trading212 REST API wrapper for python

库名:brofser 0.0.1

库链接:https://pypi.org/project/brofser/

库简介:brofser - short description

库名:ruamel.browser.client 0.2.10

库链接:https://pypi.org/project/ruamel-browser-client/

库简介:zmq based client to talk with ruamel.browser.server

库名:mobile163 1.0.4

库链接:https://pypi.org/project/mobile163/

库简介:app testing library for Robot Framework

库名:tipranks 0.0.3

库链接:https://pypi.org/project/tipranks/

库简介:Python interface to communicate with TipRanks API.

库名:samuranium 0.0.2

库链接:https://pypi.org/project/samuranium/

库简介:A test automation framework

库名:RFIDFrame 0.0.1

库链接:https://pypi.org/project/rfidframe/

库简介:A Framework for MFRC522 RFID Devices in Python

库名:wcap 0.2.0

库链接:https://pypi.org/project/wcap/

库简介:Capture web pages as images using Selenium and the FireFox webdriver.

库名:AirobotLibrary 1.2.3

库链接:https://pypi.org/project/airobotlibrary/

库简介:Robotframework Library For Airobot Test Framework

库名:semantic-locators 2.1.0

库链接:https://pypi.org/project/semantic-locators/

库简介:Semantic Locators are a human readable, resilient and accessibility-enforcing way to find web elements. This package adds semantic locator support to webdriver

库名:geckodriver-autoinstaller 0.1.0

库链接:https://pypi.org/project/geckodriver-autoinstaller/

库简介:Automatically install geckodriver that supports the currently installed version of chrome.

库名:ggoogle 1.4.1

库链接:https://pypi.org/project/ggoogle/

库简介:简介无内容

库名:prodigyqa 1.2.2

库链接:https://pypi.org/project/prodigyqa/

库简介:Test Automation Framework

库名:imgqa 1.0.5

库链接:https://pypi.org/project/imgqa/

库简介:Test Automation Framework

库名:abs-web-testing 0.5

库链接:https://pypi.org/project/abs-web-testing/

库简介:Action Based Selenium WebTesting library - selenium in more accessible way

库名:yahooquery 2.2.15

库链接:https://pypi.org/project/yahooquery/

库简介:Python interface to unofficial Yahoo Finance API endpoints

库名:lemoncheesecake 1.13.0

库链接:https://pypi.org/project/lemoncheesecake/

库简介:Test Storytelling

库名:qaf-python 1.0.0

库链接:https://pypi.org/project/qaf-python/

库简介:This is Automation framework for Python developed by Infostretch

库名:get-chrome-driver 1.3.4

库链接:https://pypi.org/project/get-chrome-driver/

库简介:A tool to download and install ChromeDriver.

库名:ghostly 0.2.4

库链接:https://pypi.org/project/ghostly/

库简介:Lightweight API around Selenium Webdriver for end to end testing with Django.

库名:Automancy 0.5.9

库链接:https://pypi.org/project/automancy/

库简介:简介无内容

库名:oum 0.99.1

库链接:https://pypi.org/project/oum/

库简介:Object<-->UI Automation Map

库名:html2pdf-bookdown 0.1.0

库链接:https://pypi.org/project/html2pdf-bookdown/

库简介:Fetch and convert HTML to PDF for eBooks published with Bookdown

库名:livevox-pypi 0.9

库链接:https://pypi.org/project/livevox-pypi/

库简介:Use Livevox fast as fuck!!

库名:pypo4sel.core 0.0.2

库链接:https://pypi.org/project/pypo4sel-core/

库简介:page object wrapper for selenium webdriver

库名:selethon 1.1.1

库链接:https://pypi.org/project/selethon/

库简介:automated controll website

库名:dddd-utils 1.1.15

库链接:https://pypi.org/project/dddd-utils/

库简介:带带弟弟小工具

库名:YTLiveScrape 1.0.3

库链接:https://pypi.org/project/ytlivescrape/

库简介:Simple YouTube Live scrape package

库名:hemnes 1.2.2

库链接:https://pypi.org/project/hemnes/

库简介:Ikea product scraper

库名:robotframework-seleniumscreenshots 0.9.5

库链接:https://pypi.org/project/robotframework-seleniumscreenshots/

库简介:Robot Framework keyword library for capturing annotated screenshots with SeleniumLibrary

库名:xsearch 1.0.6

库链接:https://pypi.org/project/xsearch/

库简介:Search, export and analyse more efficiently

库名:bitchute-scraper 0.1.7

库链接:https://pypi.org/project/bitchute-scraper/

库简介:A package to scrape BitChute platform recommendations using Selenium.

库名:wallspider 0.0.1

库链接:https://pypi.org/project/wallspider/

库简介:Wallpaper downloader

库名:JAQK 0.0.3.1

库链接:https://pypi.org/project/jaqk/

库简介:A light toolkit for crawling financia data and basic analysis and calcualtions.

库名:page-size-check 1.0.0

库链接:https://pypi.org/project/page-size-check/

库简介:Utility to check the size of pages from a sitemap and its resources parsering the HAR file of request

库名:SeleniumKrystian 5.0.1

库链接:https://pypi.org/project/seleniumkrystian/

库简介:Library that simplifies using selenium

库名:SeleniumLibraryExtension 0.0.7

库链接:https://pypi.org/project/seleniumlibraryextension/

库简介:A Extension of Selenium Library 3.0.0+

库名:pyautogecko 0.1.3

库链接:https://pypi.org/project/pyautogecko/

库简介:Automatically install geckodriver that supports the currently installed version of Firefox.

库名:shadowselenium 1.0.0

库链接:https://pypi.org/project/shadowselenium/

库简介:This can be used along with selenium to identify Shadow Elements present under Shadow DOM/Shadow Root

库名:robotframework-eyeslibrary 2.1

库链接:https://pypi.org/project/robotframework-eyeslibrary/

库简介:Visual verification testing library for Robot Framework

库名:gnv 1.0.8

库链接:https://pypi.org/project/gnv/

库简介:An automation tool to control GitHub, using the developers terminal with cool automation

库名:robotframework-eyeslibrarysel3 2.4

库链接:https://pypi.org/project/robotframework-eyeslibrarysel3/

库简介:Visual verification testing library for Robot Framework

库名:whatsappchatbot-kc 0.0.1

库链接:https://pypi.org/project/whatsappchatbot-kc/

库简介:Its an whatsapp chatbot that can receive and send message to user

库名:onedrive 0.0.14

库链接:https://pypi.org/project/onedrive/

库简介:Download shared folders with Selenium in bulk.

库名:whatsappchattingbot 0.0.1

库链接:https://pypi.org/project/whatsappchattingbot/

库简介:Its an whatsapp chatbot that can receive and send message to user

库名:data4test 1.0.0

库链接:https://pypi.org/project/data4test/

库简介:data for test

库名:data49 0.4.3

库链接:https://pypi.org/project/data49/

库简介:A gold rush-themed data mining library

库名:deform_jinja2 0.5

库链接:https://pypi.org/project/deform-jinja2/

库简介:Jinja2 templates for Deform widgets

库名:dr-web-engine 0.3.2.2b0

库链接:https://pypi.org/project/dr-web-engine/

库简介:Data Retrieval Web Engine - Queryable Web Scrap engine build on python based on lxml and Selenium package and using JSON as query construct.

库名:CountryGoogleScraper 0.2.10

库链接:https://pypi.org/project/countrygooglescraper/

库简介:A module to scrape and extract links, titles and descriptions from various search engines. Supports google,bing,yandex and many more.

库名:duct-tape 0.24.3

库链接:https://pypi.org/project/duct-tape/

库简介:Duct Tape is a Python interface for downloading data, uploading data, and controlling supported Ed-Tech software.

库名:testcontainers 3.6.0

库链接:https://pypi.org/project/testcontainers/

库简介:Library provides lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container

库名:geecracker 0.0.2

库链接:https://pypi.org/project/geecracker/

库简介:A cracker of geetest depends on selenium

库名:velenium 0.5.9

库链接:https://pypi.org/project/velenium/

库简介:Interact with an app using visual definitions of elements

库名:cpotp 0.0.8

库链接:https://pypi.org/project/cpotp/

库简介:Command line tool to copy the latest OTP received in the connected Android device to the clipboard.

库名:superscraper 0.3.1

库链接:https://pypi.org/project/superscraper/

库简介:the friendliest scraper around

库名:automateWordPressPost 0.1.1

库链接:https://pypi.org/project/automatewordpresspost/

库简介:Automate WordPress Block Editor. Add post using docx file or html file.

库名:supercontest 1.0.1

库链接:https://pypi.org/project/supercontest/

库简介:Client for fetching supercontest data

库名:didyoumean3 0.3.1

库链接:https://pypi.org/project/didyoumean3/

库简介:"Did You Mean?" suggestions for your Python3 projects.

库名:weathercrawl1 0.0.1

库链接:https://pypi.org/project/weathercrawl1/

库简介:Weather Forecasting Program

库名:WhatsappWebKit 1.2.0

库链接:https://pypi.org/project/whatsappwebkit/

库简介:A small library helpful for manipulating whatsapp web using selenium

库名:browsenextfile 0.0.5

库链接:https://pypi.org/project/browsenextfile/

库简介:View local files (images or videos) using web browser

库名:mywebcrawler1 0.0.1

库链接:https://pypi.org/project/mywebcrawler1/

库简介:Weather Forecasting Program

库名:python-wd-parallel 0.1.1

库链接:https://pypi.org/project/python-wd-parallel/

库简介:python-wd-parallel lets you easilly run your test in multiple borwsers.

库名:PyWebRunner 2.6.0

库链接:https://pypi.org/project/pywebrunner/

库简介:A library that extends and improves the Selenium python library.

库名:chromedriverdownloaderandchecker 0.0.2

库链接:https://pypi.org/project/chromedriverdownloaderandchecker/

库简介:Simple chromedriver downloader and checker

库名:smooch-logs 0.1.8

库链接:https://pypi.org/project/smooch-logs/

库简介:Simple module for downloading Smooch logs from their website.

库名:capybara-py 0.1.6

库链接:https://pypi.org/project/capybara-py/

库简介:Acceptance test framework for web applications

库名:scrapetube 2.2.2

库链接:https://pypi.org/project/scrapetube/

库简介:Scrape youtube without the official youtube api and without selenium.

库名:pythonatinsta 0.0.1

库链接:https://pypi.org/project/pythonatinsta/

库简介:A very basic instagram robot

库名:edgedriver-autoinstaller 0.2.1

库链接:https://pypi.org/project/edgedriver-autoinstaller/

库简介:Automatically install edgedriver that supports the currently installed version of edge.

库名:pcs-utils 0.0.8

库链接:https://pypi.org/project/pcs-utils/

库简介:Some utils for scraping the PCS web

库名:jenkins-plugins-auto-update 1.0.1

库链接:https://pypi.org/project/jenkins-plugins-auto-update/

库简介:Updates Jenkins plugins with the magic of automation... and Selenium.

库名:GoogleImages-Download 1.0.6

库链接:https://pypi.org/project/googleimages-download/

库简介:A Python Script for downloading bulk of images from google.

库名:fast-youtube-search 0.0.8

库链接:https://pypi.org/project/fast-youtube-search/

库简介:Unlimited youtube search with web scrapping

库名:silos 0.1.0

库链接:https://pypi.org/project/silos/

库简介:Easy Automation using Selenium

库名:django-tasktracker 0.2

库链接:https://pypi.org/project/django-tasktracker/

库简介:A basic Django app to record and track XP stories and tasks.

库名:gids 1.2.2

库链接:https://pypi.org/project/gids/

库简介:Google-images-downloader module using selenium

库名:PyAnime4Up 1.8

库链接:https://pypi.org/project/pyanime4up/

库简介:A Selenium-less Python Anime4Up Library

库名:PastaSauce 0.1.13

库链接:https://pypi.org/project/pastasauce/

库简介:Sauce Labs interface for Python 3 exposing more of the SLAPI

库名:webbrowserdownloader 0.1

库链接:https://pypi.org/project/webbrowserdownloader/

库简介:webbrowserdownloader is a wrapper for selenium browser

库名:twisel 0.1.10

库链接:https://pypi.org/project/twisel/

库简介:Library for scraping twitter with selenium

库名:pyjoomatic 0.1a

库链接:https://pypi.org/project/pyjoomatic/

库简介:Automating joomla through selenium

库名:LinkedIn-Feed-Bot 0.2.0

库链接:https://pypi.org/project/linkedin-feed-bot/

库简介:LinkedIn Feed crawler with Selenium.

库名:selench 1.1

库链接:https://pypi.org/project/selench/

库简介:Python wrapper for selenium WebDriver

库名:kryptonium 0.1.4

库链接:https://pypi.org/project/kryptonium/

库简介:Automation Framework using Selenium

库名:etiqa-eats 0.11.2.23

库链接:https://pypi.org/project/etiqa-eats/

库简介:Easy Automation Testing Selenium

库名:web-wrapper 0.4.2

库链接:https://pypi.org/project/web-wrapper/

库简介:Web wrapper for Selenium/requests

库名:pysellure 0.0.4

库链接:https://pypi.org/project/pysellure/

库简介:Python/Selenium/Allure methods

库名:rube.core 0.1.2

库链接:https://pypi.org/project/rube-core/

库简介:A convenience layer on top of selenium

库名:gabposter 1.2.8

库链接:https://pypi.org/project/gabposter/

库简介:Selenium driver that posts to gab.

库名:selinstapy 0.0.1

库链接:https://pypi.org/project/selinstapy/

库简介:A instagram bot using selenium

库名:sauing 0.2

库链接:https://pypi.org/project/sauing/

库简介:This is Test Automation Framework for Selenium.

库名:wedutil 0.22.1

库链接:https://pypi.org/project/wedutil/

库简介:Utilities for testing wed with Selenium.

库名:ngSe 0.1.11

库链接:https://pypi.org/project/ngse/

库简介:A Selenium browser for javascript frameworks

库名:pagium 0.0.17

库链接:https://pypi.org/project/pagium/

库简介:Selenium page object implementation

库名:beryllium 1.0.4

库链接:https://pypi.org/project/beryllium/

库简介:A framework for spider over selenium

库名:pytest-play 2.3.1

库链接:https://pypi.org/project/pytest-play/

库简介:pytest plugin that let you automate actions and assertions with test metrics reporting executing plain YAML files

库名:GoogleNewsScraper 1.0.1

库链接:https://pypi.org/project/googlenewsscraper/

库简介:Scrapes Google News article data

库名:django-namek 0.0.3

库链接:https://pypi.org/project/django-namek/

库简介:Django app for forms chaining with some features

库名:seliky 0.95

库链接:https://pypi.org/project/seliky/

库简介:a better ui autotest lib based on selenium, compatible with robot framework

库名:WebRequest 0.0.78

库链接:https://pypi.org/project/webrequest/

库简介:Like requests, but shittier.

库名:pyjpgclipboard 1.0.3

库链接:https://pypi.org/project/pyjpgclipboard/

库简介:Server to run ytclip.

库名:pyselpom 1.2.3

库链接:https://pypi.org/project/pyselpom/

库简介:PySelPOM is a Page Object Model selenium based framework for humans.

库名:robotframework-browsermobproxylibrary 0.1.3

库链接:https://pypi.org/project/robotframework-browsermobproxylibrary/

库简介:BrowserMob Proxy library for Robot Framework

库名:VisualAssertLibrary 0.2.8

库链接:https://pypi.org/project/visualassertlibrary/

库简介:Robot Framework Visual Assert Library

库名:persine 0.1.4

库链接:https://pypi.org/project/persine/

库简介:Persine is an automated tool to study and reverse-engineer algorithmic recommendation systems. It has a simple interface and encourages reproducible results.

库名:PyScrappy 0.1.1

库链接:https://pypi.org/project/pyscrappy/

库简介:Powerful web scraping tool.

库名:ucheck 0.0.6

库链接:https://pypi.org/project/ucheck/

库简介:ucheck library

库名:igenemy 0.3.2

库链接:https://pypi.org/project/igenemy/

库简介:WebScraping_Instagram

库名:anime-downloader 5.0.9

库链接:https://pypi.org/project/anime-downloader/

库简介:Download your favourite anime

库名:amazoncaptcha 0.5.7

库链接:https://pypi.org/project/amazoncaptcha/

库简介:"Pure Python, lightweight, Pillow-based solver for the Amazon text captcha."

库名:robotframework-eyeslibraryextended 4.1

库链接:https://pypi.org/project/robotframework-eyeslibraryextended/

库简介:Visual verification testing library for Robot Framework using Applitool python SDK eye-selenium

库名:xfinity-usage 3.0.1

库链接:https://pypi.org/project/xfinity-usage/

库简介:Python/selenium script to get Xfinity bandwidth usage from Xfinity MyAccount website.

库名:shishito 3.1.16

库链接:https://pypi.org/project/shishito/

库简介:Python module for selenium webdriver test execution

库名:juriscraper 2.5.7

库链接:https://pypi.org/project/juriscraper/

库简介:An API to scrape American court websites for metadata.

库名:ppipe 0.4.9

库链接:https://pypi.org/project/ppipe/

库简介:Planet API Pipeline & Google Earth Engine Batch Assets Manager with Addons

库名:django-ckeditor 6.4.2

库链接:https://pypi.org/project/django-ckeditor/

库简介:Django admin CKEditor integration.

库名:basicpy2captcha 1.0.2

库链接:https://pypi.org/project/basicpy2captcha/

库简介:A basic python 2captcha.com module

库名:facile-new-business-lib 0.0.8

库链接:https://pypi.org/project/facile-new-business-lib/

库简介:testing

库名:mobilelibrary 2.0.0

库链接:https://pypi.org/project/mobilelibrary/

库简介:app testing library for Robot Framework Extended with AppiumLibrary

库名:xtractr 0.0.1

库链接:https://pypi.org/project/xtractr/

库简介:A mechanism to improve extraction

库名:snapshot-phantomjs 0.0.3

库链接:https://pypi.org/project/snapshot-phantomjs/

库简介:Render pyecharts as image via phantomjs

库名:pexels-cli 0.1.0

库链接:https://pypi.org/project/pexels-cli/

库简介:A Simple CLI To Get Image With Specific Tag From Pexels

库名:FishingForPhish 0.3.2

库链接:https://pypi.org/project/fishingforphish/

库简介:FishingForPhish is a phishing detection framework focused on the analysis of image and page based features.

库名:cleversession 0.0.1a1

库链接:https://pypi.org/project/cleversession/

库简介:A CleverDict subclass to handle selenium webbrowser sessions

库名:igcoccebot 0.2.4

库链接:https://pypi.org/project/igcoccebot/

库简介:The definitive package to interact on Instagram

库名:warriorframework 4.6.0

库链接:https://pypi.org/project/warriorframework/

库简介:Warrior Framework is an open source Automation Framework

库名:easy-login 3.0.0

库链接:https://pypi.org/project/easy-login/

库简介:Logging social accounts automatically using python package

库名:robotframework-weblibrary 2.0.1

库链接:https://pypi.org/project/robotframework-weblibrary/

库简介:Web testing library for Robot Framework Extended with Selenium2Library

库名:weblibrary 2.0.0

库链接:https://pypi.org/project/weblibrary/

库简介:Web testing library for Robot Framework Extended with Selenium2Library

库名:autocomplete-light 0.1.4

库链接:https://pypi.org/project/autocomplete-light/

库简介:simple autocompletion web component

库名:oxtest 0.1

库链接:https://pypi.org/project/oxtest/

库简介:Tools for testing with docker.

库名:webdriver-start 1.1.0

库链接:https://pypi.org/project/webdriver-start/

库简介:Reliable module for starting up Selenium Webdriver, with custom user-agent and custom profile

库名:SeleniumLogin 0.0.4

库链接:https://pypi.org/project/seleniumlogin/

库简介:Login some website using selenium.

库名:r2g 1.0.5

库链接:https://pypi.org/project/r2g/

库简介:A homology-based, computationally lightweight pipeline for discovering genes in the absence of an assembly

库名:autobrowser 0.2.0

库链接:https://pypi.org/project/autobrowser/

库简介:Toolset for automated browsing

库名:YouTube-Driver 1.0.7

库链接:https://pypi.org/project/youtube-driver/

库简介:Programmatically interact with YouTube's interface.

库名:django-browserstack-tools 0.1.1

库链接:https://pypi.org/project/django-browserstack-tools/

库简介:Unofficial Browserstack integration for Django

库名:FishingForPhish-xanmankey 0.1.0

库链接:https://pypi.org/project/fishingforphish-xanmankey/

库简介:FishingForPhish is a phishing detection framework focused on the analysis of image and page based features.

库名:robotframework-mobilelibrary 2.0.5

库链接:https://pypi.org/project/robotframework-mobilelibrary/

库简介:app testing library for Robot Framework Extended with AppiumLibrary

库名:browserpedals 0.0.2

库链接:https://pypi.org/project/browserpedals/

库简介:Control videos in web browser with pedals

库名:ChessComLibraryExporter 0.7.2

库链接:https://pypi.org/project/chesscomlibraryexporter/

库简介:Download your whole Chess.com Library (chess.com/library)

库名:bpp-anubis 0.4.8

库链接:https://pypi.org/project/bpp-anubis/

库简介:Tools for running behave tests in parallel

库名:chromedriver-autoinstall 0.0.7

库链接:https://pypi.org/project/chromedriver-autoinstall/

库简介:Script to automatically install the ChromeDriver release compatible with the client's Chrome version.

库名:FacebookWebBot 1.1.0

库链接:https://pypi.org/project/facebookwebbot/

库简介:A python library to automatize facebook without the official API

库名:cleverweb 0.0.1a1

库链接:https://pypi.org/project/cleverweb/

库简介:A collection of methods used by CleverSession for accessing common sites using selenium.

库名:glance_dom 0.11.5

库链接:https://pypi.org/project/glance-dom/

库简介:Quickly reference DOM elements with minimal inspection.

库名:nyumytimecli 0.0.5

库链接:https://pypi.org/project/nyumytimecli/

库简介:A command-line interface for NYU's employee time-tracking website

库名:naverlogin 1.0.2

库链接:https://pypi.org/project/naverlogin/

库简介:A tiny module for Naver login

库名:pyzaim 1.0.11

库链接:https://pypi.org/project/pyzaim/

库简介:Zaimのデータを取得・操作するPythonパッケージ

库名:plone.app.search 1.2.2

库链接:https://pypi.org/project/plone-app-search/

库简介:Search user interface for Plone CMS.

库名:citronella 0.0.2

库链接:https://pypi.org/project/citronella/

库简介:Webdriver Extension with Page Object Wrapper

库名:jupyterlab-favorites 3.1.0

库链接:https://pypi.org/project/jupyterlab-favorites/

库简介:Add the ability to save favorite folders to JupyterLab for quicker browsing

库名:pyWAppSel 1.0.5

库链接:https://pypi.org/project/pywappsel/

库简介:pyWAppSel is a selenium-based Whatsapp wrapper

库名:djasmine 0.2.3

库链接:https://pypi.org/project/djasmine/

库简介:Integrates Jasmine JavaScript tests with the Django test framework in a simple but effective DRY way.

库名:py-msci-esg 0.0.8

库链接:https://pypi.org/project/py-msci-esg/

库简介:A package for scraping content from the MSCI.com ESG Ratings Corporate Search Tool

库名:robotframework-seleniumtestability 2.0.0

库链接:https://pypi.org/project/robotframework-seleniumtestability/

库简介:SeleniumTestability library that helps speed up tests withasyncronous evens

库名:autowhatspy 1.0.7

库链接:https://pypi.org/project/autowhatspy/

库简介:WhatsApp and Email Automation with Python

库名:wtframework 0.4.11

库链接:https://pypi.org/project/wtframework/

库简介:WTF - Web Test Framework

库名:seoaudit 0.0.1.dev3

库链接:https://pypi.org/project/seoaudit/

库简介:Run SEO checks on a set of urls.

库名:orioncrawlers-pkg-rioatmadja2018 0.1.1585018212

库链接:https://pypi.org/project/orioncrawlers-pkg-rioatmadja2018/

库简介:Engines to collect data.

库名:jklib 3.1.0

库链接:https://pypi.org/project/jklib/

库简介:Package with utility functions on many different subjects

库名:webelement-highlighter 0.9.5

库链接:https://pypi.org/project/webelement-highlighter/

库简介:A simple package to highlight webelements

库名:bidpom 2.0.1

库链接:https://pypi.org/project/bidpom/

库简介:Mozilla BrowserID (Persona) Page Object Model

库名:browserid 1.4

库链接:https://pypi.org/project/browserid/

库简介:Mozilla BrowserID (Persona) Page Object Model

库名:homepage2vec 0.0.3rc0

库链接:https://pypi.org/project/homepage2vec/

库简介:Language-Agnostic Website Embedding and Classification

库名:tithiwa 0.1.30

库链接:https://pypi.org/project/tithiwa/

库简介:tithiwa - Web WhatsApp bot: Automate Web WhatsApp with selenium in python.

库名:pybites-carbon 0.4

库链接:https://pypi.org/project/pybites-carbon/

库简介:A package to automate making beautiful code snippets using Carbon

库名:opplast 1.0.13

库链接:https://pypi.org/project/opplast/

库简介:Upload videos to YouTube using geckodriver, Firefox profiles and Selenium.

库名:seleniumbase-runping.zeng 0.1.6

库链接:https://pypi.org/project/seleniumbase-runping-zeng/

库简介:selenium二次封装

库名:holmium.core 0.8.5

库链接:https://pypi.org/project/holmium-core/

库简介:selenium page objects and other utilities for test creation

库名:scrapper-boilerplate 0.2.5

库链接:https://pypi.org/project/scrapper-boilerplate/

库简介:Scrapping/Automating tools, userSwitching, anti-bot detection and more...

库名:FoxPuppet 1.0.3

库链接:https://pypi.org/project/foxpuppet/

库简介:Firefox user interface testing model for use with Selenium

库名:z3c.webdriver 0.0.1

库链接:https://pypi.org/project/z3c-webdriver/

库简介:A wrapper around selenium webdriver and some tools

库名:auto-translation 0.1.5

库链接:https://pypi.org/project/auto-translation/

库简介:A simple python library used to translate and speak a given text from the user with Google Translation using user's Chrome browser.

库名:servirtium 0.1.0

库链接:https://pypi.org/project/servirtium/

库简介:Servirtium service virtualization

库名:yandex2lightroom 1.0.9.3

库链接:https://pypi.org/project/yandex2lightroom/

库简介:Python Script to download images from Yandex.Images for the use in Adobe Lightroom.

库名:unicode-babel 0.1.6

库链接:https://pypi.org/project/unicode-babel/

库简介:A tool for generating random characters/code-points

库名:w3cpull 1.1.1

库链接:https://pypi.org/project/w3cpull/

库简介:w3cpull is an application for pulling data from IBM w3 Connections.

库名:CTPC 0.0.1

库链接:https://pypi.org/project/ctpc/

库简介:Chinese To Python Code

库名:sneaky 0.5.0

库链接:https://pypi.org/project/sneaky/

库简介:A sneaky web bot based on Selenium driven by ChromeDriver equipped with undetected-chromedriver (as bot detection bypass), Buster (as a reCAPTCHA solver), eavesdropper (as traffic interceptor), vpncmd (as free VPN rotator) let you breach the Internet as you please.

库名:sceance 1.0.3

库链接:https://pypi.org/project/sceance/

库简介:Uses a watchlist and favorite theaters to suggest film screenings.

库名:pyloci 0.1.2

库链接:https://pypi.org/project/pyloci/

库简介:Python library for Loc-I

库名:fBrowser 0.3.1

库链接:https://pypi.org/project/fbrowser/

库简介:Python3 library to make selenium webscraping easier

库名:fluffypancakes 0.1.5

库链接:https://pypi.org/project/fluffypancakes/

库简介:Detect Phishing Websites using Machine Learning

库名:BoilermakerBuddy 1.0.0

库链接:https://pypi.org/project/boilermakerbuddy/

库简介:( ͡° ͜ʖ ͡°)

库名:xpathwrapper 1.1

库链接:https://pypi.org/project/xpathwrapper/

库简介:Selenium xpath wrapper to easily use in automation python

库名:PyPOM 2.2.3

库链接:https://pypi.org/project/pypom/

库简介:python page object model for selenium

库名:pixiv-tag-analyzer 1.5

库链接:https://pypi.org/project/pixiv-tag-analyzer/

库简介:ollects information on any pixiv user's posts and bookmarks, and explores the user's sexuality from the tags.

库名:instadm 0.0.2

库链接:https://pypi.org/project/instadm/

库简介:Instagram bot to send direct messages

库名:tiddlywebplugins.tiddlyspace 1.2.26

库链接:https://pypi.org/project/tiddlywebplugins-tiddlyspace/

库简介:A discoursive social model for Tiddlers

库名:pythonat-instalib 1.1.0

库链接:https://pypi.org/project/pythonat-instalib/

库简介:Read the latest Real Python tutorials

库名:facebook-events-scraper 0.0.2

库链接:https://pypi.org/project/facebook-events-scraper/

库简介:A simple tool to scrape Facebook events using Selenium

库名:robottelo 0.1.0

库链接:https://pypi.org/project/robottelo/

库简介:Robottelo is a test suite which exercises The Foreman.

库名:alfajor 0.1

库链接:https://pypi.org/project/alfajor/

库简介:Tasty functional testing.

库名:ausfin 0.2.3

库链接:https://pypi.org/project/ausfin/

库简介:Account balance scraping for Australian financial institutions

库名:wordlbot 1.0.1

库链接:https://pypi.org/project/wordlbot/

库简介:A tool to help solve The New Your Times' World -game

库名:webdriverwrapper 2.8.0

库链接:https://pypi.org/project/webdriverwrapper/

库简介:Better interface for WebDriver (Selenium 2).

库名:bruty 0.2.0

库链接:https://pypi.org/project/bruty/

库简介:Bruteforce dynamic web applications with Selenium

库名:screencastpy 0.1.1

库链接:https://pypi.org/project/screencastpy/

库简介:Take screencast in a Selenium WebDriver test

库名:skstyle-bot 0.1.3

库链接:https://pypi.org/project/skstyle-bot/

库简介:Selenium Bot for sstore admin panels

库名:pyhangouts 0.0.1

库链接:https://pypi.org/project/pyhangouts/

库简介:A selenium-based client for Google Hangouts

库名:pyallied 1.0.3

库链接:https://pypi.org/project/pyallied/

库简介:pyallied - a wrapper based on selenium python

库名:sylenium 1.0.1

库链接:https://pypi.org/project/sylenium/

库简介:Selenium wrapper for stable system testing

库名:holvirc 0.3.20190209

库链接:https://pypi.org/project/holvirc/

库简介:Remote-Control Holvi via Selenium

库名:sweeter 0.0.1

库链接:https://pypi.org/project/sweeter/

库简介:Web UI Autotest with Selenium & Excel

库名:delete-facebook-posts 1.1.17

库链接:https://pypi.org/project/delete-facebook-posts/

库简介:A Selenium Script to Delete Facebook Posts

库名:pyasli 0.2.7

库链接:https://pypi.org/project/pyasli/

库简介:(Python) Yet Another Selenium Instruments

库名:check-chromedriver 2.0.26

库链接:https://pypi.org/project/check-chromedriver/

库简介:Check and update chromedriver for selenium automatically

库名:pyseleniumbot 1.0.14

库链接:https://pypi.org/project/pyseleniumbot/

库简介:pyseleniumbot - a wrapper based on selenium python

库名:py-parser-sber 0.7.0

库链接:https://pypi.org/project/py-parser-sber/

库简介:Simple parser of Sberbank, using selenium

库名:helium 3.0.8

库链接:https://pypi.org/project/helium/

库简介:Lighter browser automation based on Selenium.

库名:oronium 1.0.6

库链接:https://pypi.org/project/oronium/

库简介:Webbot selenium driver for testing openremote

库名:flexibox 1.0.1

库链接:https://pypi.org/project/flexibox/

库简介:A single box of functionalities for a selenium project

库名:testproject-python-sdk 1.2.3

库链接:https://pypi.org/project/testproject-python-sdk/

库简介:Selenium and Appium powered SDK for TestProject.io

库名:sda 1.0.3

库链接:https://pypi.org/project/sda/

库简介:A wrapper for Selenium. This library uses custom data attributes to accelerate testing through the Selenium framework

库名:sampyl 0.2.0

库链接:https://pypi.org/project/sampyl/

库简介:A wrapper for Selenium. This library uses custom data attributes to accelerate testing through the Selenium framework

库名:TeslaPy 2.6.0

库链接:https://pypi.org/project/teslapy/

库简介:A Python module to use the Tesla Motors Owner API

库名:nengo-gui 0.4.9

库链接:https://pypi.org/project/nengo-gui/

库简介:Web-based GUI for building and visualizing Nengo models.

库名:robotframework-pageobjectlibrary 1.1

库链接:https://pypi.org/project/robotframework-pageobjectlibrary/

库简介:RobotFramework library that implements the Page Object pattern

库名:brazil-monthly-deaths 1.4.0

库链接:https://pypi.org/project/brazil-monthly-deaths/

库简介:Brazil deaths by city as pandas dataframe or csv file

库名:hashin-pyup 0.7.2

库链接:https://pypi.org/project/hashin-pyup/

库简介:Edits your requirements.txt by hashing them in

库名:python-charmers 0.2.0

库链接:https://pypi.org/project/python-charmers/

库简介:A collection of useful python programs.

库名:BiGG-SABIO 0.0.1

库链接:https://pypi.org/project/bigg-sabio/

库简介:Scrapes SABIO-RK for enzyme kinetics data for given BiGG Model for dFBA simulation.

库名:pycharmers 0.2.0

库链接:https://pypi.org/project/pycharmers/

库简介:A collection of useful python programs.

库名:websiteTest 0.1.2

库链接:https://pypi.org/project/websitetest/

库简介:A package to get visual differences between an expected template image and the actual website’s appearance

库名:takelessons-scraper 0.0.3

库链接:https://pypi.org/project/takelessons-scraper/

库简介:Scrape chat content from TakeLessons.com

库名:custom_text_test_runner 0.1.5

库链接:https://pypi.org/project/custom-text-test-runner/

库简介:Python Custom Text Test Runner

库名:YT-comments-scrapper 0.3

库链接:https://pypi.org/project/yt-comments-scrapper/

库简介:YouTube comments scrapper

库名:seismograph 0.5.4

库链接:https://pypi.org/project/seismograph/

库简介:Framework for test development

库名:instapy-chromedriver 2.46

库链接:https://pypi.org/project/instapy-chromedriver/

库简介:chromedriver binaries for instapy

库名:pytest-dash 2.1.2

库链接:https://pypi.org/project/pytest-dash/

库简介:pytest fixtures to run dash applications.

库名:nxp-dlagent 0.1.0

库链接:https://pypi.org/project/nxp-dlagent/

库简介:Download agent for NXP material

库名:auto-everything 3.9

库链接:https://pypi.org/project/auto-everything/

库简介:do automate things on Linux

库名:openrepos-webclient 1.4.0

库链接:https://pypi.org/project/openrepos-webclient/

库简介:OpenRepos.net web client

库名:pixiv-crawler 0.1.2

库链接:https://pypi.org/project/pixiv-crawler/

库简介:A tool to download pixiv pictures

库名:scrapinsta 0.0.2

库链接:https://pypi.org/project/scrapinsta/

库简介:A package to scraping data from Instagram

库名:iqdma 0.1.9

库链接:https://pypi.org/project/iqdma/

库简介:Analyze IMRT QA Report data mined with IQDM-PDF

库名:bok-choy 1.1.1

库链接:https://pypi.org/project/bok-choy/

库简介:UI-level acceptance test framework

库名:pyderman 3.3.0

库链接:https://pypi.org/project/pyderman/

库简介:Installs the latest Chrome/Firefox/Opera/PhantomJS/Edge web drivers automatically.

库名:vuepy 0.3.0

库链接:https://pypi.org/project/vuepy/

库简介:Pythonic Vue

库名:pytest-fxa 1.4.0

库链接:https://pypi.org/project/pytest-fxa/

库简介:pytest plugin for Firefox Accounts

库名:instapyshoms 0.4.1

库链接:https://pypi.org/project/instapyshoms/

库简介:Tool for automated Instagram interactions

库名:mintapi 2.5

库链接:https://pypi.org/project/mintapi/

库简介:a screen-scraping API for Mint.com

库名:sbgnrender 1.0.0a9

库链接:https://pypi.org/project/sbgnrender/

库简介:A SBGN rendering library

库名:tchappui-webdrivers 0.3.7

库链接:https://pypi.org/project/tchappui-webdrivers/

库简介:Script to install the latest versions of chromedriver and geckodriver on travis

库名:hitchselenium 0.6.7

库链接:https://pypi.org/project/hitchselenium/

库简介:Plugin to run Selenium with firefox using the Hitch testing framework.

库名:webmontage 1.0.0

库链接:https://pypi.org/project/webmontage/

库简介:Web page montage generator

库名:sunbi 0.1.2

库链接:https://pypi.org/project/sunbi/

库简介:classes in one for Sunlands

库名:bzt 1.16.8

库链接:https://pypi.org/project/bzt/

库简介:Taurus Tool for Continuous Testing

库名:robotframework-androidlibrary 0.2.0

库链接:https://pypi.org/project/robotframework-androidlibrary/

库简介:Robot Framework Automation Library for Android

库名:django-basetestcase 1.1.8

库链接:https://pypi.org/project/django-basetestcase/

库简介:A collection of cheater methods for the Django TestCase.

库名:pic-diff-recognizer 1.0.0

库链接:https://pypi.org/project/pic-diff-recognizer/

库简介:Selenium plugin library based on image difference recognition and page intelligent exploration

库名:bzt-tcps 2021.11.10

库链接:https://pypi.org/project/bzt-tcps/

库简介:Taurus Tool for Continuous Testing

库名:sociallinkfinder 0.0.6

库链接:https://pypi.org/project/sociallinkfinder/

库简介:input: company's website url , output: company's facebook, linkedin, twitter, instagram links in a dictionary

库名:WSKrystian 6.0.1

库链接:https://pypi.org/project/wskrystian/

库简介:Web scraping simplified

库名:sparnord 0.2

库链接:https://pypi.org/project/sparnord/

库简介:SparNord home banking screen scraper

库名:get-geckodriver 0.2.1

库链接:https://pypi.org/project/get-geckodriver/

库简介:Automatically install geckodriver, compile if required.

库名:tfuc 1.0.9

库链接:https://pypi.org/project/tfuc/

库简介:some useful tools

库名:YoutubeScraper 0.5

库链接:https://pypi.org/project/youtubescraper/

库简介:Scraper to get information from youtube video page

库名:basepage 1.7.4

库链接:https://pypi.org/project/basepage/

库简介:A wrapper for WebDriver that provides some extended and additional functionality

库名:appium_selector 1.3.2

库链接:https://pypi.org/project/appium-selector/

库简介:Creates a Tcl/Tk window to read connected Appium devices from Selenium Grid and display them for selection

库名:sbrowser 0.0.23

库链接:https://pypi.org/project/sbrowser/

库简介:Python library for automate web browser.

库名:sniffipy 0.01

库链接:https://pypi.org/project/sniffipy/

库简介:Sniffipy is a simple wrapper for the sniffip.com website, which gives you the ip of a person entering a specialy crafted link.

库名:page-object 0.3.4

库链接:https://pypi.org/project/page-object/

库简介:Python implementation of the PageObject pattern

库名:xaled-scrapers 0.1.0

库链接:https://pypi.org/project/xaled-scrapers/

库简介:A collection of helper functions for scraping web sites.

库名:hotdog 1.7.9

库链接:https://pypi.org/project/hotdog/

库简介:Appium/Selenium testing framework deriving from unittest

库名:driverloader 0.1.3

库链接:https://pypi.org/project/driverloader/

库简介:A webdriver downloader

库名:gtranstomp3 0.1.1

库链接:https://pypi.org/project/gtranstomp3/

库简介:Create a mp3 file include English words and translated Traditional Chinese and its example sentenses.

库名:automateboringstuff2ndedition 1.0.2

库链接:https://pypi.org/project/automateboringstuff2ndedition/

库简介:This package installs the modules used in "Automate the Boring Stuff with Python", 2nd Edition.

库名:pyArchery 2.1.2

库链接:https://pypi.org/project/pyarchery/

库简介:Python library enumerating the Archery tool RESTFul API endpoints.

库名:automateboringstuff 1.0.2

库链接:https://pypi.org/project/automateboringstuff/

库简介:This package installs the modules used in "Automate the Boring Stuff with Python", 2nd Edition.

库名:django-pdf-download 0.3.0

库链接:https://pypi.org/project/django-pdf-download/

库简介:UNKNOWN

库名:Youtube-scrapper 0.0.7

库链接:https://pypi.org/project/youtube-scrapper/

库简介:A tool for extracting youtube video details

库名:CanvasScraper 0.5.6.dev0

库链接:https://pypi.org/project/canvasscraper/

库简介:D/L Lectures/Data from Canvas

库名:django-super-inlines 0.2.1

库链接:https://pypi.org/project/django-super-inlines/

库简介:Adds useful features to inlines, such as the ability to nest them.

库名:webdriver-setup 1.1.0

库链接:https://pypi.org/project/webdriver-setup/

库简介:Easy to use webdriver instance creation api

库名:itaxs 0.0.0.16

库链接:https://pypi.org/project/itaxs/

库简介:深圳跨税云公司中用到的函数封装

库名:pyfastcom 1.1.0

库链接:https://pypi.org/project/pyfastcom/

库简介:Python API that gets the results from fast.com test using Selenium

库名:fdscraper 0.0.1

库链接:https://pypi.org/project/fdscraper/

库简介:A Web scrapping tool for stock fundamentals data

库名:pykov-eft 0.0.5

库链接:https://pypi.org/project/pykov-eft/

库简介:A Python API for Escape From Tarkov

库名:mr-wolf.weather-forecast-chart 1.0.0

库链接:https://pypi.org/project/mr-wolf-weather-forecast-chart/

库简介:Command line tool for downloading the weather forecast charts from http://wetter.com

库名:pyshot 0.0.2

库链接:https://pypi.org/project/pyshot/

库简介:Pytest plugin to facilitate screenshot taking with selenium webdriver

库名:scholar-network 0.2.5

库链接:https://pypi.org/project/scholar-network/

库简介:Graph Network Analysis for scraping Google Scholar authors.

库名:mkscreenshot 1.0.2

库链接:https://pypi.org/project/mkscreenshot/

库简介:Screenshot websites quickly

库名:SeleniumAuthProxy 0.0

库链接:https://pypi.org/project/seleniumauthproxy/

库简介:Library for installing in Selenium proxy servers with authorization

库名:seleniumwrapper 0.5.4

库链接:https://pypi.org/project/seleniumwrapper/

库简介:selenium webdriver wrapper to make manipulation easier.

库名:regex-crossword 0.1.0

库链接:https://pypi.org/project/regex-crossword/

库简介:A Python implementation of a Regex Crossword in the terminal.

库名:springbok-retrospective 0.0.1

库链接:https://pypi.org/project/springbok-retrospective/

库简介:A project to look at the greatest hits of news about a specific topic and add that to a blog

库名:toolium 2.6.1

库链接:https://pypi.org/project/toolium/

库简介:Wrapper tool of Selenium and Appium libraries to test web and mobile applications in a single project

库名:linkedin-scraper 2.9.0

库链接:https://pypi.org/project/linkedin-scraper/

库简介:Scrapes user data from Linkedin

库名:translation-gummy 4.0.1

库链接:https://pypi.org/project/translation-gummy/

库简介:Translation Gummy is a magical gadget which enables user to be able to speak and understand other languages.

库名:pytest-needle 0.3.11

库链接:https://pypi.org/project/pytest-needle/

库简介:pytest plugin for visual testing websites using selenium

库名:zelenium 1.0.3

库链接:https://pypi.org/project/zelenium/

库简介:New Selenium framework for Python with base pages and elements

库名:underdata 0.1.2

库链接:https://pypi.org/project/underdata/

库简介:Scraping data package for www.understat.com

库名:change-analyzer 0.14.1

库链接:https://pypi.org/project/change-analyzer/

库简介:Change analyzer

库名:auto-events 0.0.3

库链接:https://pypi.org/project/auto-events/

库简介:Automate tasks easily using python

库名:slipsomat 0.3.1

库链接:https://pypi.org/project/slipsomat/

库简介:Sync Alma slips & letters

库名:matatika-iplotter 1.3.0

库链接:https://pypi.org/project/matatika-iplotter/

库简介:JavaScript Charting for iPython/Jupyter notebooks

库名:browserist 0.15.0

库链接:https://pypi.org/project/browserist/

库简介:Extension for the Selenium web driver that makes browser automation even easier

库名:webdriver-test-tools 3.2.0

库链接:https://pypi.org/project/webdriver-test-tools/

库简介:A front-end testing framework using Selenium WebDriver and Python

库名:pyjpboatrace 0.2.2

库链接:https://pypi.org/project/pyjpboatrace/

库简介:PyJPBoatrace: Python-based Japanese boatrace tools

库名:toronto-hydro-green-button 0.1.0

库链接:https://pypi.org/project/toronto-hydro-green-button/

库简介:简介无内容

库名:d-utils 0.0.9

库链接:https://pypi.org/project/d-utils/

库简介:Utilities for Web Scraping

库名:traductorPy 1.5

库链接:https://pypi.org/project/traductorpy/

库简介:Traductor web

库名:japscandownloader 1.0.6

库链接:https://pypi.org/project/japscandownloader/

库简介:Script to download mangas from JapScan

库名:arlpy 1.8.0

库链接:https://pypi.org/project/arlpy/

库简介:ARL Python Tools

库名:sutd-tts-lib 0.1.1

库链接:https://pypi.org/project/sutd-tts-lib/

库简介:A (relatively) lightweight library for programmatically submitting entries to SUTD's Temperature Taking System, without Selenium and the like.

库名:webtest-flask-fixture 0.5.1

库链接:https://pypi.org/project/webtest-flask-fixture/

库简介:Provide a pytest fixture of a Webtest app with a local static site via Flask

库名:nba_scrape 0.56

库链接:https://pypi.org/project/nba-scrape/

库简介:Python utility to easily scrape NBA stats

库名:micsv 0.0.2

库链接:https://pypi.org/project/micsv/

库简介:Automate MICS survey downloading

库名:searchit 2019.12.30.2

库链接:https://pypi.org/project/searchit/

库简介:Aysncio search engine scraping package

库名:automateboringstuff1stedition 1.0.4

库链接:https://pypi.org/project/automateboringstuff1stedition/

库简介:This package installs the modules used in "Automate the Boring Stuff with Python", 1st Edition.

库名:garser 1.1

库链接:https://pypi.org/project/garser/

库简介:A HTML Parser

库名:hcaptcha-challenger 0.0.1.2

库链接:https://pypi.org/project/hcaptcha-challenger/

库简介: Gracefully face hCaptcha challenge with Yolov5(ONNX) embedded solution.

库名:nerodia 0.14.1

库链接:https://pypi.org/project/nerodia/

库简介:Python port of WATIR https://github.com/watir/watir

库名:webdry 0.2

库链接:https://pypi.org/project/webdry/

库简介:A set of functions for minimalistic interaction with Selenium WebDriver.

库名:PyPCOM 1.3.0

库链接:https://pypi.org/project/pypcom/

库简介:Python Page Component Object Model for Selenium

库名:django-germanium 2.3.5

库链接:https://pypi.org/project/django-germanium/

库简介:Helpful methods for Python Selenium and REST testing

库名:mpathways_driver 0.1.2

库链接:https://pypi.org/project/mpathways-driver/

库简介:A wrapper around Selenium to enable automation in MPathways.

库名:hecate 0.1.0

库链接:https://pypi.org/project/hecate/

库简介:A selenium style testing library for console applications

库名:kb_transaction 0.0.3.1

库链接:https://pypi.org/project/kb-transaction/

库简介:Crawling KB bank transaction with IE Selenium

库名:youtube-upload-monetization 1.4

库链接:https://pypi.org/project/youtube-upload-monetization/

库简介:Uploads videos to youtube through the use of selenium

库名:testnado 1.0.3

库链接:https://pypi.org/project/testnado/

库简介:Tornado test helpers and Selenium testing with Tornado

库名:helium-h5 0.0.1

库链接:https://pypi.org/project/helium-h5/

库简介:Lighter browser automation based on Selenium and Helium.

库名:alright 2.3

库链接:https://pypi.org/project/alright/

库简介:Python wrapper for WhatsApp web based on selenium

库名:basic-web-scraper 0.13.7

库链接:https://pypi.org/project/basic-web-scraper/

库简介:Basic Web Scraper made with selenium and bs4

库名:eaiautomatontools 1.1.7

库链接:https://pypi.org/project/eaiautomatontools/

库简介:UI utilities in order to abstract selenium commands

库名:wenbot 0.0.9

库链接:https://pypi.org/project/wenbot/

库简介:Simple bot wrapper of selenium basic functions

库名:selpy 0.1.1

库链接:https://pypi.org/project/selpy/

库简介:Package to hold driver and locator methods for selenium

库名:yahooauction-bidder 0.0.8

库链接:https://pypi.org/project/yahooauction-bidder/

库简介:programmable bidding system by wrapping selenium & chrome

库名:sl_postbot 0.3.0

库链接:https://pypi.org/project/sl-postbot/

库简介:selenium post bot for when you're away

库名:srt-deepl 0.9.0

库链接:https://pypi.org/project/srt-deepl/

库简介:Traslate a .SRT file using DeepL and Selenium.

库名:pybrowserstack 0.1.6

库链接:https://pypi.org/project/pybrowserstack/

库简介:Framework for running unit tests with Selenium on Browserstack

库名:gooise 2020.7.18.8

库链接:https://pypi.org/project/gooise/

库简介:Search for similar images on Google using Selenium

库名:pywappalyzer 0.1.1

库链接:https://pypi.org/project/pywappalyzer/

库简介:Easy identify site's technologies.json

库名:rarbgcli 0.0.14

库链接:https://pypi.org/project/rarbgcli/

库简介:Command line interface for rarbg.to

库名:gppt 2.1.2

库链接:https://pypi.org/project/gppt/

库简介:Get your Pixiv token (for running upbit/pixivpy)

库名:news-fetch 0.2.8

库链接:https://pypi.org/project/news-fetch/

库简介:news-fetch is an open source easy-to-use news extractor and basic nlp (cleaning_text, keywords, summary) comes handy that just works

库名:easy-chrome-driver 0.0.2

库链接:https://pypi.org/project/easy-chrome-driver/

库简介:Abstraction for chrome driver for easy modifications

库名:dvk-archive 0.13.2

库链接:https://pypi.org/project/dvk-archive/

库简介:Utility for loading and handling media files in the DVK file format.

库名:geeup 0.5.7

库链接:https://pypi.org/project/geeup/

库简介:Simple Client for Earth Engine Uploads

库名:ezscrape 0.4

库链接:https://pypi.org/project/ezscrape/

库简介:Collection of Scraping tools

库名:python-pisces 0.0.5

库链接:https://pypi.org/project/python-pisces/

库简介:Use keywords to search for and download images.

库名:ys-dl 0.1.2

库链接:https://pypi.org/project/ys-dl/

库简介:Command-line program to download images from Genshin Impact Community

库名:ptest 2.0.3

库链接:https://pypi.org/project/ptest/

库简介:light test framework for Python

库名:econuy 0.22.2

库链接:https://pypi.org/project/econuy/

库简介:Wrangling Uruguayan economic data so you don't have to.

库名:behave_base_library 0.1.5

库链接:https://pypi.org/project/behave-base-library/

库简介:Base files for any behave automation project

库名:dc-django-base 0.6.3

库链接:https://pypi.org/project/dc-django-base/

库简介:Django base application

库名:dc-campaign-finance-scrapers 0.5.1

库链接:https://pypi.org/project/dc-campaign-finance-scrapers/

库简介:Provides data from http://www.ocf.dc.gov/serv/download.asp in a nicer way

库名:operun.contactform 1.0.0a4

库链接:https://pypi.org/project/operun-contactform/

库简介:A Plone Contact-Form Add-On.

库名:tc-player 1.0.1

库链接:https://pypi.org/project/tc-player/

库简介:A Time Clickers automaton.

库名:paybybot 0.0.4

库链接:https://pypi.org/project/paybybot/

库简介:Notifications for https://www.paybyphone.fr/

库名:label-wrapper 0.1.2

库链接:https://pypi.org/project/label-wrapper/

库简介:User friendly image bootstraping framework.

库名:twerk 0.0.3

库链接:https://pypi.org/project/twerk/

库简介:Make Twitter work for humans by blocking fake accounts.

库名:autowebgl 0.3.5

库链接:https://pypi.org/project/autowebgl/

库简介:Automation Tool for WebGL based Projects

库名:ednevnik 0.0.5

库链接:https://pypi.org/project/ednevnik/

库简介:A very basic E-Dnevnik API.

库名:8a-scraper 0.0.4

库链接:https://pypi.org/project/8a-scraper/

库简介:A Python client for scraping data from 8a.nu

库名:getbib 1.0.7

库链接:https://pypi.org/project/getbib/

库简介:Pulls an author's bibliography from Westlaw.

库名:whatsappening-cli 1.3.0

库链接:https://pypi.org/project/whatsappening-cli/

库简介:A WhatsApp activity tracker

库名:pytest-krtech-common 0.1.35

库链接:https://pypi.org/project/pytest-krtech-common/

库简介:pytest krtech common library

库名:chromedriver-binary-auto 0.1.2

库链接:https://pypi.org/project/chromedriver-binary-auto/

库简介:Installer for chromedriver.

库名:chromedriver-binary-auto 0.1.2

库链接:https://pypi.org/project/chromedriver-binary-auto/

库简介:Installer for chromedriver.

库名:airobots 1.2.2

库链接:https://pypi.org/project/airobots/

库简介:UI Test Automation Framework for Games and Apps on Android/iOS/Windows/Linux/Web

库名:smart-webdriver-manager 0.3.0

库链接:https://pypi.org/project/smart-webdriver-manager/

库简介:A smart webdriver and browser manager

库名:weeb-guidance 1.0.4

库链接:https://pypi.org/project/weeb-guidance/

库简介:A random anime episode selector

库名:rallf 0.4.5

库链接:https://pypi.org/project/rallf/

库简介:rallf.com Software Development Kit (SDK)

库名:thameswater 0.5

库链接:https://pypi.org/project/thameswater/

库简介:An application for dowloading daily water usage data from Thames Water (UK).

库名:gaunit 0.5.4

库链接:https://pypi.org/project/gaunit/

库简介:Testing Google Analytics implementations within CI pipelines

库名:rtsf-app 1.2.3

库链接:https://pypi.org/project/rtsf-app/

库简介:only for android ui test, base on rtsf

库名:ytb-up 0.1.15

库链接:https://pypi.org/project/ytb-up/

库简介:auto video machine,Upload videos to YouTube using geckodriver, Firefox profiles and Selenium/playwright.

库名:pydude 0.22.0

库链接:https://pypi.org/project/pydude/

库简介:dude uncomplicated data extraction

库名:django_seleniumhelpers 1.1.2

库链接:https://pypi.org/project/django-seleniumhelpers/

库简介:Extends django.test.LiveServerTestCase to make selenium testing even easier.

库名:scrapqd 1.0.1b0

库链接:https://pypi.org/project/scrapqd/

库简介:Scrape query definition intends to eliminate backend process of crawling and focus on xpath needed to get data. Library queries are developed using graphql-core library.

库名:humanframework 0.6.2

库链接:https://pypi.org/project/humanframework/

库简介:Human Framework: Test Automation Framework for Humans

库名:tq-scroll-scrape 3.0

库链接:https://pypi.org/project/tq-scroll-scrape/

库简介:TQ-scroll-scrape is a library for downloading web pages via Selenium.

库名:ukrainian 0.0.3

库链接:https://pypi.org/project/ukrainian/

库简介:Manipulate Ukrainain words and letters.

库名:robotframework-ioslibrary 0.2.0

库链接:https://pypi.org/project/robotframework-ioslibrary/

库简介:Robot Framework Automation Library for iOS

库名:auto-openvpn 1.0.6

库链接:https://pypi.org/project/auto-openvpn/

库简介:One command OpenVPN free account

库名:pywebcapture 0.0.3

库链接:https://pypi.org/project/pywebcapture/

库简介:A package that allows users to capture full-page screenshots of websites using Selenium and Chrome webdriver.

库名:round-nutrition 1.0.8

库链接:https://pypi.org/project/round-nutrition/

库简介:Round nutritional values for federal compliance.

库名:fasttest 1.0.1

库链接:https://pypi.org/project/fasttest/

库简介:关键字驱动自动化框架

库名:pytest_sauce 0.3.3

库链接:https://pypi.org/project/pytest-sauce/

库简介:pytest_sauce provides sane and helpful methods worked

out in clearcode to run py.test tests with selenium/saucelabs

库名:chromedriver-binary 104.0.5112.29.0

库链接:https://pypi.org/project/chromedriver-binary/

库简介:Installer for chromedriver.

库名:competitive-dl 1.0.0

库链接:https://pypi.org/project/competitive-dl/

库简介:Download any problem/problem set from any contest/archives from any competitive website as PDF !

库名:htp-client 0.5.3

库链接:https://pypi.org/project/htp-client/

库简介:Make a Hecks engine using the HTP protocol play on the hecks.space website

库名:photosifter 0.1.3

库链接:https://pypi.org/project/photosifter/

库简介:Photo sifter is a simple application, written in Python, for smooth photo sifting and comparison.

库名:etudier 0.1.1

库链接:https://pypi.org/project/etudier/

库简介:Collect a citation graph from Google Scholar

库名:el-compX-scraper 0.1.7

库链接:https://pypi.org/project/el-compx-scraper/

库简介:This package scrapes features of elements and compounds from specified websites

库名:pdpc-decisions 1.3.2

库链接:https://pypi.org/project/pdpc-decisions/

库简介:Tools to extract and compile enforcement decisions from the Singapore Personal Data Protection Commission

库名:robotframework-zebrunner 0.2.0

库链接:https://pypi.org/project/robotframework-zebrunner/

库简介:Robotframework connector for Zebrunner reporting

库名:dc-campaign-finance-scraper 0.6.2

库链接:https://pypi.org/project/dc-campaign-finance-scraper/

库简介:Provides data from http://www.ocf.dc.gov/serv/download.asp in a nicer way

库名:browserstack-local 1.2.3

库链接:https://pypi.org/project/browserstack-local/

库简介:Python bindings for Browserstack Local

库名:Huxley 0.5

库链接:https://pypi.org/project/huxley/

库简介:Watches you browse, takes screenshots, tells you when they change.

库名:guess-logo 0.0.8

库链接:https://pypi.org/project/guess-logo/

库简介:Detect logo url for any website.

库名:facebookHandler 0.1

库链接:https://pypi.org/project/facebookhandler/

库简介:A python library made with selenium to control a facebook account without the use of the offical API

库名:palladium-python 1.0.1

库链接:https://pypi.org/project/palladium-python/

库简介:Common utility functions.

库名:instaling-solver 1.0

库链接:https://pypi.org/project/instaling-solver/

库简介:instaling-solver is a small project that automates the process of answering instaling.pl questions.

库名:testai-classifier 1.1.0

库链接:https://pypi.org/project/testai-classifier/

库简介:This is a client for the Test.ai classifier RPC server, which allows direct use of the classifier via a Python API and also provides a helper method for use with Selenium.

库名:TRH 2.1

库链接:https://pypi.org/project/trh/

库简介:TypeRacer and MonkeyType Hack using Selenium Chromium Webdriver and BeatifulSoup Web Scraping.

库名:kata_scrape 0.2.2

库链接:https://pypi.org/project/kata-scrape/

库简介:A simple client for scraping Codewars katas

库名:igbot 0.2.1

库链接:https://pypi.org/project/igbot/

库简介:This Package will help you to automate Instagram Tasks. It uses selenium.

库名:devtools-proxy 0.1.0

库链接:https://pypi.org/project/devtools-proxy/

库简介:DevTools Proxy

库名:simplesauce 0.1.0

库链接:https://pypi.org/project/simplesauce/

库简介:Python bindings of the simple_sauce library

库名:leetscraper 2.3.0

库链接:https://pypi.org/project/leetscraper/

库简介:A coding challenge scraper for leetcode, and other websites!

库名:selepy 0.3

库链接:https://pypi.org/project/selepy/

库简介:Browser automation framework

库名:saucebindings 1.3.0

库链接:https://pypi.org/project/saucebindings/

库简介:Sauce Labs Python bindings library

库名:ui_navigate 1.0.2

库链接:https://pypi.org/project/ui-navigate/

库简介:UI navigation library for automation

库名:grocery-helpers 0.2

库链接:https://pypi.org/project/grocery-helpers/

库简介:Selenium-based Python API for online grocery retailers.

库名:mkdocs-pdf-with-js-plugin 0.1.3

库链接:https://pypi.org/project/mkdocs-pdf-with-js-plugin/

库简介:A MkDocs plugin that exports your documentation as PDF with rendered JavaScript content.

库名:knitter 1.0.0

库链接:https://pypi.org/project/knitter/

库简介:A Web Automation Test Framework Based On Selenium WebDriver

库名:screenlly 0.0.10

库链接:https://pypi.org/project/screenlly/

库简介:Get and compare screenshots tool based on Selenium and ImageMagick

库名:pomade 0.0.4

库链接:https://pypi.org/project/pomade/

库简介:Selenium PageObjects implementation with easy Sauce Labs integration

库名:instaclient 2.9.20

库链接:https://pypi.org/project/instaclient/

库简介:Instagram client built with Python 3.8 and the Selenium package.

库名:orbi-dnsmasq 2.0.0

库链接:https://pypi.org/project/orbi-dnsmasq/

库简介:Use selenium and telnet to automate orbi router's dnsmasq

库名:web-downloader 0.0.8

库链接:https://pypi.org/project/web-downloader/

库简介:A Python package using Selenium to download web content

库名:get-pybrowser 0.2.0

库链接:https://pypi.org/project/get-pybrowser/

库简介:Selenium based, user friendly Browser Automation API

库名:django-teamcity 0.1.2

库链接:https://pypi.org/project/django-teamcity/

库简介:send test result to TeamCity and provide Selenium support

库名:gnomadapi 1.0.3

库链接:https://pypi.org/project/gnomadapi/

库简介:selenium wrapper to access gnomad db from the cmd

库名:golem-framework 0.10.1

库链接:https://pypi.org/project/golem-framework/

库简介:Test automation framework for functional tests using Selenium

库名:nemonet 0.8.3

库链接:https://pypi.org/project/nemonet/

库简介:Visual testing framework. Combining selenium and computer vision.

库名:robot-axelibrary 0.1.8

库链接:https://pypi.org/project/robot-axelibrary/

库简介:Robot Framework Library wrapper axe-selenium-python

库名:qacode 0.6.5

库链接:https://pypi.org/project/qacode/

库简介:Main automation library to wrap selenium and automate webs

库名:webdriver-pool 1.0.1

库链接:https://pypi.org/project/webdriver-pool/

库简介:A package for building Webdriver Pool when using Selenium

库名:waybackshot 0.2.1

库链接:https://pypi.org/project/waybackshot/

库简介:A simple API to retrieve screenshots of webpages stored on the Wayback Machine.

库名:understory 0.0.363

库链接:https://pypi.org/project/understory/

库简介:Social web framework

库名:Avanza 0.0.13

库链接:https://pypi.org/project/avanza/

库简介:Python wrapper for Unofficial Avanza API

库名:ta-tooling 0.3.1

库链接:https://pypi.org/project/ta-tooling/

库简介:Various tools for TA

库名:scrawler-itau 0.2.2

库链接:https://pypi.org/project/scrawler-itau/

库简介:Extrator de dados bancários do Itaú utilizando Selenium

库名:spyderDergiPark 0.0.9

库链接:https://pypi.org/project/spyderdergipark/

库简介:A Python library that enables downloading articles from DergiPark (https://dergipark.org.tr) related to a topic or a search phrase.

库名:simpletwitter 1.2.8

库链接:https://pypi.org/project/simpletwitter/

库简介:Python package for making twitter bot with less code

库名:edupage-api 0.9.986

库链接:https://pypi.org/project/edupage-api/

库简介:A python library for accessing your Edupage account

库名:robotframework-sofrecomappiumlibrary 1.0.1

库链接:https://pypi.org/project/robotframework-sofrecomappiumlibrary/

库简介:app testing library for Robot Framework

库名:bemo 0.0.2

库链接:https://pypi.org/project/bemo/

库简介:It's simple way to mock your back-end from webdriver UI tests

库名:flight_arbitrage 1.0.0

库链接:https://pypi.org/project/flight-arbitrage/

库简介:Finds arbitrage in plane ticket prices

库名:schedule-tweet 1.0.0

库链接:https://pypi.org/project/schedule-tweet/

库简介:Schedules tweets using TweetDeck

库名:bought 0.1.5

库链接:https://pypi.org/project/bought/

库简介:A bot that purchases items, rendering them bought.

库名:autoscab 0.3.2

库链接:https://pypi.org/project/autoscab/

库简介:apply for many of the same job

库名:understatapi 0.5.2

库链接:https://pypi.org/project/understatapi/

库简介:An API for scraping data from understat.com

库名:finance-dl 1.3.3

库链接:https://pypi.org/project/finance-dl/

库简介:Tools for scraping personal financial data.

库名:pyte-prism 0.0.4

库链接:https://pypi.org/project/pyte-prism/

库简介:A Page Object Model DSL for Python, inspired by Ruby SitePrism

库名:pynsta 1.0.0

库链接:https://pypi.org/project/pynsta/

库简介:A module for doing cool stuff with various websites, currently only operational for Instagram.

库名:lnpbp-testkit 0.1.1

库链接:https://pypi.org/project/lnpbp-testkit/

库简介:A framework for writing automated tests of applications using LNP/BP

库名:app-settings 1.4.4

库链接:https://pypi.org/project/app-settings/

库简介:YAML for application configuration, lite version (inspired by Ruby gem "config")

库名:OpenSeaScripts 1.2.3

库链接:https://pypi.org/project/openseascripts/

库简介:Scripts for automating OpenSea operations

库名:facebook-crawler 0.0.28

库链接:https://pypi.org/project/facebook-crawler/

库简介:Facebook crawler package can help you crawl the posts on public fanspages and groups from Facebook.

库名:pytoolbox 14.2.0

库链接:https://pypi.org/project/pytoolbox/

库简介:Toolbox for Python scripts

库名:igpicker 0.4.4

库链接:https://pypi.org/project/igpicker/

库简介:WebScraping_Instagram

库名:QWeb 2.0.2

库链接:https://pypi.org/project/qweb/

库简介:Keyword driven automation for the web

库名:django-admin-timeline 1.8

库链接:https://pypi.org/project/django-admin-timeline/

库简介:Facebook-like timeline for Django admin

库名:pydude-pyto 0.21.0

库链接:https://pypi.org/project/pydude-pyto/

库简介:dude uncomplicated data extraction

库名:facebook-scraper 0.2.57

库链接:https://pypi.org/project/facebook-scraper/

库简介:Scrape Facebook public pages without an API key

库名:iplotter 0.4.3

库链接:https://pypi.org/project/iplotter/

库简介:JavaScript Charting for iPython/Jupyter notebooks

库名:Wappium-Python-Client 1.0

库链接:https://pypi.org/project/wappium-python-client/

库简介:Python client for Wappium 1.6

库名:Appium-UIAutomation 0.1.0

库链接:https://pypi.org/project/appium-uiautomation/

库简介:A handy tool based on Appium-Python to write common UIAutomation test cases (for both iOS and Android) easily.

库名:seleniumslicer 0.0.3

库链接:https://pypi.org/project/seleniumslicer/

库简介:Given selenium drive and elements. Extract the element screen capture

库名:seleniumwebui 1.0.5

库链接:https://pypi.org/project/seleniumwebui/

库简介:selenium-web-ui-test-tool, need pywin32 for selenium3

库名:django-tools 0.50.0

库链接:https://pypi.org/project/django-tools/

库简介:miscellaneous tools for Django based projects

库名:infinite-image-downloader 1.0.0

库链接:https://pypi.org/project/infinite-image-downloader/

库简介:a python library for automatically downloading requested number of images from Google image search by one keyword

库名:scrapy-save-as-pdf 0.2.1

库链接:https://pypi.org/project/scrapy-save-as-pdf/

库简介:Pipeline to Download PDF or Save page as PDF for scrapy item

库名:livingdocs 0.2.0

库链接:https://pypi.org/project/livingdocs/

库简介:Create living documentation from BDD specs

库名:nyuclassesdl 1.3.0

库链接:https://pypi.org/project/nyuclassesdl/

库简介:a python library for automatically downloading files from NYU Classes

库名:virtualbox-helper 0.1.2

库链接:https://pypi.org/project/virtualbox-helper/

库简介:Start and control a virtualbox machine

库名:vquest 0.0.9

库链接:https://pypi.org/project/vquest/

库简介:Automate IMGT V-QUEST usage on imgt.org

库名:muzak2yt 1.0.2

库链接:https://pypi.org/project/muzak2yt/

库简介:Upload your favorite music albums directly to YouTube !

库名:wd 1.0.1

库链接:https://pypi.org/project/wd/

库简介:Macaca Python Client

库名:Captcha-Impulse 0.0.9

库链接:https://pypi.org/project/captcha-impulse/

库简介:hCaptcha bypass with yolov5

库名:django-template-obfuscator 0.1.5

库链接:https://pypi.org/project/django-template-obfuscator/

库简介:Obfuscates desired content in a Django template in order to be difficult to scrape

库名:wiki-tools 1.0.10

库链接:https://pypi.org/project/wiki-tools/

库简介:A collections for tools helping wikipedia editing

库名:twitter-archive 0.0.2

库链接:https://pypi.org/project/twitter-archive/

库简介:A Suite of Twitter Archival Tools

库名:robotframework-RobotOil 0.0.3

库链接:https://pypi.org/project/robotframework-robotoil/

库简介:Quality of life upgrades for common-use Keywords in the Robot Framework and SeleniumLibrary packages.

库名:django-secure-js-login 0.2.0

库链接:https://pypi.org/project/django-secure-js-login/

库简介:JavaScript Challenge-handshake authentication django app

库名:pytest-seleniumbase 3.5.5

库链接:https://pypi.org/project/pytest-seleniumbase/

库简介:A complete web automation framework for end-to-end testing.

库名:seleniumbase 3.5.5

库链接:https://pypi.org/project/seleniumbase/

库简介:A complete web automation framework for end-to-end testing.

库名:pytest-parallel 0.1.1

库链接:https://pypi.org/project/pytest-parallel/

库简介:a pytest plugin for parallel and concurrent testing

库名:squp 0.1.8

库链接:https://pypi.org/project/squp/

库简介:A backend engine for Squarespace that uses splinter/selenium for automated data entry

库名:pySEI 1.0.23

库链接:https://pypi.org/project/pysei/

库简介:Pacote para interagir com o SEI

库名:webscrapetools 0.5.5

库链接:https://pypi.org/project/webscrapetools/

库简介:A basic but fast, persistent and threadsafe caching system

库名:replicateETF 0.0.16

库链接:https://pypi.org/project/replicateetf/

库简介:A package that replicates an ETFs by buying the underlying assets

库名:nisanyan-cli 0.3.1

库链接:https://pypi.org/project/nisanyan-cli/

库简介:CLI tool for Turkish etymological dictionary, nisanyansozluk.com (nis )

库名:pytest-parallel-39 0.1.0

库链接:https://pypi.org/project/pytest-parallel-39/

库简介:a pytest plugin for parallel and concurrent testing

库名:django-cms-forms 0.1.2

库链接:https://pypi.org/project/django-cms-forms/

库简介:Set of Django CMS plugins for creating forms

库名:seledroid 1.1.0

库链接:https://pypi.org/project/seledroid/

库简介:simple python module to control browser but for android

库名:netease-appiumlibrary 1.3.5

库链接:https://pypi.org/project/netease-appiumlibrary/

库简介:app testing library for Robot Framework

库名:moneycontrolPy 0.0.5

库链接:https://pypi.org/project/moneycontrolpy/

库简介:A python API for Money Control Forum

库名:pytest-zebrunner 1.5.6

库链接:https://pypi.org/project/pytest-zebrunner/

库简介:Pytest connector for Zebrunner reporting

库名:PyInq 0.2.1

库链接:https://pypi.org/project/pyinq/

库简介:Python unit test framework, an alternative to unittest.

库名:matchers 0.22

库链接:https://pypi.org/project/matchers/

库简介:Collection of highly reusable hamcrest matchers

库名:PyMedium 1.0.3

库链接:https://pypi.org/project/pymedium/

库简介:PyMedium - Unofficial Medium API

库名:easy-images-downloader 0.0.6.3

库链接:https://pypi.org/project/easy-images-downloader/

库简介:Download hundreds of images from Google. Do image post processing later.

库名:django-externaltestserver 0.2.5

库链接:https://pypi.org/project/django-externaltestserver/

库简介:Run your Django selenium tests against an external server

库名:pyseleniumjs 1.3.8

库链接:https://pypi.org/project/pyseleniumjs/

库简介:Small library with javascript utilities for official Python selenium bindings.

库名:Eugenium 0.0.3

库链接:https://pypi.org/project/eugenium/

库简介:Classes to create and deploy selenium processes on google cloud platform

库名:CSelenium 0.0.7

库链接:https://pypi.org/project/cselenium/

库简介:Simplify native Selenium operations to locate elements in a shorter manner

库名:cookie-helper 1.0

库链接:https://pypi.org/project/cookie-helper/

库简介:the easy way to save and load cookies while using selenium.

库名:PySelenium 1.0.2

库链接:https://pypi.org/project/pyselenium/

库简介:A wrapper for Selenium to allow easy development of automated tests for the web

库名:vom 2.0.0

库链接:https://pypi.org/project/vom/

库简介:An opinionated framework for writing page objects for selenium tests/scripts

库名:SuperMiner 22.3.1.2

库链接:https://pypi.org/project/superminer/

库简介:Web miner built based on selenium but more simple operations

库名:germanium 2.0.12

库链接:https://pypi.org/project/germanium/

库简介:The germanium project: Selenium WebDriver testing API that doesn't disappoint.

库名:robotkernel 1.5.1

库链接:https://pypi.org/project/robotkernel/

库简介:A Jupyter kernel for interactive acceptance-test-driven development with the Robot Framework

库名:django-admin-ext 1.0.2

库链接:https://pypi.org/project/django-admin-ext/

库简介:Extensions to Django's admin site to add an ajax view.

库名:lyingOn 0.1.3

库链接:https://pypi.org/project/lyingon/

库简介:躺着敲代码

库名:python-pom 1.0.7

库链接:https://pypi.org/project/python-pom/

库简介:POM is Page-Object-Model microframework to develop web UI tests easy, quickly and with pleasure.

库名:CysgnusX1 1.0.1

库链接:https://pypi.org/project/cysgnusx1/

库简介:A multithreaded tool for searching and downloading images from popular search engines. It is straightforward to set up and run!

库名:fbadmin 0.1.0.5

库链接:https://pypi.org/project/fbadmin/

库简介:A python library to automate facebook group administration

库名:hitch 0.5.7

库链接:https://pypi.org/project/hitch/

库简介:Bootstrapper for hitchtest - the loosely coupled integration testing framework

库名:automonisaur 0.2.24

库链接:https://pypi.org/project/automonisaur/

库简介:Core libraries for automonisaur

库名:recho 1.0.2

库链接:https://pypi.org/project/recho/

库简介:repost Reddit activity from a user to Slack in near-realtime

库名:uims-api 0.1.2

库链接:https://pypi.org/project/uims-api/

库简介:A Python library to access information via https://uims.cuchd.in

库名:sps_automation 0.12

库链接:https://pypi.org/project/sps-automation/

库简介:A simple wrapper for some common automation tasks for school system data departments.

库名:haruki 0.1

库链接:https://pypi.org/project/haruki/

库简介:Declarative scraping for Python

库名:webdrivermanager 0.10.0

库链接:https://pypi.org/project/webdrivermanager/

库简介:Module for facilitating download and deploy of WebDriver binaries.

库名:wordlerer 0.1.1

库链接:https://pypi.org/project/wordlerer/

库简介:Wordlerer can automatically solve wordle puzzle in the browser.

库名:lib-browser 0.0.0

库链接:https://pypi.org/project/lib-browser/

库简介:简介无内容

库名:pysweet 1.1.3

库链接:https://pypi.org/project/pysweet/

库简介:高效率测试开发集成框架

库名:py-custom-driver-installer 0.0.1

库链接:https://pypi.org/project/py-custom-driver-installer/

库简介:Installs a webdriver from a specified resource/url and returns the path where the file was installed (zip files only)

库名:Discord-Tools 2.1

库链接:https://pypi.org/project/discord-tools/

库简介:Simulates Discord User using Selenium(Web-Scraping) Chromium-webdriver

库名:WeReadScan 0.8.4

库链接:https://pypi.org/project/wereadscan/

库简介:WeRead PDF Scanner

库名:AutoChromedriver 2.2.1

库链接:https://pypi.org/project/autochromedriver/

库简介:Downloads and unzips chromedriver to curent directory

库名:aioselenium 0.0.1

库链接:https://pypi.org/project/aioselenium/

库简介:Very basic asyncio implementation of the Selenium RemoteWebdriver using JSON Wire protocol

库名:simplelinkedin 0.2.0

库链接:https://pypi.org/project/simplelinkedin/

库简介:Python package to work with LinkedIn

库名:spydr 0.6.1

库链接:https://pypi.org/project/spydr/

库简介:Selenium Python WebDriver Wrapper - Commonly used WebDriver functionality in a package

库名:py-webdriver-manager 0.0.3

库链接:https://pypi.org/project/py-webdriver-manager/

库简介:Webdriver executable manager utility

库名:sbase 3.5.5

库链接:https://pypi.org/project/sbase/

库简介:A complete web automation framework for end-to-end testing.

库名:pytest-sbase 3.5.5

库链接:https://pypi.org/project/pytest-sbase/

库简介:A complete web automation framework for end-to-end testing.

库名:CygnusX1 1.0.4

库链接:https://pypi.org/project/cygnusx1/

库简介:A multithreaded tool for searching and downloading images from popular search engines. It is straightforward to set up and run!

库名:splinter 0.18.1

库链接:https://pypi.org/project/splinter/

库简介:browser abstraction for web acceptance testing

库名:Staxing 0.0.58

库链接:https://pypi.org/project/staxing/

库简介:Stax test base

库名:amongusbot 0.2.1

库链接:https://pypi.org/project/amongusbot/

库简介:Bot for mass-muting users in a Discord channel whenever a hotkey is pressed.

库名:BookerTrans 2021.4.9.2

库链接:https://pypi.org/project/bookertrans/

库简介:HTML Translator with Google Api for iBooker/ApacheCN

库名:paralytics 0.3.2

库链接:https://pypi.org/project/paralytics/

库简介:Python analytical scripts that will overcome paralysis in your data analysis.

库名:gym-chrome-dino 0.0.3

库链接:https://pypi.org/project/gym-chrome-dino/

库简介:Chrome Dino in OpenAI Gym

库名:pandasbots-gimbel 1.6.3

库链接:https://pypi.org/project/pandasbots-gimbel/

库简介:This package allows you to scrap Gimbel Mexicana website and return product infos.

库名:imdby 0.1.5

库链接:https://pypi.org/project/imdby/

库简介:Python package to access the IMDb's database

库名:mypapers 0.0.1

库链接:https://pypi.org/project/mypapers/

库简介:论文一体化写作神器(Python)

库名:mfperfquery 1.0.2

库链接:https://pypi.org/project/mfperfquery/

库简介:Python library for extracting certain performance parameters of Mutual Funds in India from https://moneycontrol.com

库名:dash-core-components 2.0.0

库链接:https://pypi.org/project/dash-core-components/

库简介:Core component suite for Dash

库名:bofa-scraper 0.1.3

库链接:https://pypi.org/project/bofa-scraper/

库简介:Simple Python web-scraper to get personal transaction data from BofA account.

库名:tq-recursive-scroll-scrape 3.0

库链接:https://pypi.org/project/tq-recursive-scroll-scrape/

库简介:recursive-scroll-scrape module.

库名:pytest-html-reporter 0.2.9

库链接:https://pypi.org/project/pytest-html-reporter/

库简介:Generates a static html report based on pytest framework

库名:activesoup 0.3.2

库链接:https://pypi.org/project/activesoup/

库简介:A pure-python headless browser

库名:aib2ofx 0.73.1

库链接:https://pypi.org/project/aib2ofx/

库简介:Download data from aib.ie in OFX format

库名:ynabinterfaceslib 1.0.4

库链接:https://pypi.org/project/ynabinterfaceslib/

库简介:A library implementing interfaces for institution (banks, other organizations) integrations to YNAB

库名:pyOpenRPA 1.2.13

库链接:https://pypi.org/project/pyopenrpa/

库简介:First open source RPA platform for business

库名:hands_chopping 0.3.0

库链接:https://pypi.org/project/hands-chopping/

库简介:Search goods in shopping web, It' time to chop your hands.

库名:eddy-bot 0.1.0

库链接:https://pypi.org/project/eddy-bot/

库简介:Eddy Bot is a command line interface to interact with social media. Currently supports Twitter, TikTok and Instagram.

库名:unshortenit 0.4.0

库链接:https://pypi.org/project/unshortenit/

库简介:Unshortens ad-based shorteners and any 301 redirected urls.

库名:unfollowery 2.2

库链接:https://pypi.org/project/unfollowery/

库简介:For generating Instagram followers/unfollowers of the user in a list & file (without using Instagram API)

库名:quickinfo 2.1.0

库链接:https://pypi.org/project/quickinfo/

库简介:A library that scrapes data from google webpages

库名:igym 0.0.3

库链接:https://pypi.org/project/igym/

库简介:Gym for your AI to connect with the internet and play around.

库名:slick-webdriver 1.0.66

库链接:https://pypi.org/project/slick-webdriver/

库简介:A webdriver / selenium wrapper focusing on code completion, good page class design, and logging.

库名:pyGoogleTranslate 3.6.5

库链接:https://pypi.org/project/pygoogletranslate/

库简介:A python module which lets you use Google Translate (translation, transliteration, defintion, language detection, etc.) by parsing the website.

库名:tauk 2.1.3

库链接:https://pypi.org/project/tauk/

库简介:Helper package to facilitate reporting for webdriver-based tests on Tauk

库名:pytest-invenio 1.4.11

库链接:https://pypi.org/project/pytest-invenio/

库简介:Pytest fixtures for Invenio.

库名:django-dynamic-raw-id 3.0

库链接:https://pypi.org/project/django-dynamic-raw-id/

库简介:raw_id_fields widget replacement that handles display of an object's string value on change.

库名:pytest-metadata 2.0.1

库链接:https://pypi.org/project/pytest-metadata/

库简介:pytest plugin for test session metadata

库名:wdom 0.3.1

库链接:https://pypi.org/project/wdom/

库简介:GUI library for browser-based desktop applications

库名:mufi 0.3.0

库链接:https://pypi.org/project/mufi/

库简介:Mufi: simple music finder for command-line

库名:django-ckeditor-updated 4.4.4

库链接:https://pypi.org/project/django-ckeditor-updated/

库简介:Django admin CKEditor integration.

库名:pygazpar 1.1.5

库链接:https://pypi.org/project/pygazpar/

库简介:Retrieve gas consumption from GrDF web site (French Gas Company)

库名:amo-partner-crawler 2.1.3

库链接:https://pypi.org/project/amo-partner-crawler/

库简介:SELENIUM CRAWLER FOR SCRAPING BILLING DATA FROM AMOCRM PARTNER CABINET

库名:package-track 0.2.8

库链接:https://pypi.org/project/package-track/

库简介:command line tool to track packages using gmail api and selenium

库名:webmage 0.0.25

库链接:https://pypi.org/project/webmage/

库简介:A wrapper around requests, BeautifulSoup, and Selenium (Chrome) to facilitate web scraping.

库名:webdriver-chauffeur 0.4.0

库链接:https://pypi.org/project/webdriver-chauffeur/

库简介:A helpful wrapper around the formerly annoying stuff of using Selenium Webdriver

库名:smartcrawler 0.0.3

库链接:https://pypi.org/project/smartcrawler/

库简介:Package for crawling items from webpages and store them as json file

库名:eitaa-pykit 1.2.1

库链接:https://pypi.org/project/eitaa-pykit/

库简介:简介无内容

库名:musdl 3.1.8

库链接:https://pypi.org/project/musdl/

库简介:[mus]escore [d]own[l]oader, ported from TypeScript

库名:helloparamkusham 0.0.4

库链接:https://pypi.org/project/helloparamkusham/

库简介:A Basic hello package

库名:sos-ruta 0.1

库链接:https://pypi.org/project/sos-ruta/

库简介:SoS Notebook extension for the language Apache UIMA Ruta

库名:alertscraper 0.1.7

库链接:https://pypi.org/project/alertscraper/

库简介:Flexible tool for scraping for certain certain DOM elements, and then emailing if new ones are added.

库名:cksplinter 0.17.4

库链接:https://pypi.org/project/cksplinter/

库简介:browser abstraction for web acceptance testing

库名:purelyjs 0.1.4

库链接:https://pypi.org/project/purelyjs/

库简介:A super simple testing framework for javascript

库名:tp-link-controller 0.0.2

库链接:https://pypi.org/project/tp-link-controller/

库简介:A Python Package to controll TP-Link Routers

库名:browserstep 0.1.9

库链接:https://pypi.org/project/browserstep/

库简介:Browser step provides common steps to be used by Behave for running browser tests with Selenium

库名:WaniKaniTools 0.3.0

库链接:https://pypi.org/project/wanikanitools/

库简介:Working with WaniKani API, login, and Community.

库名:universal-parser-tool 5.0.0

库链接:https://pypi.org/project/universal-parser-tool/

库简介:Useful tool to speedup testing in cp-programming

库名:webbot 0.34

库链接:https://pypi.org/project/webbot/

库简介:Web Browser automation and testing library for python with more features and simpler api than selenium

库名:xitroo-api 0.0.1

库链接:https://pypi.org/project/xitroo-api/

库简介:Xitroo Temporarily Email Api

库名:uitestframework 0.0.2

库链接:https://pypi.org/project/uitestframework/

库简介:A small package for UI testing in web applications.

库名:xvfbman 1.0.0

库链接:https://pypi.org/project/xvfbman/

库简介:A python module for managing Xvfb sessions / ensuring DISPLAY through a simple interface

库名:imgetr 1.0.0

库链接:https://pypi.org/project/imgetr/

库简介:Command line tool for downloading images from web page.

库名:mmwebbot 0.36

库链接:https://pypi.org/project/mmwebbot/

库简介:Web Browser automation and testing library for python with more features and simpler api than selenium

库名:html-form-to-dict 2022.5.4

库链接:https://pypi.org/project/html-form-to-dict/

库简介:Parse HTML to a Python Dictionary

库名:wybsel 0.5.6

库链接:https://pypi.org/project/wybsel/

库简介:Web Browser automation and testing library for python with more features and simpler api than selenium

库名:swimlane-platform 10.6.0

库链接:https://pypi.org/project/swimlane-platform/

库简介:Swimlane platform on linux. Install, Upgrade, Backups etc. All maintenance.

库名:wordle-autosolver 0.6.2

库链接:https://pypi.org/project/wordle-autosolver/

库简介:A Wordle solver that can generate near-optimal decision trees and automatically play on multiple different websites including Quordle, Fibble, and Wordzy Master

库名:botcity-framework-web 0.5.2

库链接:https://pypi.org/project/botcity-framework-web/

库简介:简介无内容

库名:nrc-exporter 0.0.7

库链接:https://pypi.org/project/nrc-exporter/

库简介:This program allows you to export your runs from Nike Run Club and convert them to GPX format

库名:django-simple-seo 1.0.3

库链接:https://pypi.org/project/django-simple-seo/

库简介:Simple SEO Module for Django

库名:autosel 0.0.6

库链接:https://pypi.org/project/autosel/

库简介:Autosel is a Python package that automates sending emails, Whatsapp text, images, videos, and audio messages along with other functionalities like creating a group and spam bot.

库名:utx 1.2.4

库链接:https://pypi.org/project/utx/

库简介:UTX will help you write ui automated tests more easily!

库名:xpath-helper 0.1.2

库链接:https://pypi.org/project/xpath-helper/

库简介:A simple and chainnable API to build complicated XPath queries without the hassle.

库名:perfectoai 1.0.35

库链接:https://pypi.org/project/perfectoai/

库简介:PerfectoAI is an automated emailable analytics tool along with AI graphs & predictions

库名:padded-sel 1.3.1

库链接:https://pypi.org/project/padded-sel/

库简介:Selenium Webdriver wrapper to make it easy to interact with page elements and handle failures in the way you want to.

库名:robotframework-angularjs 0.0.10

库链接:https://pypi.org/project/robotframework-angularjs/

库简介:An AngularJS extension to Robotframework's Selenium2Library

库名:cookietransfer 0.1.0

库链接:https://pypi.org/project/cookietransfer/

库简介:helps cookie transfer between requests session and selenium browser instance with ease

库名:pytest-sosu 0.1.3

库链接:https://pypi.org/project/pytest-sosu/

库简介:Unofficial PyTest plugin for Sauce Labs

库名:perfectoactions 2.0.30

库链接:https://pypi.org/project/perfectoactions/

库简介:A Perfecto device actions execution + reporter package

库名:facebook-page-scraper 2.0.2

库链接:https://pypi.org/project/facebook-page-scraper/

库简介:Python package to scrap facebook's pages front end with no limitations

库名:imchrome 0.2

库链接:https://pypi.org/project/imchrome/

库简介:This module provides easy to use functionalities for using selenium based chrome browser

库名:free-proxy-list 0.0.3

库链接:https://pypi.org/project/free-proxy-list/

库简介:This package is to get free proxy ips and port number for scraping and for testing on proxy.

库名:lambdatest-tunnel 0.1.2

库链接:https://pypi.org/project/lambdatest-tunnel/

库简介:Plugin to start / stop LambdaTest Tunnel for local testing

库名:eyes-robotframework 5.7.0

库链接:https://pypi.org/project/eyes-robotframework/

库简介:Applitools Python SDK. Robot Framework package

库名:robotframework-importresource-testdata 1.0

库链接:https://pypi.org/project/robotframework-importresource-testdata/

库简介:Test data package for robotframework-importresource

库名:play-store-scrapper 1.0.2

库链接:https://pypi.org/project/play-store-scrapper/

库简介:A python package to scrape data from Google Play Store using Selenium

库名:uw-webdriver-recorder 5.0.4

库链接:https://pypi.org/project/uw-webdriver-recorder/

库简介:A pytest plugin for recording screenshots of selenium interactions, with other convenient features too.

库名:shield34 1.0.408

库链接:https://pypi.org/project/shield34/

库简介:Python client for Shield34, an AI-based solution for Selenium coders who want to keep using Selenium while enjoying stability, deep analysis and much shorter test runs.

库名:plone.app.robotframework 1.5.6

库链接:https://pypi.org/project/plone-app-robotframework/

库简介:Robot Framework testing resources for Plone

库名:merengue 0.9.0

库链接:https://pypi.org/project/merengue/

库简介:Django-based CMS on steroids

库名:cmc-py-wrapper 0.1.4

库链接:https://pypi.org/project/cmc-py-wrapper/

库简介:Unofficial CoinMarketCap API and Python wrapper

库名:python-aternos 1.0.5

库链接:https://pypi.org/project/python-aternos/

库简介:An unofficial Aternos API

库名:pyscandl 2.10.0

库链接:https://pypi.org/project/pyscandl/

库简介:a scan downloader in python

库名:wishlist 0.5.3

库链接:https://pypi.org/project/wishlist/

库简介:Amazon wishlist scraper

库名:soscipy 0.0.44

库链接:https://pypi.org/project/soscipy/

库简介:A python library to help do reproducible research in social sciences

库名:webdriverdownloader2 2.0.3

库链接:https://pypi.org/project/webdriverdownloader2/

库简介:Python module and CLI tool for facilitating download and deploy of WebDriver binaries.

库名:simple-bank-korea 0.2.15

库链接:https://pypi.org/project/simple-bank-korea/

库简介:Crawling Korea bank transactions

库名:qaviton 0.1.3

库链接:https://pypi.org/project/qaviton/

库简介:python implementation of qaviton

库名:psd2svg 0.2.3

库链接:https://pypi.org/project/psd2svg/

库简介:Convert PSD file to SVG file

库名:persephone-client-py 0.0.2

库链接:https://pypi.org/project/persephone-client-py/

库简介:A Python client for the Persephone REST API

库名:gocept.amqparchive 1.3.0.post1

库链接:https://pypi.org/project/gocept-amqparchive/

库简介:Archiving, indexing and search for AMQP messages.

库名:BatchNotebook 0.0.3

库链接:https://pypi.org/project/batchnotebook/

库简介:Tools for running an IPython notebook in batch mode.

库名:pyjab 1.1.7

库链接:https://pypi.org/project/pyjab/

库简介:Python implementation for Java application UI automation with Java Access Bridge

库名:pyjab 1.1.7

库链接:https://pypi.org/project/pyjab/

库简介:Python implementation for Java application UI automation with Java Access Bridge

库名:pyOfferUp 0.2

库链接:https://pypi.org/project/pyofferup/

库简介:Scrape data from offerup.com

库名:wafermap 0.1.0

库链接:https://pypi.org/project/wafermap/

库简介:A python package to plot maps of semiconductor wafers..

库名:maximo-gui-connector 0.7.10

库链接:https://pypi.org/project/maximo-gui-connector/

库简介:Small Library that makes it easier to create scripts to automate IBM Maximo's frontend

库名:yggtorrentscraper 1.2.12

库链接:https://pypi.org/project/yggtorrentscraper/

库简介:Scraper for YggTorrent

库名:dvha 0.9.7

库链接:https://pypi.org/project/dvha/

库简介:Create a database of DVHs, GUI with wxPython, plots with Bokeh

库名:scratchback 0.2

库链接:https://pypi.org/project/scratchback/

库简介:Crawler for Proggraming Course

库名:bugbane 0.0.1

库链接:https://pypi.org/project/bugbane/

库简介:application security tools for DAST

库名:robotsuite 2.3.1

库链接:https://pypi.org/project/robotsuite/

库简介:Robot Framework test suite for Python unittest framework

库名:germaniumdrivers 2.0.12

库链接:https://pypi.org/project/germaniumdrivers/

库简介:The germanium project: Selenium WebDriver testing API that doesn't disappoint. (tested WebDrivers package)

库名:wqrfnium 0.3.0

库链接:https://pypi.org/project/wqrfnium/

库简介:to fix the selenium error which caused by ui change,wqrfnium can find element!

库名:dash-escher 0.0.4

库链接:https://pypi.org/project/dash-escher/

库简介:A Plotly Dash component for EscherPy, a metabolic flux viewer.

库名:talqual 0.0.2

库链接:https://pypi.org/project/talqual/

库简介:TAL Chameleon (static site generator)

库名:dash-useful-components 0.1.0

库链接:https://pypi.org/project/dash-useful-components/

库简介:Additional useful components for Dash

库名:exfill 0.1.29

库链接:https://pypi.org/project/exfill/

库简介:A small app to grab job postings from online job boards

库名:extensiveautomation-agent 16.1.0

库链接:https://pypi.org/project/extensiveautomation-agent/

库简介:Remote agent for the extensiveautomation server

库名:django-nested-admin 3.4.0

库链接:https://pypi.org/project/django-nested-admin/

库简介:Django admin classes that allow for nested inlines

库名:sportyfin 1.0.7

库链接:https://pypi.org/project/sportyfin/

库简介:Scrapes popular streaming sites and compiles m3u/xml files for viewing.

库名:django-opuspolls 0.1

库链接:https://pypi.org/project/django-opuspolls/

库简介:"Um simples aplicativo Django para conduzir pesquisas baseadas na Web."

库名:parabot 1.0.2

库链接:https://pypi.org/project/parabot/

库简介:Execute robotframework test files/tests in paralel, even without special preparation of them

库名:NBA-AllTimePTS-API 0.0.6

库链接:https://pypi.org/project/nba-alltimepts-api/

库简介:Data about the NBA All-Time points leaders table.

库名:collective.zombiedoctesting 1.1.0

库链接:https://pypi.org/project/collective-zombiedoctesting/

库简介:Fast functional JavaScript testing with Zombie.js

库名:webtraversallibrary 0.13.2

库链接:https://pypi.org/project/webtraversallibrary/

库简介:Abstractions of web interactions

库名:RYMTracks 0.1.4

库链接:https://pypi.org/project/rymtracks/

库简介:RYMTracks scraps given URLs and presents tracklists into copypasteable form for RateYourMusic.com

库名:animepahe-dlr 0.2.1

库链接:https://pypi.org/project/animepahe-dlr/

库简介:A python script to automate downloads from animepahe

库名:smoothtest 0.3.6

库链接:https://pypi.org/project/smoothtest/

库简介:General purpose Testing Utilities and also special testing tools for for Web Applications

库名:image-caption-scraper 0.0.2

库链接:https://pypi.org/project/image-caption-scraper/

库简介:A small example package

库名:jigna 0.10.1

库链接:https://pypi.org/project/jigna/

库简介:HTML frontend for Traits models.

库名:wirecloud 1.3.1

库链接:https://pypi.org/project/wirecloud/

库简介:Widgets Container and Mashup edition tools for composing end-user centric mashup applications.

库名:github-pr-form 0.1.1

库链接:https://pypi.org/project/github-pr-form/

库简介:A small python utility for generating forms from the command line and adding them to GitHub pull requests or issues, while tracking them in a secondary github repo.

库名:denarius 2018.9.14.1432

库链接:https://pypi.org/project/denarius/

库简介:currency and other utilities

库名:yt-videos-list 0.6.3

库链接:https://pypi.org/project/yt-videos-list/

库简介:YouTube bot to make a YouTube videos list (including all video titles and URLs uploaded by a channel) with end-to-end web scraping - no API tokens required. Star this repo if you found it useful!

库名:real-estate 0.1.0

库链接:https://pypi.org/project/real-estate/

库简介:Package to scrape and analise data from real estate sites in Brazil

库名:web-playground 0.0.1

库链接:https://pypi.org/project/web-playground/

库简介:Demo web application for testing purposes

库名:MeetBot 0.1

库链接:https://pypi.org/project/meetbot/

库简介:A Sinple Google Meet Bot

库名:digly 0.1.0

库链接:https://pypi.org/project/digly/

库简介:Tool for automated Instagram interactions

库名:snapstreak-revive 0.0.1

库链接:https://pypi.org/project/snapstreak-revive/

库简介:Automatically enters required information on the Snapchat support website to retrieve snapstreaks.

库名:igls 1.0.0

库链接:https://pypi.org/project/igls/

库简介:Instagram Likes Web Scraper.

库名:mailosaur 7.12.0

库链接:https://pypi.org/project/mailosaur/

库简介:The Mailosaur Python library lets you integrate email and SMS testing into your continuous integration process.

库名:ImageExtractor 1.2.1

库链接:https://pypi.org/project/imageextractor/

库简介:ImageExtractor library is useful to help the user download any kind of Images at any date and time over the internet. These images will get downloaded as a job and then let user know that the images have been downloaded.

库名:pomace 0.10.6

库链接:https://pypi.org/project/pomace/

库简介:Dynamic page objects for browser automation.

库名:perftrackerlib 0.1.7

库链接:https://pypi.org/project/perftrackerlib/

库简介:Python package with perftracker client, tools, tests and libraries

库名:pyramid_robot 1.1

库链接:https://pypi.org/project/pyramid-robot/

库简介:Convenience package for enable RobotFramework tests under Pyramid.

库名:webpage-image-downloader 0.1.2

库链接:https://pypi.org/project/webpage-image-downloader/

库简介:Tool for extracting and saving specific images from websites.

库名:tir-framework 1.18.5

库链接:https://pypi.org/project/tir-framework/

库简介:TOTVS Interface Robot

库名:saddle 0.1.1

库链接:https://pypi.org/project/saddle/

库简介:Functional testing framework.

库名:MeetJoin 0.3

库链接:https://pypi.org/project/meetjoin/

库简介:A Sinple Google Meet Bot

库名:robotframework-pageobjects 1.3.3

库链接:https://pypi.org/project/robotframework-pageobjects/

库简介:UNKNOWN

库名:flypper 0.1.7

库链接:https://pypi.org/project/flypper/

库简介:Flypper is a lightweight feature flag package that ships with a WSGI interface.

库名:stopots-bot 1.2.0

库链接:https://pypi.org/project/stopots-bot/

库简介:auto play stopots

库名:py2exe 0.11.1.1

库链接:https://pypi.org/project/py2exe/

库简介:Build standalone executables for Windows

库名:job-hunting 0.2.8

库链接:https://pypi.org/project/job-hunting/

库简介:Package that automate selection and subscription of jobs

库名:webdriverdownloader 1.1.0.3

库链接:https://pypi.org/project/webdriverdownloader/

库简介:Python module and CLI tool for facilitating download and deploy of WebDriver binaries.

库名:spotifyscraper 1.0.5

库链接:https://pypi.org/project/spotifyscraper/

库简介:Spotify Web Player Scraper using python, scrape and download song and cover from Spotify.

库名:pyfiction 0.1.3

库链接:https://pypi.org/project/pyfiction/

库简介:pyfiction, a universal API for text-based games

库名:sphinxext-rediraffe 0.2.7

库链接:https://pypi.org/project/sphinxext-rediraffe/

库简介:Sphinx Extension that redirects non-existent pages to working pages.

库名:robotframework-lsp 0.48.2

库链接:https://pypi.org/project/robotframework-lsp/

库简介:Language Server Protocol implementation for Robot Framework

库名:instabotai 1.0.44

库链接:https://pypi.org/project/instabotai/

库简介:Instagram bot scripts for promotion and API python wrapper.

库名:fad 0.0.4

库链接:https://pypi.org/project/fad/

库简介:Download an album of photos from facebook

库名:stellapy 0.1.2

库链接:https://pypi.org/project/stellapy/

库简介:Streamline your web dev experience with stella.

库名:platinum 1.5.0

库链接:https://pypi.org/project/platinum/

库简介:Frequently used google chrome commands mappings. A User-Agent generator. All for automation.

库名:robotframework-browser-migration 0.1.0

库链接:https://pypi.org/project/robotframework-browser-migration/

库简介:Some small helpers for migration of SeleniumLibrary to Browser

库名:life-in-tkk 0.0.2.2

库链接:https://pypi.org/project/life-in-tkk/

库简介:A library to help tkk(xujc)'s student feel relax on their daliy campus life

库名:pytrading212 0.1.9

库链接:https://pypi.org/project/pytrading212/

库简介:Unofficial Trading212 API

库名:pydork 1.1.2

库链接:https://pypi.org/project/pydork/

库简介:Scraping and listing text and image searches on Google, Bing, DuckDuckGo, Baidu, Yahoo japan.

库名:link-crab 0.2.1

库链接:https://pypi.org/project/link-crab/

库简介:A link crawler and permission testing tool for websites

库名:zc.wsgisessions 0.5.1

库链接:https://pypi.org/project/zc-wsgisessions/

库简介:ZC WSGI sessions

库名:mtaf 1.0.47

库链接:https://pypi.org/project/mtaf/

库简介:Mobile Test Automation Framework with Appium Inspector GUI for Android Applications

库名:imgdl 1.1.0

库链接:https://pypi.org/project/imgdl/

库简介:Bulk image downloader from a list of urls

库名:selene 1.0.2

库链接:https://pypi.org/project/selene/

库简介:Concise API for selenium in Python + Ajax support + PageObjects (Selenide port from Java to Python)

库名:archival-web-spider-netrules 0.0.1

库链接:https://pypi.org/project/archival-web-spider-netrules/

库简介:Using BeautifulSoup and Selenium Webdriver to crawl websites and retrieve their resources to keep documentation for educative purposes.

库名:InStockPy 0.2.3

库链接:https://pypi.org/project/instockpy/

库简介:Checks if an item is in stock at any link based off of specified keywords using selenium and proxys.

库名:selene-kentastik 1.0.0a16

库链接:https://pypi.org/project/selene-kentastik/

库简介:Concise API for selenium in Python + Ajax support + PageObjects (Selenide port from Java to Python)

库名:flask-unittest 0.1.3

库链接:https://pypi.org/project/flask-unittest/

库简介:Unit testing flask applications made easy!

库名:mdgo 0.2.4

库链接:https://pypi.org/project/mdgo/

库简介:A codebase for MD simulation setup and results analysis.

库名:pytest-pypom-navigation 2.0.3

库链接:https://pypi.org/project/pytest-pypom-navigation/

库简介:Core engine for cookiecutter-qa and pytest-play packages

库名:free-proxy 1.0.6

库链接:https://pypi.org/project/free-proxy/

库简介:Proxy scraper for further use

库名:ua-spoofer 1.0

库链接:https://pypi.org/project/ua-spoofer/

库简介:A module for collecting and providing popular user agent strings, with a requests session which rotates user agents.

库名:windy-weather-crawler 1.1

库链接:https://pypi.org/project/windy-weather-crawler/

库简介:A web crawler that takes input as place gives the weather forecast for 5 days

库名:freetranslate 0.2.2

库链接:https://pypi.org/project/freetranslate/

库简介:Another translate API for Python.

库名:rosehip 1.1.0

库链接:https://pypi.org/project/rosehip/

库简介:Reliable Operating System by Elisha Hollander Implemented Python

库名:Flask-Scaffold 0.5.1

库链接:https://pypi.org/project/flask-scaffold/

库简介:Scaffold Database Applications in MySQL or PostgreSQL with Flask

库名:tky 1.2.1

库链接:https://pypi.org/project/tky/

库简介:tang kai yue 个人使用python方法集合

库名:kss.core 1.6.5

库链接:https://pypi.org/project/kss-core/

库简介:KSS (Kinetic Style Sheets) core framework

库名:SeleniumBoot 1.0.0

库链接:https://pypi.org/project/seleniumboot/

库简介:SeleniumBoot: make an easy way (yaml) to web automation testing

库名:python-eyes 0.0.4

库链接:https://pypi.org/project/python-eyes/

库简介:A package for Automation that compare two images and return if there is a difference between them

库名:openwa 1.3.16

库链接:https://pypi.org/project/openwa/

库简介:A python interface for Whatsapp Web

库名:robotframework-flexseleniumlibrary 0.3.4

库链接:https://pypi.org/project/robotframework-flexseleniumlibrary/

库简介:Adobe Flex testing library for Robot Framework

库名:ethmeet 1.7.1

库链接:https://pypi.org/project/ethmeet/

库简介:Video-chat API. Compatible with most famous platforms.

库名:webwhatsapi 2.0.5

库链接:https://pypi.org/project/webwhatsapi/

库简介:A python interface for Whatsapp Web

库名:pytest-mozwebqa 1.6

库链接:https://pypi.org/project/pytest-mozwebqa/

库简介:Mozilla WebQA plugin for py.test.

库名:arjuna 1.2.24

库链接:https://pypi.org/project/arjuna/

库简介:Arjuna is a Python based test automation framework developed by Rahul Verma (www.rahulverma.net).

库名:rtsf 2.9.5

库链接:https://pypi.org/project/rtsf/

库简介:rock4 test service framework

库名:typeracer-cheat 0.0.2

库链接:https://pypi.org/project/typeracer-cheat/

库简介:A program that allows one to achieve extremely high speeds on typeracer.com on all game modes.

库名:cutil 3.0.2

库链接:https://pypi.org/project/cutil/

库简介:A collection of useful functions

库名:zgh0241 1.0.0

库链接:https://pypi.org/project/zgh0241/

库简介:基于Python+Selenium的UI自动化测试框架

库名:linkedin-jobs-pyscraper 1.0.0

库链接:https://pypi.org/project/linkedin-jobs-pyscraper/

库简介:Scrape public jobs postings from LinkedIn in native python without selenium or any headless browser.

库名:multi-webbing 0.3.0

库链接:https://pypi.org/project/multi-webbing/

库简介:A multi-threaded libary for web scraping in python, built upon the python threading. Supports selenium and requests.

库名:imslp 0.2.1

库链接:https://pypi.org/project/imslp/

库简介:The clean and modern way of accessing IMSLP data and scores programmatically.

库名:LuluTest 1.2.1

库链接:https://pypi.org/project/lulutest/

库简介:A web browser automation framework

库名:zc.wsgidriver 0.1.0

库链接:https://pypi.org/project/zc-wsgidriver/

库简介:WSGI+Webdriver for testing Javascript (and optionally WSGI) UIs

库名:awssso 1.1.1

库链接:https://pypi.org/project/awssso/

库简介:Command Line tool for AWS SSO Credentials

库名:ggpython 0.0.1

库链接:https://pypi.org/project/ggpython/

库简介:Tracker Network Wrapper In Python.

库名:ESGScraper 1.0.0

库链接:https://pypi.org/project/esgscraper/

库简介:Package that allows you to find ESG ratings from Yahoo Finance, MSCI, CSR Hub, S&P Global, SustainAnalytics. In addition, financial information is also scraped from Yahoo Finance

库名:apt-repo-maker 2.0.0

库链接:https://pypi.org/project/apt-repo-maker/

库简介:Host APT repos on your server or GitHub

库名:robotframework-appiumlibrary 1.6.3

库链接:https://pypi.org/project/robotframework-appiumlibrary/

库简介:Robot Framework Mobile app testing library for Appium Client Android & iOS & Web

库名:pytchat 0.5.5

库链接:https://pypi.org/project/pytchat/

库简介:a python library for fetching youtube live chat.

库名:BrowserAutomator 1.0.11

库链接:https://pypi.org/project/browserautomator/

库简介:A package to simplify browser automation

库名:tlnetcard-python 0.3.3

库链接:https://pypi.org/project/tlnetcard-python/

库简介:A Python 3 API for Tripp Lite's TLNETCARD.

库名:pytest-pyramid-server 1.7.0

库链接:https://pypi.org/project/pytest-pyramid-server/

库简介:Pyramid server fixture for py.test

库名:xiaobaiauto 2.4.1

库链接:https://pypi.org/project/xiaobaiauto/

库简介:xiaobaiauto framework 简化Web与接口等自动化实现及日志搜集、报告生成、邮件发送等功能

库名:aiohttp_cors 0.7.0

库链接:https://pypi.org/project/aiohttp-cors/

库简介:CORS support for aiohttp

库名:hashin 0.17.0

库链接:https://pypi.org/project/hashin/

库简介:Edits your requirements.txt by hashing them in

库名:pyscc 0.2.6

库链接:https://pypi.org/project/pyscc/

库简介:py-component-controller is an opinionated framework for structuring selenium test suites. This project depends on the pyselenium-js project.

库名:bs-ui-auto-c-c 0.0.72

库链接:https://pypi.org/project/bs-ui-auto-c-c/

库简介:一个selenium自动安装驱动、日志的项目

库名:webMole 0.0.4

库链接:https://pypi.org/project/webmole/

库简介:This is a webscraper module in python, it is focused on geting products from online stores, but it works as a webscraper, it uses selenium and pandas.

库名:ktuvitDownloader 4.0.2

库链接:https://pypi.org/project/ktuvitdownloader/

库简介:This package will allow you to auto-download subtitles from wizdom.xyz website.

库名:meteor-diceware 2.2.2

库链接:https://pypi.org/project/meteor-diceware/

库简介:A low-resource, easy to use, low latency, customizable and cryptographically secure implementation of Diceware

库名:lc-django-ckeditor 5.6.8

库链接:https://pypi.org/project/lc-django-ckeditor/

库简介:Django admin CKEditor integration.

库名:aiosplinter 0.1.2

库链接:https://pypi.org/project/aiosplinter/

库简介:Asynchronous splinter wrapper Python library

库名:robotframework-saucelabs 0.2.1

库链接:https://pypi.org/project/robotframework-saucelabs/

库简介:A Library for Working with Sauce Labs

库名:postbot 0.1.4

库链接:https://pypi.org/project/postbot/

库简介:A simple tool to make posts on Instagram programmatically

库名:rpa-web-core 1.0

库链接:https://pypi.org/project/rpa-web-core/

库简介:Core packages for web based Robot Process Automation Tasks

库名:st-undetected-chromedriver 3.1.1

库链接:https://pypi.org/project/st-undetected-chromedriver/

库简介:selenium.webdriver.Chrome replacement wiht compatiblity for Brave, and other Chromium baed browsers. not triggered by CloudFlare/Imperva/hCaptcha and such. NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.

库名:undetected-chromedriver 3.1.5.post4

库链接:https://pypi.org/project/undetected-chromedriver/

库简介:('Selenium.webdriver.Chrome replacement with compatiblity for Brave, and other Chromium based browsers.', 'Not triggered by CloudFlare/Imperva/hCaptcha and such.', 'NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.')

库名:EzGM 1.6.5.2

库链接:https://pypi.org/project/ezgm/

库简介:Toolbox for ground motion record selection and processing

库名:wotlk-db-BY-MCH 0.0.1

库链接:https://pypi.org/project/wotlk-db-by-mch/

库简介:wotlk_db_proj

库名:dj-vga-w1 0.0.22

库链接:https://pypi.org/project/dj-vga-w1/

库简介:The Django learning program project - a site where the usescan take tests, and the admins can maintain configurationsfor these tests

库名:stere 0.31.0

库链接:https://pypi.org/project/stere/

库简介:A nice way of implementing the Page Object pattern.

库名:cdmon-automator 0.0.8

库链接:https://pypi.org/project/cdmon-automator/

库简介:Library for CRUD operations on cdmon.com

库名:WhaBot 1.1.1

库链接:https://pypi.org/project/whabot/

库简介:The (not so official) WhatsApp automation framework!

库名:lit-review 0.0.9

库链接:https://pypi.org/project/lit-review/

库简介:Automate creation of reports and working directories for literature reviews

库名:pyencrypto 1.0

库链接:https://pypi.org/project/pyencrypto/

库简介:Python encryption module to help make the process easier for encryption data and decrypting.

库名:twinter 1.1.2.2

库链接:https://pypi.org/project/twinter/

库简介:An advanced Twitter scraping & OSINT tool.

库名:django-tinymce4-lite 1.8.0

库链接:https://pypi.org/project/django-tinymce4-lite/

库简介:A Django application that provides a fully functional TinyMCE 4 editor widget for models and forms.

库名:tda-api 1.6.0

库链接:https://pypi.org/project/tda-api/

库简介:An unofficial wrapper around the TD Ameritrade HTTP API.

库名:formstorm 1.0

库链接:https://pypi.org/project/formstorm/

库简介:FormStorm is a library that easily creates unit tests for Django forms.

库名:FlowViewer 0.1.1

库链接:https://pypi.org/project/flowviewer/

库简介:Chrome浏览器数据包监听器。

库名:gImageGrabber 0.1.16.3

库链接:https://pypi.org/project/gimagegrabber/

库简介:Tools to download images from Google search

库名:quintagroup.plonetabs 1.0

库链接:https://pypi.org/project/quintagroup-plonetabs/

库简介:Quintagroup Plone Tabs

库名:plone.app.testing 6.1.9

库链接:https://pypi.org/project/plone-app-testing/

库简介:Testing tools for Plone-the-application, based on plone.testing.

库名:slt 0.10.3

库链接:https://pypi.org/project/slt/

库简介:Unofficial usage checker for SLT Internet

库名:udemyscraper 0.8.2

库链接:https://pypi.org/project/udemyscraper/

库简介:A Udemy Course Scraper built with beautiful soup, that fetches udemy course information. Get udemy course information and convert it to json, csv or xml file, without authentication.

库名:undetected-chromedriver-modified 3.0.3

库链接:https://pypi.org/project/undetected-chromedriver-modified/

库简介:selenium.webdriver.Chrome replacement wiht compatiblity for Brave, and other Chromium baed browsers. not triggered by CloudFlare/Imperva/hCaptcha and such. NOTE: results may vary due to many factors. No guarantees are given, except for ongoing efforts in understanding detection algorithms.

库名:yahoostats 0.0.4

库链接:https://pypi.org/project/yahoostats/

库简介:Yahoo statistics webscraper

库名:pyrice 0.1.9

库链接:https://pypi.org/project/pyrice/

库简介:PyRice: a Python package for functional analysis of rice genes

库名:pricer 0.5.5

库链接:https://pypi.org/project/pricer/

库简介:Use WoW addon data to optimize auction buying and selling policies

库名:mint-amazon-tagger 1.52

库链接:https://pypi.org/project/mint-amazon-tagger/

库简介:Fetches your Amazon order history and matching/tags your Mint transactions

库名:renfe-cli 3.3.0

库链接:https://pypi.org/project/renfe-cli/

库简介:Get faster RENFE Spanish Trains timetables in your terminal

库名:soccerapi 0.8.0

库链接:https://pypi.org/project/soccerapi/

库简介:A simple python wrapper to get soccer odds

库名:django-ckeditor-link 0.4.3

库链接:https://pypi.org/project/django-ckeditor-link/

库简介:Alternative link dialog for ckeditor 4, using django modeladmin forms.

库名:gidler 0.0.2

库链接:https://pypi.org/project/gidler/

库简介:gidler

库名:mkposters 0.0.2

库链接:https://pypi.org/project/mkposters/

库简介:Make posters from Markdown files.

库名:basecrawler 0.1.20

库链接:https://pypi.org/project/basecrawler/

库简介:This is the crawler libray

库名:pypom-form 0.3.1

库链接:https://pypi.org/project/pypom-form/

库简介:pypom_form

库名:bobtemplates.kitconcept 2.0.1

库链接:https://pypi.org/project/bobtemplates-kitconcept/

库简介:Templates for Plone projects.

库名:bossweb 0.0.2

库链接:https://pypi.org/project/bossweb/

库简介:GUI framework to develop web and desktop apps in pure python using html, css and scripting. Powered by PyQt5, flask, Brython, selenium and libsass

库名:pymbse-optim 0.0.7

库链接:https://pypi.org/project/pymbse-optim/

库简介:简介无内容

库名:transmogrify.htmlcontentextractor 1.0

库链接:https://pypi.org/project/transmogrify-htmlcontentextractor/

库简介:This blueprint extracts out title, description and body from html either via xpath or by automatic cluster analysis

库名:3b-bot 1.0.0b3

库链接:https://pypi.org/project/3b-bot/

库简介:Quickly purchase items from Best Buy the moment they restock.

库名:PyBlingAPI 0.0.1

库链接:https://pypi.org/project/pyblingapi/

库简介:PyBlingAPI é uma biblioteca para troca de dados com o Bling ERP

库名:bddk 1.1

库链接:https://pypi.org/project/bddk/

库简介:Bddk Veri

库名:SafuPy 0.0.1

库链接:https://pypi.org/project/safupy/

库简介:Python module which provides password hashing and any other user data encryption and decryption.

库名:mfpy 1.0.0

库链接:https://pypi.org/project/mfpy/

库简介:MoneyForward クラウド勤怠といい感じに通信していい感じに打刻するやつ

库名:ruru-tools 0.0.1

库链接:https://pypi.org/project/ruru-tools/

库简介:My own little python-tools repo

库名:dash-extendable-graph 1.3.0

库链接:https://pypi.org/project/dash-extendable-graph/

库简介:A Dash Graph component modified to support use of figure.data-structured input to extend and/or add traces.

库名:apetest 0.1.1

库链接:https://pypi.org/project/apetest/

库简介:Smarter-than-monkey testing for web apps

库名:RudolfTools 0.0.1

库链接:https://pypi.org/project/rudolftools/

库简介:My own little python-tools repo

库名:xblock-openedx-utils 0.9.0

库链接:https://pypi.org/project/xblock-openedx-utils/

库简介:Various utilities for XBlocks

库名:Watchmen 0.2.9

库链接:https://pypi.org/project/watchmen/

库简介:Comparing Image for Tesena

库名:fastasyncapi 0.1

库链接:https://pypi.org/project/fastasyncapi/

库简介:Python FastAsyncApi project!

库名:HeyAthena 1.3.2

库链接:https://pypi.org/project/heyathena/

库简介:Your personal voice assistant

库名:pymirror 0.4.1

库链接:https://pypi.org/project/pymirror/

库简介:Upload files to Multiple Mirror

库名:pipedash 1.3.12

库链接:https://pypi.org/project/pipedash/

库简介:Develop new code for your pipedash widgets

库名:quickcss 0.0.1

库链接:https://pypi.org/project/quickcss/

库简介:A tool for quick CERN software setup

库名:pyeasex 0.0.13

库链接:https://pypi.org/project/pyeasex/

库简介:pyeasex

库名:spoton-generator 0.1.5

库链接:https://pypi.org/project/spoton-generator/

库简介:A tool to generate data for Spot-On

库名:apihelpers4py 0.2

库链接:https://pypi.org/project/apihelpers4py/

库简介:Helpers for API development

库名:sambapy 0.0.2

库链接:https://pypi.org/project/sambapy/

库简介:A small example package

库名:xblock-utils 3.0.0

库链接:https://pypi.org/project/xblock-utils/

库简介:Various utilities for XBlocks

库名:datacamp-downloader 3.2

库链接:https://pypi.org/project/datacamp-downloader/

库简介:Download your completed courses on Datacamp easily!

库名:eatlocal 0.8.1

库链接:https://pypi.org/project/eatlocal/

库简介:eatlocal helps the user solve PyBite code challenges on their local machine

库名:longinus 1.1

库链接:https://pypi.org/project/longinus/

库简介:A experimental web crawler

库名:dcentrapi 0.0.48

库链接:https://pypi.org/project/dcentrapi/

库简介:Dcentralab Pypi packages

库名:ebook-homebrew 2.1.4

库链接:https://pypi.org/project/ebook-homebrew/

库简介:Rename image file to only digit name and convert ebook files.

库名:lettuce_utils 0.4.15

库链接:https://pypi.org/project/lettuce-utils/

库简介:A nice mix of great BDD ingredients

库名:picoscrape 1.0

库链接:https://pypi.org/project/picoscrape/

库简介:This library enables the user to easily scrape images from various websites like unsplash, pexels. This library is dependent on selenium and other pre-installed packages.

库名:PyTextNow 1.2.0

库链接:https://pypi.org/project/pytextnow/

库简介:Texting python package which utilizes TextNow.

库名:django-offermaker 0.9.8

库链接:https://pypi.org/project/django-offermaker/

库简介:Django library to create dynamic forms with configurable variantable restrictions.

库名:pcloud 1.0

库链接:https://pypi.org/project/pcloud/

库简介:A client library for pCloud

库名:ccs-setuptest-v1 1.1.1

库链接:https://pypi.org/project/ccs-setuptest-v1/

库简介:The Selenium based setuptest for the CYBR CSCW-SUITE (CCS). 1.download: wget sourceforge.net/projects/c-c-s/files/latest/download 2.install-app: docker-compose up --build 3.get-test: pip3 install ccs-setuptest-v1 --user 4.setup-and-test(execute locally - install on server by typing in your command-line): ccs-setuptest.py

库名:analysis-runner 2.32.0

库链接:https://pypi.org/project/analysis-runner/

库简介:Analysis runner to help make analysis results reproducible

库名:python3-anticaptcha 1.7.1

库链接:https://pypi.org/project/python3-anticaptcha/

库简介:Python 3 Anti-Captcha service library with AIO module.

库名:testharness 1.0.5

库链接:https://pypi.org/project/testharness/

库简介:This is intended to be used as a generic functional test framework.

库名:spex-connector 0.1.1

库链接:https://pypi.org/project/spex-connector/

库简介:Connector to integration with spex APIs

库名:plone.app.kss 1.8.0

库链接:https://pypi.org/project/plone-app-kss/

库简介:KSS (Kinetic Style Sheets) for Plone

库名:py-splash 0.4.5

库链接:https://pypi.org/project/py-splash/

库简介:Small interface for splash written in python.

库名:medium-stats 2.2.0

库链接:https://pypi.org/project/medium-stats/

库简介:CLI tool to fetch your Medium stats

库名:zettwerk.ui 2.0

库链接:https://pypi.org/project/zettwerk-ui/

库简介:Adding jquery.ui's themeroller to plone 4 for easy theme customization.

库名:biweeklybudget 1.0.0

库链接:https://pypi.org/project/biweeklybudget/

库简介:Responsive Flask/SQLAlchemy personal finance app, specifically for biweekly budgeting.

库名:SmoothCrawler 0.2.0

库链接:https://pypi.org/project/smoothcrawler/

库简介:Build crawler humanly as different roles which be combined with different components.

库名:ebay-rest 0.0.21

库链接:https://pypi.org/project/ebay-rest/

库简介:Wraps the eBay REST APIs.

库名:NoseDjango 1.1.0

库链接:https://pypi.org/project/nosedjango/

库简介: nosedjango cranks up the awesome for your Django project by giving you all the testing goodness of the Nose ecosystem. Use multiprocess, xunit, coverage, etc or even write your own plugin that hooks in to the NoseDjango plugin system (a plugin with a plugin system!)

库名:getcite 1.3.32

库链接:https://pypi.org/project/getcite/

库简介:Pulls original sources from Westlaw and HeinOnline.org

库名:neo-instabot 0.6.0

库链接:https://pypi.org/project/neo-instabot/

库简介:Instagram Python Bot

库名:sarenka 0.0.1

库链接:https://pypi.org/project/sarenka/

库简介:Say hello!

库名:pynut 1.10.3

库链接:https://pypi.org/project/pynut/

库简介:Function easing life

库名:rpaframework 15.4.0

库链接:https://pypi.org/project/rpaframework/

库简介:A collection of tools and libraries for RPA

库名:rains 0.4.0

库链接:https://pypi.org/project/rains/

库简介:这是一个开箱即用、稳定且高效的工程化全栈自动化测试框架。

库名:wagtail-tag-manager 1.4.0

库链接:https://pypi.org/project/wagtail-tag-manager/

库简介:A Wagtail add-on for managing tags.

库名:questions-three 3.14.2.0

库链接:https://pypi.org/project/questions-three/

库简介:Toolkit for building automated integration checks

库名:deform 2.0.15

库链接:https://pypi.org/project/deform/

库简介:Form library with advanced features like nested forms

库名:arena-robot 2.0.0

库链接:https://pypi.org/project/arena-robot/

库简介:Robot integration runtime for the ARENA

库名:sanmu 0.1.1

库链接:https://pypi.org/project/sanmu/

库简介:用Excel描述测试用例的UI自动化测试框架,基于Selenium 和 UnitTes

库名:HTMLReport 2.3.1

库链接:https://pypi.org/project/htmlreport/

库简介:Python3 Unittest HTML报告生成器

库名:proxyscrape23 0.1.1

库链接:https://pypi.org/project/proxyscrape23/

库简介:A library for retrieving free proxies (HTTP, HTTPS, SOCKS4, SOCKS5).

库名:pytest-verbose-parametrize 1.7.0

库链接:https://pypi.org/project/pytest-verbose-parametrize/

库简介:More descriptive output for parametrized py.test tests

库名:hrobot 0.7.0

库链接:https://pypi.org/project/hrobot/

库简介:Hybrid Robot

库名:catcher 1.36.0

库链接:https://pypi.org/project/catcher/

库简介:Microservices automated test tool.

库名:freezegun 1.2.1

库链接:https://pypi.org/project/freezegun/

库简介:Let your Python tests travel through time

库名:pytest-svn 1.7.0

库链接:https://pypi.org/project/pytest-svn/

库简介:SVN repository fixture for py.test

库名:calcul-kemgue 0.0.1

库链接:https://pypi.org/project/calcul-kemgue/

库简介:Ce simple package permet de faire de simples calculs mathématique de base

库名:insta-scrape 2.1.2

库链接:https://pypi.org/project/insta-scrape/

库简介:Super lightweight Instagram web scraper for data analysis

库名:pytest-listener 1.7.0

库链接:https://pypi.org/project/pytest-listener/

库简介:A simple network listener

库名:joppy 0.0.7

库链接:https://pypi.org/project/joppy/

库简介:Python API for Joplin

库名:geetakeout 0.1

库链接:https://pypi.org/project/geetakeout/

库简介:Google Earth Engine Takeout Tool

库名:anybox.buildbot.openerp 0.9

库链接:https://pypi.org/project/anybox-buildbot-openerp/

库简介:Buildbot setup for buildout based openerp installations

库名:django-bpp 1.0.9

库链接:https://pypi.org/project/django-bpp/

库简介:System informatyczny do zarządzania bibliografią publikacji pracowników naukowych

库名:django-jinja-knockout 2.1.0

库链接:https://pypi.org/project/django-jinja-knockout/

库简介:Django AJAX ModelForms. Read-only display ModelForms. Django AJAX datatables with CRUD and custom actions. Supports Django Templates.

库名:pytest-git 1.7.0

库链接:https://pypi.org/project/pytest-git/

库简介:Git repository fixture for py.test

库名:twint 2.1.20

库链接:https://pypi.org/project/twint/

库简介:An advanced Twitter scraping & OSINT tool.

库名:twint-cn 2.1.15

库链接:https://pypi.org/project/twint-cn/

库简介:An advanced Twitter scraping & OSINT tool.

库名:udemy-enroller 4.1.2

库链接:https://pypi.org/project/udemy-enroller/

库简介:简介无内容

库名:internumpi 0.0.2

库链接:https://pypi.org/project/internumpi/

库简介:For interpolating 3D data

库名:parett 1.0.1

库链接:https://pypi.org/project/parett/

库简介:Python Automated Retrieval of TimeTree data

库名:gocept.httpserverlayer 4.0

库链接:https://pypi.org/project/gocept-httpserverlayer/

库简介:HTTP server integration for testing

库名:linkedin-jobs-scraper 1.15.2

库链接:https://pypi.org/project/linkedin-jobs-scraper/

库简介:Scrape public available jobs on Linkedin using headless browser

库名:instabot-py 0.7.18

库链接:https://pypi.org/project/instabot-py/

库简介:Instagram Python Bot

库名:instpector 0.2.7

库链接:https://pypi.org/project/instpector/

库简介:A simple Instagram's web API library

库名:gi-scraper 0.2.3

库链接:https://pypi.org/project/gi-scraper/

库简介:Google Image Scraper - A package that allows to fetch image urls and download images from google images.

库名:ListPage 1.0.4

库链接:https://pypi.org/project/listpage/

库简介:Page classes dedicated to crawling or manipulating list web pages.

库名:sriram-proxyscrape 0.4.0

库链接:https://pypi.org/project/sriram-proxyscrape/

库简介:A library for retrieving free proxies (HTTP, HTTPS, SOCKS4, SOCKS5).

库名:pytest-fixture-config 1.7.0

库链接:https://pypi.org/project/pytest-fixture-config/

库简介:Fixture configuration utils for py.test

库名:warc2graph 0.2

库链接:https://pypi.org/project/warc2graph/

库简介:Warc2graph extracts a graph data structure from WARC files.

库名:pytest-shutil 1.7.0

库链接:https://pypi.org/project/pytest-shutil/

库简介:A goodie-bag of unix shell and environment tools for py.test

库名:Universum 0.19.12

库链接:https://pypi.org/project/universum/

库简介:Unifier of Continuous Integration

库名:tablextract 1.4.5

库链接:https://pypi.org/project/tablextract/

库简介:Extract the information represented in any HTML table as database-like records

库名:twint-fork 2.1.25

库链接:https://pypi.org/project/twint-fork/

库简介:An advanced Twitter scraping & OSINT tool.

库名:assetcloud 2.3.1

库链接:https://pypi.org/project/assetcloud/

库简介:Lightweight Digital Asset Management

库名:FHLB 0.1.2

库链接:https://pypi.org/project/fhlb/

库简介:API Interface to Federal Home Loan Bank of San Francisco.

库名:pytest-devpi-server 1.7.0

库链接:https://pypi.org/project/pytest-devpi-server/

库简介:DevPI server fixture for py.test

库名:manga-searcher 0.0.1

库链接:https://pypi.org/project/manga-searcher/

库简介:Finding new manga to read.

库名:noms 0.1.7

库链接:https://pypi.org/project/noms/

库简介:A fun and simple Python package that allows you to work with highly detailed nutrition data

库名:MrSnippets 2.0.1

库链接:https://pypi.org/project/mrsnippets/

库简介:A complete collection of commonly used code Snippets in Python

库名:proxyscrape 0.3.0

库链接:https://pypi.org/project/proxyscrape/

库简介:A library for retrieving free proxies (HTTP, HTTPS, SOCKS4, SOCKS5).

库名:social-analyzer 0.45

库链接:https://pypi.org/project/social-analyzer/

库简介:API, CLI & Web App for analyzing & finding a person's profile across 300+ social media websites (Detections are updated regularly)

库名:kibitzr 6.2.1

库链接:https://pypi.org/project/kibitzr/

库简介:Self hosted web page changes monitoring

库名:pylodge 0.3.2

库链接:https://pypi.org/project/pylodge/

库简介:Test Automation framework for TestLodge

库名:pytest-virtualenv 1.7.0

库链接:https://pypi.org/project/pytest-virtualenv/

库简介:Virtualenv fixture for py.test

库名:tap-core 0.0.2

库链接:https://pypi.org/project/tap-core/

库简介:Singer.io Tap Core features

库名:auto-chromedriver 0.1.4

库链接:https://pypi.org/project/auto-chromedriver/

库简介:Auto chromedriver installer. Most of selenium projects does not start because of the chromedriver version issue. with 2 codes you can fix that error without making any efforts. For the usage and more information check out the README.

库名:youtube-transcript-api 0.4.4

库链接:https://pypi.org/project/youtube-transcript-api/

库简介:This is an python API which allows you to get the transcripts/subtitles for a given YouTube video. It also works for automatically generated subtitles, supports translating subtitles and it does not require a headless browser, like other selenium based solutions do!

库名:veracode-api-py 0.9.29

库链接:https://pypi.org/project/veracode-api-py/

库简介:Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.

库名:behaving 3.0.4

库链接:https://pypi.org/project/behaving/

库简介:BDD Behavior-Driven-Development testing

库名:bobtemplates.plone 5.2.2

库链接:https://pypi.org/project/bobtemplates-plone/

库简介:Templates for Plone projects.

库名:balaban 0.0.23

库链接:https://pypi.org/project/balaban/

库简介:Bayesian hierarchical models for football

库名:plone.formwidget.masterselect 2.0.1

库链接:https://pypi.org/project/plone-formwidget-masterselect/

库简介:A z3c.form widget that controls the vocabulary or display of other fields on an edit page

库名:risiparse 2.0.4

库链接:https://pypi.org/project/risiparse/

库简介:A script to download risitas

库名:runestone 6.3.0

库链接:https://pypi.org/project/runestone/

库简介:Sphinx extensions for writing interactive documents.

库名:online-judge-api-client 10.10.0

库链接:https://pypi.org/project/online-judge-api-client/

库简介:API client to develop tools for competitive programming

库名:br-helper 0.1.4

库链接:https://pypi.org/project/br-helper/

库简介:Automate browser the easy way

库名:money-to-prisoners-common 13.7.0

库链接:https://pypi.org/project/money-to-prisoners-common/

库简介:Django app with common code and assets for Money to Prisoners services

库名:pytest-profiling 1.7.0

库链接:https://pypi.org/project/pytest-profiling/

库简介:Profiling plugin for py.test

库名:robotframework-extendedappiumlibrary 0.1.7

库链接:https://pypi.org/project/robotframework-extendedappiumlibrary/

库简介:Extended Appium mobile native app testing library for Robot Framework with iOS UI Automation and Android UI Automator support - End of Life (2015.07.26)

库名:crawlerUtils 1.8.1.post4

库链接:https://pypi.org/project/crawlerutils/

库简介:Crawler Utils examples

库名:framler 0.1.1

库链接:https://pypi.org/project/framler/

库简介:Python package for crawler data and extract main information

库名:bokehheat 0.0.6

库链接:https://pypi.org/project/bokehheat/

库简介:A python3 bokeh based boolean data, categorical data, numerical data, dendrogram, and heatmap plotting library.

库名:FormAlchemy 1.5.6

库链接:https://pypi.org/project/formalchemy/

库简介:FormAlchemy greatly speeds development with SQLAlchemy mapped classes (models) in a HTML forms environment.

库名:target-core 0.0.3

库链接:https://pypi.org/project/target-core/

库简介:Singer.io target core features

库名:pymobiledevice3 1.25.0

库链接:https://pypi.org/project/pymobiledevice3/

库简介:Pure python3 implementation for working with iDevices (iPhone, etc...)

库名:django-tivol 0.0.1

库链接:https://pypi.org/project/django-tivol/

库简介:Migrating (dummy) content into a Django site

库名:almaviva 1.4.8

库链接:https://pypi.org/project/almaviva/

库简介:Biblioteca com funções personalizadas desenvolvidos para Almaviva Do Brasil

库名:whatsappcloud 0.0.5

库链接:https://pypi.org/project/whatsappcloud/

库简介:API wrapper for Whatsapp Cloud

库名:robotframework-applicationlibrary 1.0.1

库链接:https://pypi.org/project/robotframework-applicationlibrary/

库简介:Robot Framework framework for mobile and desktop testing.

库名:save-thread-result 0.0.8

库链接:https://pypi.org/project/save-thread-result/

库简介:Simple subclass wrapper around threading.Thread to get the return value from a thread in python. Exact same interface as threading.Thread! Star this repo if you found it useful!

库名:django-webtest 1.9.10

库链接:https://pypi.org/project/django-webtest/

库简介:Instant integration of Ian Bicking's WebTest (http://docs.pylonsproject.org/projects/webtest/) with Django's testing framework.

库名:kwola 0.1.52

库链接:https://pypi.org/project/kwola/

库简介:Kwola makes an AI powered tool for finding bugs in software

库名:django-dash 0.6.1

库链接:https://pypi.org/project/django-dash/

库简介:Customisable, modular dashboard application framework for Django.

库名:log-everywhere 0.0.1

库链接:https://pypi.org/project/log-everywhere/

库简介:Logging package to enable writing all program information with corresponding datetime to multiple, DIFFERENT files safely when running multiple threads (multi-threading).

库名:youbit 0.1.4

库链接:https://pypi.org/project/youbit/

库简介:Host any file on YouTube, for free.

库名:PixivPy3 3.7.1

库链接:https://pypi.org/project/pixivpy3/

库简介:Pixiv API for Python (with 6.x AppAPI supported)

库名:fast-forward-job-hunting 0.0.4

库链接:https://pypi.org/project/fast-forward-job-hunting/

库简介:Fast Forward Job Hunting speeds up your job seeking efforts. It saves your time and helps you into employment significantly faster.

库名:PixivPy 3.7.0

库链接:https://pypi.org/project/pixivpy/

库简介:Pixiv API for Python (with 6.x AppAPI supported)

库名:saas 1.2.1

库链接:https://pypi.org/project/saas/

库简介:Screenshot as a service

库名:kocrawl 1.0.9

库链接:https://pypi.org/project/kocrawl/

库简介:Korean web crawler collections

库名:collective.zamqp 0.16.2

库链接:https://pypi.org/project/collective-zamqp/

库简介:Asynchronous AMQP-integration for Plone (and Zope2)

库名:docker-console 1.0.23

库链接:https://pypi.org/project/docker-console/

库简介:Application that improves and speeds up web development process using Docker

库名:kaleido 0.2.1.post1

库链接:https://pypi.org/project/kaleido/

库简介:Static image export for web-based visualization libraries with zero dependencies

库名:robotframework-testfors 2.4.1

库链接:https://pypi.org/project/robotframework-testfors/

库简介:Robot Framework mini-framework.

库名:robotframework-zoomba 3.1.0

库链接:https://pypi.org/project/robotframework-zoomba/

库简介:Robot Framework mini-framework.

库名:alpha-build-core 0.1.6

库链接:https://pypi.org/project/alpha-build-core/

库简介:AlphaBuild's core

库名:GeneralNewsExtractor 0.1.3

库链接:https://pypi.org/project/generalnewsextractor/

库简介:General extractor of news pages.

库名:kocrawl-cna 1.0.1

库链接:https://pypi.org/project/kocrawl-cna/

库简介:Korean web crawler collections

库名:collective.generic.webbuilder 1.1

库链接:https://pypi.org/project/collective-generic-webbuilder/

库简介:Yet another WSGI Paste factory for paste by Makina Corpus

库名:biliup 0.3.0

库链接:https://pypi.org/project/biliup/

库简介:stream download and upload

库名:ibeam 0.4.2

库链接:https://pypi.org/project/ibeam/

库简介:IBeam is an authentication and maintenance tool used for the Interactive Brokers Client Portal Web API Gateway.

库名:gne-ren 0.3.1

库链接:https://pypi.org/project/gne-ren/

库简介:General extractor of news pages.

库名:erp5.util 0.4.74

库链接:https://pypi.org/project/erp5-util/

库简介:ERP5 related utilities.

库名:research-scraping-tool 0.0.2

库链接:https://pypi.org/project/research-scraping-tool/

库简介:A tool to scrape research in academic databases like Google Scholar

库名:baseball-scraper 0.4.10

库链接:https://pypi.org/project/baseball-scraper/

库简介:Retrieve baseball data in Python

库名:django-fobi 0.19.2

库链接:https://pypi.org/project/django-fobi/

库简介:Form generator/builder application for Django done right: customisable, modular, user- and developer- friendly.

库名:pytest-server-fixtures 1.7.0

库链接:https://pypi.org/project/pytest-server-fixtures/

库简介:Extensible server fixures for py.test

库名:xmldirector.plonecore 2.1.1

库链接:https://pypi.org/project/xmldirector-plonecore/

库简介:XML-Director

库名:chat-archive 4.0.3

库链接:https://pypi.org/project/chat-archive/

库简介:Easy to use offline chat archive

库名:ichrome 3.0.3

库链接:https://pypi.org/project/ichrome/

库简介:Chrome controller for Humans, base on Chrome Devtools Protocol(CDP) and python3.7+. Read more: https://github.com/ClericPy/ichrome.

库名:ftw.testing 2.0.6

库链接:https://pypi.org/project/ftw-testing/

库简介:Provides some testing helpers and an advanced MockTestCase.

库名:pyramid-notebook 0.3.0

库链接:https://pypi.org/project/pyramid-notebook/

库简介:Embed IPython Notebook shell on your Pyramid website

库名:clover 0.2.2

库链接:https://pypi.org/project/clover/

库简介:Clover is a build tool that dynamically compiles JavaScript and Closure Template code.

Features

########

Simplifies development with the closure compiler, library and templates.
Compiles javascript and soy templates on the fly
Closure unit testing framework support
Command line and web based test runners.
Selenium support to run tests in various drivers.
Javascript internationalization support
Sourcemap support
Displays closure warnings and errors to the browsers console log.
Allows a single configuration file defining the entire compilation; replacing build scripts/etc.

库名:funnelweb 1.1.1

库链接:https://pypi.org/project/funnelweb/

库简介:Crawl and parse static sites and import to Plone

库名:plone.app.jquerytools 1.9.5

库链接:https://pypi.org/project/plone-app-jquerytools/

库简介:jQuery Tools integration for Plone plus overlay and AJAX form helpers.

库名:finpie 0.1364

库链接:https://pypi.org/project/finpie/

库简介:Simple library to download some financial data

库名:bookbuilderpy 1.9.22

库链接:https://pypi.org/project/bookbuilderpy/

库简介:A package for compiling electronic books.

库名:pyramid-debugtoolbar 4.9

库链接:https://pypi.org/project/pyramid-debugtoolbar/

库简介:A package which provides an interactive HTML debugger for Pyramid application development

库名:ploneintranet 1.2.72

库链接:https://pypi.org/project/ploneintranet/

库简介:Intranet suite for Plone

库名:django-baton 2.3.0

库链接:https://pypi.org/project/django-baton/

库简介:A cool, modern and responsive django admin application

库名:gimageckr 0.0.5

库链接:https://pypi.org/project/gimageckr/

库简介:구글 이미지 크롤러 라이브러리 (Google image crawler)

库名:plone.testing 8.0.3

库链接:https://pypi.org/project/plone-testing/

库简介:Testing infrastructure for Zope and Plone projects.

库名:castle.cms 2.14.1

库链接:https://pypi.org/project/castle-cms/

库简介:CastleCMS Plone distribution main package

库名:openwisp-utils 1.0.2

库链接:https://pypi.org/project/openwisp-utils/

库简介:OpenWISP 2 Utilities

库名:cumulusci 3.61.1

库链接:https://pypi.org/project/cumulusci/

库简介:Build and release tools for Salesforce developers

库名:Twitch-Channel-Points-Miner-v2 2.1.1

库链接:https://pypi.org/project/twitch-channel-points-miner-v2/

库简介:A simple script that will watch a stream for you and earn the channel points.

库名:xueqiu 0.1.5

库链接:https://pypi.org/project/xueqiu/

库简介:A humanize XueQiu API wrappers.

库名:stest 1.0.4

库链接:https://pypi.org/project/stest/

库简介:基于unittest开发的测试框架,更友好、更灵活的编写、管理与运行测试,生成更加美观的独立单文件HTML报告。内置参数化测试数据存取方案,省去设计的烦恼,节省更多的时间,从而更快的投入到编写用例阶段

库名:kinto 14.7.2

库链接:https://pypi.org/project/kinto/

库简介:Kinto Web Service - Store, Sync, Share, and Self-Host.

库名:natrixclient 0.1.3

库链接:https://pypi.org/project/natrixclient/

库简介:Client For Natrix - An Open Source Cloud Automation Testing Project

库名:jarvis-nlp 5.9.4

库链接:https://pypi.org/project/jarvis-nlp/

库简介:IronMan's Jarvis with python.

库名:jarvis-bot 5.9.4

库链接:https://pypi.org/project/jarvis-bot/

库简介:IronMan's Jarvis with python.

库名:jarvis-ironman 6.2.2

库链接:https://pypi.org/project/jarvis-ironman/

库简介:IronMan's Jarvis with python.

库名:seleniumcomponents 0.0.1

库链接:https://pypi.org/project/seleniumcomponents/

库简介:A small example package

库名:py-seleniumdrivers-chromedrivers 1.0.2

库链接:https://pypi.org/project/py-seleniumdrivers-chromedrivers/

库简介:AWS Lambda Chromedrivers

所有selenium相关的库的相关教程结束。

《所有selenium相关的库.doc》

下载本文的Word格式文档,以方便收藏与打印。