An unofficial Google Tools wrapper
Project description
An unofficial Google Tools wrapper
GoogleTools
This library provides a simple interface for accessing Google features.
Installation
See it on Pypi
See it on Github
pip install google-tools-wrapper
Currency Conversion Usage
import google_tools as tools
>>> result = tools.currency_conversion(base_currency='USD', target_currency='BRL')
>>> print(result)
{
'float': 4.9024,
'last_update': 'Nov 25, 4:38:00 PM UTC'
}
# benchmark (u can see the benchmark on this project github repo):
>>> result = test_currency_conversion(100)
>>> print(f"MIN TIME: {result['min_time']} seconds\nMAX TIME: {result['max_time']} seconds\nAVG TIME ({result['avg']['operations']} operations): {result['avg']['time_per_operation']} seconds") # "limited" to 3 decimals
MIN TIME: 0.736 seconds
MAX TIME: 2.152 seconds
AVG TIME (100 operations): 1.077 seconds
Translater Usage
import google_tools as tools
>>> result = tools.translater(source_language='pt', target_language='en', text='Ola Mundo!')
>>> print(result)
Hello World!
# benchmark (u can see the benchmark on this project github repo):
>>> result = test_translater(30)
>>> print(f"MIN TIME: {result['min_time']} seconds\nMAX TIME: {result['max_time']} seconds\nAVG TIME ({result['avg']['operations']} operations): {result['avg']['time_per_operation']} seconds") # "limited" to 3 decimals
MIN TIME: 5.195 seconds
MAX TIME: 7.003 seconds
AVG TIME (30 operations): 5.924 seconds
Disclaimer
This library is provided for educational purposes only and should not be used in production environments. It is not affiliated with Google and may not always provide accurate or up-to-date currency conversion rates. For real-time currency conversion services, please refer to official financial sources.
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 Distribution
File details
Details for the file google-tools-wrapper-3.0.0.tar.gz
.
File metadata
- Download URL: google-tools-wrapper-3.0.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34855463c16e694d040ce2e9ccdacd13f46e73bd9ea588a0390de13c66e4d3f4 |
|
MD5 | 1213e82229395678ff87a1ac9872b88e |
|
BLAKE2b-256 | e505b4e602039cfac61fde1270a40d9f6cba3792fc2eefa82dd6dd88eb0cfcfd |