@public decorator, public(*objects) function - add objects names to __all__
Project description
Install
[sudo] pip install public
Usage
# @public decorator
>>> from public import public
>>> @public
def func(): pass
>>> print(__all__)
['func']
>>> @public
>>> class CLS: pass
>>> print(__all__)
['CLS',func']
# public(*objects) function
>>> from public import public
>>> public("name")
>>> print(__all__)
['name']
>>> public("name1","name2")
>>> print(__all__)
['name','name1','name2']
Sources:
russianidiot.github.io/python/ - Python packages
russianidiot.github.io/cli/ - command line scripts
README.rst - generated with readmemako.py (python+ mako templates) and .README dotfiles
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
public-0.0.27.tar.gz
(8.1 kB
view details)
File details
Details for the file public-0.0.27.tar.gz
.
File metadata
- Download URL: public-0.0.27.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0493dad4af638c66317de0dad1f75499d282dc51d3ea25f501f99a3e1294a231 |
|
MD5 | 33ac6e7b87843457006642bd5870fe65 |
|
BLAKE2b-256 | a444ba3669e20f68a7d5105a531294ffa3f3c36478ac4d4d0b74d5659164535c |