(*6 January 2022*)
Notable [changes](https://github.com/mikeqfu/pyhelpers/compare/1.2.18...1.3.0) since [1.2.18](https://pypi.org/project/pyhelpers/1.2.18/):
- Renamed the module [~~sql~~](https://github.com/mikeqfu/pyhelpers/commit/edeb899b53ec9ba3b08e0e328f30bddcf064f0e5) to [dbms](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/dbms.py).
- Renamed the following functions:
- in the module [dir](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/dir.py):
- [~~validate_input_data_dir()~~](https://github.com/mikeqfu/pyhelpers/commit/ff821197e1e5bedda1893e63a0985c15c6eea6eb#diff-9658546df62eded721ef6049c33f4b2d7e985d9cce8c08ba9538a32da5229a09L245) to [validate_dir()](https://github.com/mikeqfu/pyhelpers/commit/ff821197e1e5bedda1893e63a0985c15c6eea6eb#diff-9658546df62eded721ef6049c33f4b2d7e985d9cce8c08ba9538a32da5229a09R245);
- in the module [ops](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/ops.py):
- [~~update_nested_dict()~~](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aL442) to [update_dict()](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aR442);
- [~~get_all_values_from_nested_dict()~~](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aL516) to [get_dict_values()](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aR516);
- [~~remove_multiple_keys_from_dict()~~](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aL575) to [remove_dict_keys()](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aR638);
- [~~instantiate_requests_session()~~](https://github.com/mikeqfu/pyhelpers/commit/dc3817d0ff2e816276ecd8241f43c9c3a59b3927#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aL1468) to [init_requests_session()](https://github.com/mikeqfu/pyhelpers/commit/dc3817d0ff2e816276ecd8241f43c9c3a59b3927#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aR1468).
- Improved the following functions/class:
- [PostgreSQL](https://github.com/mikeqfu/pyhelpers/commit/f23e534a9d0f65dcf695ca30ebaa766cae80fae3) in the module [dbms](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/dbms.py) (previously [~~sql~~](https://github.com/mikeqfu/pyhelpers/blob/fc6191fa37655fc664e6c74e15bcb4280e7bf5c1/pyhelpers/sql.py));
- [wgs84_to_osgb36()](https://github.com/mikeqfu/pyhelpers/commit/18f1299356c53072536e9f983e5d36b00f73a184#diff-dc4a0e4af0eb0e5a833d868a38bde78a7c5736be4021d9ddf03b97c6f0cc8af8R89) and [osgb36_to_wgs84()](https://github.com/mikeqfu/pyhelpers/commit/18f1299356c53072536e9f983e5d36b00f73a184#diff-dc4a0e4af0eb0e5a833d868a38bde78a7c5736be4021d9ddf03b97c6f0cc8af8R153) in the module [geom](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/geom.py).
- [parse_size()](https://github.com/mikeqfu/pyhelpers/commit/77abafb23312b57a034f0731ca8085dfeb2573b9) (newly added), [init_requests_session()](https://github.com/mikeqfu/pyhelpers/commit/6bde35cd84542403cc9a4d86976d5f33447ba0aa) and [download_file_from_url()](https://github.com/mikeqfu/pyhelpers/commit/898cba204f520daf459f770ba75cbc5af805440d) in the module [ops](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/ops.py);
- [load_json()](https://github.com/mikeqfu/pyhelpers/commit/adcb314be54daf4f19ed97c0df0e7fe61332fa2f) in the module [store](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/store.py);
- [find_similar_str()](https://github.com/mikeqfu/pyhelpers/commit/d1c4cd872a00e3c94343241a14610ea3dc9ccb15#diff-07b6d8c6102940f884435a3670eb5007494d5c51b4deb718ba79c3b267825127R185) in the module [text](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/text.py);
- Added the following functions to the module [ops](https://github.com/mikeqfu/pyhelpers/blob/01e90ddc9824c7e15ce92ef2ae833a9be760cb3e/pyhelpers/ops.py): [parse_size()](https://github.com/mikeqfu/pyhelpers/commit/295e60e9b38fab23896f5552986ba29c83f30e4d), [get_number_of_chunks()](https://github.com/mikeqfu/pyhelpers/commit/ec6d7a19a8a25e463ede05bbd3d5043217eb116f), [loop_in_pairs()](https://github.com/mikeqfu/pyhelpers/commit/cc26add9f3c269bb44b638f72602b7fa71e16e93), [is_url()](https://github.com/mikeqfu/pyhelpers/commit/a61e88abff2aa0028470fd7d538cac8688b1cd1c) and [update_dict_keys()](https://github.com/mikeqfu/pyhelpers/commit/a4f3f617091587ce8aa83efca2fecfe1adaff8d6#diff-9266f224c0227114f50836ba656288a96bd7cca831301fe025c5a7cf9f4ab45aR516-R576).
- Reduced the number of essential dependencies.
**For more information and detailed specifications, check out [PyHelpers 1.3.0 documentation](https://pyhelpers.readthedocs.io/en/1.3.0/).**