A collection of utility functions, and classes.
Project description
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file raccy_utils-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: raccy_utils-0.1.5-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a57a782e94ab4e430e4feeb6a67d29bc033ac0bc4cf89b5eeca7b9062b50955d |
|
MD5 | af4f2dc76bfe82cd859a9d95ccbc4260 |
|
BLAKE2b-256 | 541da2e1d8b711bebff9885386f3acf1782e9d7a7ead3160d7b97db08bdf20d9 |