OmniJP is a Python library that provides tools for common tasks in software development
Project description
omnijp
OmniJP is a Python library that provides tools for common tasks in software development. It now supports features for caching database results to disk and making HTTP requests with caching support.
Features
- Database Disk Cache: OmniJP provides a way to cache database results to disk. This is useful for large datasets that you don't want to query every time. The data is saved in CSV format and can be optionally zipped.
- Database Request: OmniJP provides a way to make a database request and get the results. This is useful for making quick queries to a database and getting the results in a structured format.
- Ftp Secure File Transfer: OmniJP provides a way to securely transfer files using PKCS12 encryption. This is useful for transferring sensitive files between systems.
- HTTP Cached Request: OmniJP provides a way to make HTTP requests and cache the results. This is useful for making GET requests to APIs and caching the results for future use.
- OpenAI Bot: OmniJP provides a way to interact with the OpenAI API and get responses to questions. This is useful for building chatbots or other AI-powered applications.
Installation
You can install OmniJP using pip:
pip install omnijp
Usage
DbDiskCache
You need a quick way to cache database results to disk, then you can use the DbDiskCache
class.
Currently, the library supports PostgreSQL, Sybase, and Oracle databases.
Here's an example of how to cache database results:
from src.common.caches.disk_cache_type import DiskFileType
from src.common.database.db_type import DbType
from src.dbdisk.db_disk_cache_builder import DbDiskCacheBuilder
# set up logging, it will help you show what is happening inside the library
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
CONNECTION_STRING = "your_connection_string"
try:
result = DbDiskCacheBuilder.create(lambda x: (
# supported db types are POSTGRESQL, SYBASE and ORACLE
x.set_db_type(DbType.POSTGRESQL)
.set_connection_string(CONNECTION_STRING)
# currently only csv is supported
.set_disk_file_type(DiskFileType.CSV)
# set the path where the cache files will be saved
.set_cache_path(r"C:\temp\diskCache")
# set the name of the cache
.set_cache_name("users")
# set the query to get the data from the database
.set_query("select * from equities")
# optional parameters, set the number of rows per file and whether to zip the files
.set_rows_per_file(1000)
.set_can_zip(True)
# optional parameter, set the output file to save the results
# if not set, the results will be printed a file called db_cache_results.txt
# file will be created in the cache path
.set_output_file("db_cache_results.txt")
)).execute()
print(result.to_json())
except Exception as e:
print(e)
finally:
print("Completed")
Here's an example of how to cache all database tables:
result = DbDiskCacheBuilder.create(lambda x: (
x.set_db_type(DbType.POSTGRESQL)
.set_disk_file_type(DiskFileType.CSV)
.set_cache_path(CACHE_DIR)
.set_connection_string(connection_string)
.set_dump_all_tables(True)
)).execute()
result = DbDiskCacheBuilder.create(lambda x: (
x.set_db_type(DbType.ORACLE)
.set_disk_file_type(DiskFileType.CSV)
.set_cache_path(CACHE_DIR)
.set_connection_string(connection_string)
.set_dump_all_tables(True)
# provide a custom query to get the list of tables
.set_list_tables_query("SELECT table_name FROM user_tables")
)).execute()
Here's an example of how to cache selected tables:
result = DbDiskCacheBuilder.create(lambda x: (
x.set_db_type(DbType.POSTGRESQL)
.set_disk_file_type(DiskFileType.CSV)
.set_cache_path(CACHE_DIR)
.set_connection_string(connection_string)
.set_table_list(["equities", "student"])
)).execute()
DBRequest
You need a quick way to make a database request and get the results, then you can use the DBRequest
class.
Currently, the library supports PostgreSQL, Sybase, and Oracle databases.
Here's an example of how to use the DBRequest
class to make a database request:
from src.common.database.db_type import DbType
from src.dbrequest.db_request_builder import DbRequestBuilder
import os
CONNECTION_STRING = os.getenv("LOCAL_CONNECTION_STRING")
try:
result = DbRequestBuilder.create(lambda x: (
x.set_db_type(DbType.POSTGRESQL)
.set_connection_string(CONNECTION_STRING)
# single query
.set_query("select * from equities")
# query selected tables
# .set_table_list(["equities", "student"])
# query multiple
# .set_query_list(["select * from equities", "select * from student"])
# provide the full path to the output file
# if not set, the results will be printed to temporary directory with name db_request_result.txt
.set_output_file(r"c:\temp\db_results.txt")
)).execute()
print(result.to_json())
for table in result.tables:
print(f"\nTable: {table.name}")
print("Header:")
print(table.header)
print("Data:")
for row in table.data:
print(row)
except Exception as e:
print(e)
finally:
print("Completed")
HttpCachedRequest
And here's an example of how to use the HttpCachedRequest
class to make a GET request and cache the result:
from omnijp import HttpCachedRequest
http_cached_request = HttpCachedRequest().set_base_url('https://jsonplaceholder.typicode.com').\
set_cache('C:\\temp\\restq').build()
response = http_cached_request.request_get('posts?_limit=10', 'posts')
AsyncOpenAIBot
And here's an example of how to use the AsyncOpenAIBot
To use the AsyncOpenAIBot class, you need to provide a valid OpenAI API key when creating an instance of the class.
This key is used to authenticate your requests to the OpenAI API.
Here's a basic example of how to use the AsyncOpenAIBot class:
import os
from src.openai.openai_bot import OpenAIBot
def my_callback(response):
print("Received response:", response)
def run_bot_async():
import asyncio
openai_key = os.getenv("OPENAI_API_KEY")
if openai_key is None:
print("Please set OPENAI_API_KEY environment variable")
exit(1)
openai_bot = AsyncOpenAIBot(openai_key)
while True:
user_input = input("Enter your question:").lower()
if user_input == "exit":
break
asyncio.run(openai_bot.get_response_async(user_input, my_callback))
if __name__ == "__main__":
try:
run_bot_async()
except Exception as e:
print(e)
In this example, my_callback is a function that will be called with the response from the OpenAI API.
Secure File Transfer using PKCS12
PKCS12 (Public Key Cryptography Standards #12) is a binary format for storing cryptographic objects like private keys, certificates, and certificate chains in a single encrypted file. Key Features: Encryption: Private keys and certificates can be encrypted with a password. Interoperability: Supported by multiple platforms (Java, OpenSSL, browsers, etc.). File Extensions: .p12 or .pfx. Extract the certificate and key from the p12 file
openssl pkcs12 -in <certificate.p12> -clcerts -nokeys -out <certificate.pem> -passin pass:<password>
openssl pkcs12 -in <certificate.p12> -nocerts -nodes -out <key.pem> -passin pass:<password>
OpenAIBot
Synchronous version of the OpenAIBot class
def run_bot():
openai_key = os.getenv("OPENAI_API_KEY")
if openai_key is None:
print("Please set OPENAI_API_KEY environment variable")
exit(1)
openai_bot = OpenAIBot(openai_key)
response = openai_bot.get_response("1+1?")
print("OpenAI Response:", response)
if __name__ == "__main__":
try:
run_bot()
except Exception as e:
print(e)
Error Handling
The OpenAIBot class also handles some exceptions that might occur during the interaction with the OpenAI API:
openai.RateLimitError: This exception is raised when the rate limit of the API is exceeded. The method raises a new exception with a custom message in this case.
openai.AuthenticationError: This exception is raised when the authentication with the API fails (for example, if the API key is incorrect). The method raises a new exception with a custom message in this case.
openai.OpenAIError: This is a general exception for other errors that might occur during the interaction with the API. The method raises a new exception with a custom message in this case.
You can catch these exceptions in your code and handle them as needed.
Testing
The library includes unit tests that you can run to verify its functionality. You can run the tests using the following command:
python -m unittest discover tests
Contributing
Contributions are welcome! Please feel free to submit a pull request.
License
This project is licensed under the terms of the MIT license.
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
Built Distribution
File details
Details for the file omnijp-2.24.0.tar.gz
.
File metadata
- Download URL: omnijp-2.24.0.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5cc47d879d1c99ef90d1c1554a9b646617c180665e732d103844a19d4ee00c8 |
|
MD5 | e0adeb4f03b9ba55c31e5b6f2f564acb |
|
BLAKE2b-256 | 004d91f99140dc857ab0a8a1a43903a021abb9c8df5d172e1b2168b321322978 |
File details
Details for the file omnijp-2.24.0-py3-none-any.whl
.
File metadata
- Download URL: omnijp-2.24.0-py3-none-any.whl
- Upload date:
- Size: 45.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ed086b24c65adb3329b1c0ee9d17cd06312116d35f4426fc1f769ef89fe9906 |
|
MD5 | b17d06d2ab7e55055e274d54270fb675 |
|
BLAKE2b-256 | a3e3f4db1134628cae9f2bb5c51009d648be1537fc21021a6b100888f5fa3f4b |