nx.utils package

Submodules

nx.utils.cached_properties module

A decorator for caching properties in classes.

Copyright (c) 2015, Daniel Greenfeld All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice,

this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice,

this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of cached-property nor the names of its contributors may be

used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

class nx.utils.cached_properties.cached_property(func)[source]

Bases: object

A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property. Source: https://github.com/bottlepy/bottle/commit/fa7733e075da0d790d809aa3d2f53071897e6f76

nx.utils.cached_properties.cached_property_ttl

alias of nx.utils.cached_properties.cached_property_with_ttl

class nx.utils.cached_properties.cached_property_with_ttl(ttl=None)[source]

Bases: object

A property that is only computed once per instance and then replaces itself with an ordinary attribute. Setting the ttl to a number expresses how long the property will last before being timed out.

nx.utils.cached_properties.timed_cached_property

alias of nx.utils.cached_properties.cached_property_with_ttl

Module contents

class nx.utils.AnsiMenu(entries, console=<_io.BufferedWriter name='<stdout>'>)[source]

Bases: object

ANSI menu by DavidBuchanan314

CONTROLLER_P1_AUTO = 10
KEY_A = 1
KEY_DOWN = 8945664
KEY_UP = 2236416
poll_input()[source]
query()[source]
render()[source]
selected_idx = 0
class nx.utils.Singleton[source]

Bases: type

nx.utils.bit(n: int)[source]
nx.utils.clear_terminal()[source]