Metadata-Version: 1.1
Name: chicken-turtle-util
Version: 4.0.1
Summary: Python 3 utility library
Home-page: https://github.com/timdiels/chicken_turtle_util
Author: Tim Diels
Author-email: timdiels.m@gmail.com
License: LGPL3
Download-URL: https://github.com/timdiels/chicken_turtle_util/releases/v4.0.1.tar.gz
Description: Chicken Turtle Util (CTU) is a broad scoped Python utility library.
        
        Most dependencies are optional and grouped by module.  When using a module,
        add/install its dependencies, listed in its corresponding ``*_requirements.in``
        file found in the root of the project; e.g.  `cli_requirements.in`__ lists the
        dependencies of `chicken_turtle_util.cli`.
        
        .. __: https://github.com/timdiels/chicken_turtle_util/blob/master/cli_requirements.in
        
        Links
        =====
        - `Documentation <http://pythonhosted.org/chicken_turtle_util/>`_
        - `PyPI <https://pypi.python.org/pypi/chicken_turtle_util/>`_
        - `GitHub <https://github.com/timdiels/chicken_turtle_util/>`_
        
        API stability
        =============
        While all features are documented and tested, the API is changed frequently.
        When doing so, the `major version <semver_>`_ is bumped and a changelog is kept
        to help upgrade. Fixes will not be backported. It is recommended to pin the
        major version in your setup.py, e.g. for 2.x.y::
        
            install_requires = ['chicken_turtle_util>=2.0.0,<3.0.0', ...]
        
        If you see something you like but need long term stability (e.g. if low
        maintenance cost is required), request to have it moved to a stable library
        (one with fewer major releases) by `opening an issue`_.
        
        .. _opening an issue: https://github.com/timdiels/chicken_turtle_util/issues
        
        Changelog
        =========
        
        `Semantic versioning <semver_>`_ is used (starting with v3.0.0).
        
        v4.0.1
        ------
        - Fixed: README formatting error
        
        v4.0.0
        ------
        - Major:
        
          - `path.digest` renamed to `path.hash` (and added `hash_function` parameter)
          - renamed `cli` to `click`
          - require Python 3.5 or newer
          - Changed: `asyncio.stubborn_gather`:
        
            - raise `CancelledError` if all its awaitables raised `CancelledError`.
            - raise summary exception if any awaitable raises exception other than
              `CancelledError`
            - log exceptions, as soon as they are raised
        
        - Minor:
        
          - Added:
        
            - `click.assert_runs`
            - `hashlib.base85_digest`
            - `logging.configure`
            - `path.assert_equals`
            - `path.assert_mode`
            - `test.assert_matches`
            - `test.assert_search_matches`
            - `test.assert_text_contains`
            - `test.assert_text_equals`
        
        - Fixes:
        
          - `path.remove`: raised when ``path.is_symlink()`` or contains a symlink
          - `path.digest/hash`: directory hash collisions were more likely than necessary
          - `pymysql.patch`: change was not picked up in recent pymysql versions
        
        v3.0.1
        ------
        - Fixed: README formatting error
        
        v3.0.0
        ------
        
        - Removed: 
        
          - `cli.Context`, `cli.BasicsMixin`, `cli.DatabaseMixin`,
            `cli.OutputDirectoryMixin`
          - `pyqt` module
          - `URL_MAX_LENGTH`
          - `various` module: `Object`, `PATH_MAX_LENGTH`
        
        - Enhanced:
        
          - `data_frame.split_array_like`: `columns` defaults to ``df.columns``
          - `sqlalchemy.pretty_sql`: much better formatting
        
        - Added:
        
          - `algorithms.toset_from_tosets`: Create totally ordered set (toset) from
            tosets
          - `configuration.ConfigurationLoader`: loads a single configuration from one
            or more files directory according to XDG standards
          - `data_frame.assert_equals`: Assert 2 data frames are equal
          - `data_frame.equals`: Get whether 2 data frames are equal
          - `dict.assign`: assign one dict to the other through mutations
          - `exceptions.InvalidOperationError`: raise when an operation is
            illegal/invalid, regardless of the arguments you throw at it (in the
            current state).
          - `inspect.call_args`: Get function call arguments as a single dict
          - `observable.Set`: set which can be observed for changes
          - `path.chmod`: change file or directory mode bits (optionally recursively)
          - `path.digest`: Get SHA512 checksum of file or directory
          - `path.read`: get file contents
          - `path.remove`: remove file or directory (recursively), unless it's missing
          - `path.write`: create or overwrite file with contents
          - `series.assert_equals`: Assert 2 series are equal
          - `series.equals`: Get whether 2 series are equal
          - `series.split`: Split values
          - `test.temp_dir_cwd`: pytest fixture that sets current working directory to
            a temporary directory
        
        v2.0.4
        ------
        No changelist
        
        .. _semver: http://semver.org/spec/v2.0.0.html
        
Keywords: development util library utility utilities
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: Android
Classifier: Operating System :: BeOS
Classifier: Operating System :: MacOS
Classifier: Operating System :: MacOS :: MacOS 9
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Microsoft :: MS-DOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Microsoft :: Windows :: Windows 3.1 or Earlier
Classifier: Operating System :: Microsoft :: Windows :: Windows 7
Classifier: Operating System :: Microsoft :: Windows :: Windows 95/98/2000
Classifier: Operating System :: Microsoft :: Windows :: Windows CE
Classifier: Operating System :: Microsoft :: Windows :: Windows NT/2000
Classifier: Operating System :: Microsoft :: Windows :: Windows Server 2003
Classifier: Operating System :: Microsoft :: Windows :: Windows Server 2008
Classifier: Operating System :: Microsoft :: Windows :: Windows Vista
Classifier: Operating System :: Microsoft :: Windows :: Windows XP
Classifier: Operating System :: OS Independent
Classifier: Operating System :: OS/2
Classifier: Operating System :: Other OS
Classifier: Operating System :: PDA Systems
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: AIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: BSD :: BSD/OS
Classifier: Operating System :: POSIX :: BSD :: FreeBSD
Classifier: Operating System :: POSIX :: BSD :: NetBSD
Classifier: Operating System :: POSIX :: BSD :: OpenBSD
Classifier: Operating System :: POSIX :: GNU Hurd
Classifier: Operating System :: POSIX :: HP-UX
Classifier: Operating System :: POSIX :: IRIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: POSIX :: Other
Classifier: Operating System :: POSIX :: SCO
Classifier: Operating System :: POSIX :: SunOS/Solaris
Classifier: Operating System :: PalmOS
Classifier: Operating System :: Unix
Classifier: Operating System :: iOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
