Generic functions
Project description
Alchimie Data Solutions : Generic functions
The purpose of this Python package is to group together all the generic functions used in Onyx development.
adsGenericFunctions
class PostgresInput:
def init(self, database: str, user: str, password:str, port:str, host: str, batch_size=1000)
This class is used to communicate with a postgres database. Initialising the class starts the connection, so it needs the database name, user, password, port and host. It also sets the default read buffer to 1000.
def del(self)
This method just closes the connection to the database.
def read(self, query: str)
This method belongs to the PostgresInput class. It reads the parameter query and yield the results in batches of size batch_size.
def write(self, query: str, params=None)
This method belong to the PostgresInput class. It executes the parameter query, this query can be an insert, an update or a delete operation. We can add parameters to the execution by the parameter params set to None by default.
def send_mail(sgApiClient: str, destinataire: List[str], msg: str, from_email: str, subject: str) -> Response
This function sends an email to the destinataire from from_email with the subject subject and a message msg. It also needs the api key sgApiClient.
It returns the send response.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file adsgenericfunctions-0.2.11.tar.gz.
File metadata
- Download URL: adsgenericfunctions-0.2.11.tar.gz
- Upload date:
- Size: 1.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
368907e7e7458e2a903a0e383e2498e8790273eeb88af1ed0d7abc7665c0adee
|
|
| MD5 |
5293c36e637633bc3e8403fe29e67e06
|
|
| BLAKE2b-256 |
060326cd3793b7cd140b44c065d140769f519eab52e11f824b56ef1cd293385e
|
File details
Details for the file adsgenericfunctions-0.2.11-py3-none-any.whl.
File metadata
- Download URL: adsgenericfunctions-0.2.11-py3-none-any.whl
- Upload date:
- Size: 2.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5abc252234351e04c634417433db9bc4641a7f992f162afe83dbfca913db91
|
|
| MD5 |
b8ddc2b88f884e50e3e723defd75198d
|
|
| BLAKE2b-256 |
ab9ae2fe446145b2473f74037967d75f03e1da52c58ee19f02ff77eed886462d
|