(C) 2018 - 2022, Dmitrii Gusev
Last update 26.06.2024
[TOC]
Useful utilities/experimental 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...
- fedit
- echo-server
- ???
- regex for floating number
- string is a number
- download file
- pypi - urllib3
- urllib3 - docs
- docs from python
- fake User Agent
- HTTP status codes
Major release after a long time :) It includes a lot of changes and updates. Refactored most of the methods, added a lot of tests, improved documentation and modules/methods descriptions.
- removed all unnecessary modules or obsolete methods
- added several modules and methods from various projects
- fixed a lot of grammar issues ;)
- added socket-based echo-server (can be run from the cmd line)
- added powerful http client module
- all tests are on pytest library
- Minor fixes for the major release 1.0.0
- total refactoring of existing modules and scripts
- added convenient web client for various purposes (scraping)
- added pipenv for development
- reworked setup with setup.cfg
- added several automation scripts
- updated build mechanism with pipenv, instead of virtualenv and requirements.txt file
Updated library dependencies. Added openpyxl as support of xlsx format was removed from xlrd library. Updated unit tests. Minor fixes and several code refactors. Doc updates. Removed windows batch script.
Significant update for library. Many changes were done and sometimes tested :).
Changes that were done:
- added pylog.py module, for logging purposes (convenience mostly). Method setup_logging() was moved here (from utils.py).
- method setup_logging() now is able to initialize logger by name and return it
- added deprecation of direct execution to utils.py
- added module strings.py for various convenient methods for strings (with unit tests)
- added unit tests modules for strings.py and pylog.py
- added pysftp.py module for working with SFTP protocol (currently - empty DRAFT!)
- added pyssh.py module for working with SSH protocol (currently - DRAFT!)
- added pymaven.py module for representing Maven functionality (not tested yet!)
- added pygit.py module for representing Git functionality (PyGit class)
- methods git_clean_global_proxy()/git_set_global_proxy() moved to pygit module
- added internal exception class PyUtilsException (module pyexception.py)
- added type hints for some classes methods/functions
- added shell script for executing unit tests with creating coverage report
Added compatibility with Python 3.7. Should also still work on Python 2.7. Let me know if it's not the case :)
Added method contains_key() to Configuration class.
Added one utility method - write_report_to_file(). Minor fixes, comments improvements.
Added ability for ConfigurationXls class to merge provided list of dictionaries on init. Added more unit test cases for ConfigurationXls class (initialization, dictionaries merge).
Added ability for Configuration class to merge list of dictionaries on init. Minor improvements, added several unit test cases. Minor refactoring.
Added ConfigurationXls class. It extends (inherits) 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.
Added tests and some new methods.
Initial version/release. Just draft of utilities library.