Access Modify
Use private, protected class methods in Python!
Download
pip install access-modify
Example
from access_modify import *
@access
class Test:
# Test.a can be used by Test class methods.
@private
def a(self): return 1
# Test.b can be used by Test class, or inherited class methods.
@protected
def b(self): return self.a()+1
class Inherited(Test):
@public
def c(self): return self.b()+1
r = Test()
w = Inherited()
print(r.a()) # raise AccessException
print(r.b()) # raise AccessException
print(w.c()) # 3
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Access-Modify-1.0.6.tar.gz
(2.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Access-Modify-1.0.6.tar.gz.
File metadata
- Download URL: Access-Modify-1.0.6.tar.gz
- Upload date:
- Size: 2.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d4c67c5062e254270568c049dad78645bfd29624d34d27de243164e992c7d8
|
|
| MD5 |
5e150b140f87dd896d0e47050ee9065c
|
|
| BLAKE2b-256 |
fe6d69c0a871d1a246cb5c9f7141b0034c0a3da233ddd4c96db019226e998a01
|
File details
Details for the file Access_Modify-1.0.6-py3-none-any.whl.
File metadata
- Download URL: Access_Modify-1.0.6-py3-none-any.whl
- Upload date:
- Size: 2.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.24.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3b2d1acc6feb95b134a71d8892d43e87f79ac1af6cd20a082759e00c0226cc3
|
|
| MD5 |
507e15d8a57c23ed2d5cc355a2562a75
|
|
| BLAKE2b-256 |
31307022c2ade2e1138b04534f766e4fd7c45ab5e7f5416352b52fe25d8be52f
|