From ec5ce88cad0875ad2592fbb5a95213d699fb6976 Mon Sep 17 00:00:00 2001 From: Dmitrii Gusev Date: Sun, 27 Nov 2022 16:28:24 +0100 Subject: [PATCH] Fixed. --- .DS_Store | Bin 6148 -> 0 bytes README.md | 49 ++++++++++++++++++++++++++++++++++--------------- 2 files changed, 34 insertions(+), 15 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 78aac09d638cc905fcf46cb6266a0be55656a44c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%}N773{GkfTfFon9_IxV`UY!RpP(|Lqt4Y%|}E-BC4Q*y#dT8BJ-jh>A9y5WL=}BbGoN%%5>X_4##g~ zKx%h@s;yABOq=yPrW?AT2l($WKl`Zb;&L>Z<#uVC8654J-{z*7F7gz4)${8Uy*<91 z?7qhQ+iNVZHuoXle@HM83&Wr2;LL{ffbs4uA5v+OZf~I-d}5Zz$|1IZhf*TpNZB z27-ZY2KMZ6DE
-+z9Qal9%!N8wlfcwp)8DmS{TRWSRUYnq2P!WkMhU*jzv=t*( cTJa%N1^y%hVC`58;eo_KKxqgQ4E!hq?=rwf!~g&Q diff --git a/README.md b/README.md index 16be3e3..3446ab4 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,34 @@ -# Pythin Utilities package +# Python Utilities Library (C) 2018 - 2022, Dmitrii Gusev -*Last update 10.01.2021* +*Last update 27.11.2022* ## Project Description -Useful utilities/experimantal modules/research in python 3.x. Some of the modules/scripts are just a research or experiments... +Useful utilities/experimantal modules/research in python 3.10+. Contains a lot of useful python functions and scripts. Some of the modules/scripts are just a research or experiments... ## Versions history -**0.13.3** +### 1.0.0 + +- total refactpring of exisiting modules and scripts +- added convenient web client for various purposes (scraping) +- added pipenv for development +- reworked setup with setup.cfg +- added several automation scripts + +### 0.13.3 + - updated build mechanism with pipenv, instead of virtualenv and requirements.txt file -**0.13.1** +### 0.13.1 + Updated library dependencies. Added openpyxl as support of xlsx format was removed from xlrd library. Updated unit tests. Minor fixes / refactorings. Doc updates. Removed windows batch script. -**0.12.0** -Significant update for library. Many changes were done and sometimes tested :). +### 0.12.0 + +Significant update for library. Many changes were done and sometimes tested :). Changes that were done: @@ -36,31 +47,39 @@ Changes that were done: - added type hints for some classes methods/functions - added shell script for executing unit tests with creating coverage report -**0.5.5** +### 0.5.5 + Added compatability with Python 3.7. Should also still work on Python 2.7. Let me know if it's not the case :) -**0.5.4** +### 0.5.4 + Added method contains_key() to Configuration class. -**0.5.3** +### 0.5.3 + Added one utility method - write_report_to_file(). Minor fixes, comments improvements. -**0.5.0** +### 0.5.0 + Added ability for ConfigurationXls class to merge provided list of dictionaries on init. Added more unit test cases for ConfigurationXls class (initialization, dictionaries merge). -**0.4.0** +### 0.4.0 + Added ability for Configuration class to merge list of dictionaries on init. Minor improvements, added several unit test cases. Minor refactoring. -**0.3.0** +### 0.3.0 + Added ConfigurationXls class. It extends (inherites) Configuration class with ability of loading configuration from XLS files, from specified sheet, as name=value pairs. Added some unit tests for new class. Added dependencies list: requirements.txt file. -**0.2.0** +### 0.2.0 + Added tests and some new methods. -**0.1.0** +### 0.1.0 + Initial version. Just draft of utilities library.