Metadata-Version: 2.1
Name: slotscheck
Version: 0.2.0
Summary: Check the usage of __slots__.
Home-page: https://github.com/ariebovenberg/slotscheck
License: MIT
Author: Arie Bovenberg
Author-email: a.c.bovenberg@gmail.com
Requires-Python: >=3.7.0,<4
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Typing :: Typed
Requires-Dist: click (>=8.0.3,<9.0.0)
Requires-Dist: importlib-metadata (>=1,<5); python_version < "3.8"
Project-URL: Repository, https://github.com/ariebovenberg/slotscheck
Description-Content-Type: text/x-rst

🎰 Slotscheck
=============

.. image:: https://img.shields.io/pypi/v/slotscheck.svg
   :target: https://pypi.python.org/pypi/slotscheck

.. image:: https://img.shields.io/pypi/l/slotscheck.svg
   :target: https://pypi.python.org/pypi/slotscheck

.. image:: https://img.shields.io/pypi/pyversions/slotscheck.svg
   :target: https://pypi.python.org/pypi/slotscheck

.. image:: https://img.shields.io/readthedocs/slotscheck.svg
   :target: http://slotscheck.readthedocs.io/

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://github.com/psf/black

Adding ``__slots__`` to a class in Python is a great way to reduce memory usage.
But to work properly, all base classes need to implement it.
It turns out it's easy to forget one class in complex inheritance trees.
What's worse: there is nothing warning you that you messed up.

✨ *Until now!* ✨

See my `blog post <https://dev.arie.bovenberg.net/blog/finding-broken-slots-in-popular-python-libraries/>`_
for the longer story behind ``slotscheck``.

Quickstart
----------

Usage is quick from the command line:

.. code-block:: bash

   slotscheck [MODULE]


For example:

.. code-block:: bash

   $ slotscheck pandas
   ERROR: 'pandas.core.internals.array_manager.SingleArrayManager' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.blocks.Block' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.blocks.NumericBlock' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.blocks.DatetimeLikeBlock' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.blocks.ObjectBlock' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.blocks.CategoricalBlock' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.array_manager.BaseArrayManager' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.managers.BaseBlockManager' has slots but inherits from non-slot class
   ERROR: 'pandas.core.internals.managers.SingleBlockManager' has slots but inherits from non-slot class

Now get to fixing --
and add ``slotscheck`` to your CI pipeline to prevent mistakes from creeping in again!

Use the ``--help`` option to find out more.


Could this be a flake8 plugin?
------------------------------

I'd love it to be. But it'd be a lot of work.

The problem is that flake8 plugins need to work without running the code.
Many libraries define conditional imports, star imports, re-exports or metaclasses
which basically require running the code to find out the class tree.

There's `an issue <https://github.com/ariebovenberg/slotscheck/issues/6>`_
to track any progress on the matter.

Notes
-----

- ``slotscheck`` will try to import all submodules of the given package.
  If there are scripts without ``if __name__ == "__main__":`` blocks,
  they may be executed.
- Even in the case that slots are not inherited properly,
  there may still an advantage to using them
  (i.e. attribute access speed and *some* memory savings)
- Only classes at module-level are checked (i.e. no nested classes)
- In rare cases imports may fail, the module is then skipped.
  Use the verbose mode to show detailed information.
- Limited to the CPython implementation for now.
- Non pure-Python classes are currently assumed to have slots.
  This is not necessarily the case, but it is nontrivial to determine.

Installation
------------

It's available on PyPI.

.. code-block:: bash

  pip install slotscheck

