A classy toolkit designed with OOP in mind.
Project description
Generics
A classy toolkit designed with OOP in mind.
Documentation | Source Code | Task Tracker
In our opinion, main benefits of having objects implemented in the language are
encapsulation and polymorphous. Classes that could be easily used in a
composition are tricky to write. The generics
library aims to help you in
writing code with high quality.
Pros
- Real private attributes without loosing the readability
- Leads to a better design forcing you to use encapsulation properly
- Makes writing quality code with high cohesion and low coupling easier
- Guides you to follow SOLID principles
Example
The generics
library gives you an easy way to define private attributes on
objects without loosing little nice things like readability.
>>> from generics import private
>>> @private
... class User:
... def __init__(self, name):
... self.name = name
... def greet(self):
... return f"Hello, {self.name}"
...
>>> user = User("Jeff")
>>> user.greet()
'Hello, Jeff'
>>> hasattr(user, "name")
False
Questions
If you have any questions, feel free to create an issue in our Task Tracker. We have the question label exactly for this purpose.
Enterprise support
If you have an issue with any version of the library, you can apply for a paid enterprise support contract. This will guarantee you that no breaking changes will happen to you. No matter how old version you're using at the moment. All necessary features and bug fixes will be backported in a way that serves your needs.
Please contact proofit404@gmail.com if you're interested in it.
License
generics
library is offered under the two clause BSD license.
— ⭐ —
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file generics-7.0.0.tar.gz
.
File metadata
- Download URL: generics-7.0.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.4 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abd5c0fe619f02ee3340bf4b29f90dce9bd7bea88b3e4a369c8c2563014eab9c |
|
MD5 | e7aea5022b2173685824ca259ff15fff |
|
BLAKE2b-256 | 6de20141ca0324eb301b88a0970b27658993ad134d7b47c9e8ad2428c6404feb |
File details
Details for the file generics-7.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: generics-7.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.4 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab22c13f2adf4d65402ca448494c9561b762e56316971f6528eada6a82e16619 |
|
MD5 | 65bd07125f0015e64cb33eee874d57b2 |
|
BLAKE2b-256 | 0adf400511e2fc8aadc5e2b205fddaeb9798f621b0cccdd9e933e97090e1f24f |