Raccy Utils 0.4.2 | Coderz Repository

raccy-utils 0.4.2

Last updated:

0 purchases

raccy-utils 0.4.2 Image
raccy-utils 0.4.2 Images

Free

Languages

Categories

Add to Cart

Description:

raccyutils 0.4.2

RACCY-UTILS
Overview
Raccy-Utils is a collection of utility functions and classes for various python libraries.
Requirements

Python 3.7+
Works on Linux, Windows, and Mac

Example, working with config files
Currently this library supports only json and text config files, and it does not support comments at the moment.
from ru import TextConfig

config = TextConfig()
print(config['foo'])

foo

from ru import JsonConfig

config = JsonConfig()
print(config['foo'])

foo

Example, working with selenium
from ru import manual_entry
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

driver = webdriver.Chrome()
driver.get('https://google.com')
manual_entry(driver, '//input[@title="Search"]', 'raccy-utils', Keys.ENTER)

Installation
pip install raccy-utils

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.