-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "dean_utils" | ||
version="0.0.21" | ||
version="0.0.22" | ||
authors=[ | ||
{ name="Dean MacGregor", email="[email protected]"} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
__all__ = [ | ||
"async_abfs", | ||
"cos_query_all", | ||
"send_to_queue", | ||
"send_message", | ||
"update_queue", | ||
"delete_message", | ||
"send_email", | ||
"az_send", | ||
"def_cos", | ||
"pl_scan_hive", | ||
"pl_scan_pq", | ||
"pl_write_pq", | ||
] | ||
from dean_utils.utils.az_utils import async_abfs, cos_query_all, send_to_queue, def_cos | ||
from dean_utils.utils.az_utils import ( | ||
async_abfs, | ||
cos_query_all, | ||
send_message, | ||
update_queue, | ||
delete_message, | ||
def_cos, | ||
) | ||
from dean_utils.utils.email_utility import send_email, az_send | ||
from dean_utils.polars_extras import pl_scan_hive, pl_scan_pq, pl_write_pq |