├── .coveragerc ├── .github └── FUNDING.yml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── __init__.py │ ├── _static │ ├── brand_text_nofont.svg │ └── css │ │ └── custom.css │ ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst │ ├── conf.py │ ├── examples.rst │ ├── helpers │ ├── asyncx │ │ ├── aobject │ │ │ └── privex.helpers.asyncx.aobject.__init__.rst │ │ ├── privex.helpers.asyncx.AwaitableMixin.rst │ │ ├── privex.helpers.asyncx.aobject.rst │ │ ├── privex.helpers.asyncx.async_sync.rst │ │ ├── privex.helpers.asyncx.await_if_needed.rst │ │ ├── privex.helpers.asyncx.awaitable.rst │ │ ├── privex.helpers.asyncx.awaitable_class.rst │ │ ├── privex.helpers.asyncx.call_sys_async.rst │ │ ├── privex.helpers.asyncx.coro_thread_func.rst │ │ ├── privex.helpers.asyncx.get_async_type.rst │ │ ├── privex.helpers.asyncx.is_async_context.rst │ │ ├── privex.helpers.asyncx.loop_run.rst │ │ ├── privex.helpers.asyncx.run_coro_thread.rst │ │ ├── privex.helpers.asyncx.run_coro_thread_async.rst │ │ ├── privex.helpers.asyncx.run_coro_thread_base.rst │ │ └── privex.helpers.asyncx.run_sync.rst │ ├── black_magic │ │ ├── privex.helpers.black_magic.caller_name.rst │ │ ├── privex.helpers.black_magic.calling_function.rst │ │ ├── privex.helpers.black_magic.calling_module.rst │ │ ├── privex.helpers.black_magic.last_frames.rst │ │ └── privex.helpers.black_magic.last_stack_frame.rst │ ├── cache │ │ ├── asynccachewrapper │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.cache_instance.rst │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.get_adapter.rst │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.instance_args.rst │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.instance_kwargs.rst │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.max_context_layers.rst │ │ │ ├── privex.helpers.cache.AsyncCacheWrapper.reset_adapter.rst │ │ │ └── privex.helpers.cache.AsyncCacheWrapper.set_adapter.rst │ │ ├── asyncx │ │ │ ├── asyncsqlitecache │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.__init__.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.close.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.connect.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.get.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.last_purged_expired.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.pickle_default.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.purge_due.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.purge_expired.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.remove.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.set.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.update_timeout.rst │ │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.wrapper.rst │ │ │ │ └── privex.helpers.cache.asyncx.AsyncSqliteCache.__init__.rst │ │ │ ├── privex.helpers.cache.asyncx.AsyncMemcachedCache.rst │ │ │ ├── privex.helpers.cache.asyncx.AsyncMemoryCache.rst │ │ │ ├── privex.helpers.cache.asyncx.AsyncRedisCache.rst │ │ │ ├── privex.helpers.cache.asyncx.AsyncSqliteCache.rst │ │ │ ├── privex.helpers.cache.asyncx.base.AsyncCacheAdapter.rst │ │ │ └── privex.helpers.cache.asyncx.base.rst │ │ ├── cacheadapter │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.__init__.rst │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.get.rst │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.get_or_set.rst │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.get_or_set_async.rst │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.remove.rst │ │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.set.rst │ │ │ └── privex.helpers.cache.CacheAdapter.CacheAdapter.update_timeout.rst │ │ ├── cachewrapper │ │ │ ├── privex.helpers.cache.CacheWrapper.cache_instance.rst │ │ │ ├── privex.helpers.cache.CacheWrapper.get_adapter.rst │ │ │ └── privex.helpers.cache.CacheWrapper.set_adapter.rst │ │ ├── extras │ │ │ ├── extras │ │ │ │ ├── cachemanagermixin │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_get.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_get_or_set.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_key_lock.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_key_log_name.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_prefix.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_sep.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.cache_set.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.clear_all_cache_keys.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.clear_cache_keys.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.default_cache_key_time.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.default_cache_time.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.gen_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.get_all_cache_keys.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.key_add_prefix.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.key_remove_prefix.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.log_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.log_delete_cache_key.rst │ │ │ │ │ └── privex.helpers.cache.extras.CacheManagerMixin.log_delete_cache_keys.rst │ │ │ │ ├── cachesettings │ │ │ │ │ ├── privex.helpers.cache.extras.CacheSettings.__init__.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheSettings.from_class.rst │ │ │ │ │ ├── privex.helpers.cache.extras.CacheSettings.gen_cache_key.rst │ │ │ │ │ └── privex.helpers.cache.extras.CacheSettings.key_add_prefix.rst │ │ │ │ ├── privex.helpers.cache.extras.CacheManagerMixin.rst │ │ │ │ ├── privex.helpers.cache.extras.CacheSettings.rst │ │ │ │ ├── privex.helpers.cache.extras.NO_LOCK.rst │ │ │ │ ├── privex.helpers.cache.extras.fake_lock_manager.rst │ │ │ │ └── privex.helpers.cache.extras.z_cache.rst │ │ │ └── privex.helpers.cache.extras.rst │ │ ├── memcachedcache │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.__init__.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.adapter_enter_reconnect.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.adapter_exit_close.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.close.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.connect.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.get.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.mcache.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.pickle_default.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.remove.rst │ │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.set.rst │ │ │ └── privex.helpers.cache.MemcachedCache.MemcachedCache.update_timeout.rst │ │ ├── memorycache │ │ │ ├── privex.helpers.cache.MemoryCache.MemoryCache.get.rst │ │ │ ├── privex.helpers.cache.MemoryCache.MemoryCache.get_or_set.rst │ │ │ ├── privex.helpers.cache.MemoryCache.MemoryCache.remove.rst │ │ │ ├── privex.helpers.cache.MemoryCache.MemoryCache.set.rst │ │ │ └── privex.helpers.cache.MemoryCache.MemoryCache.update_timeout.rst │ │ ├── post_deps │ │ │ ├── post_deps │ │ │ │ ├── asyncsqlitecachemanager │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.DEFAULT_DB.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.DEFAULT_DB_FOLDER.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.DEFAULT_DB_NAME.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.SCHEMAS.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.cache_builder.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.cache_key_exists.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.close.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.conn.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.delete_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.find_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.get_cache_all.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.insert_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.make_connection.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.purge_expired.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.set_cache_key.rst │ │ │ │ │ └── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.update_cache_key.rst │ │ │ │ ├── privex.helpers.cache.post_deps.AsyncSqliteCacheManager.rst │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.rst │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheResult.rst │ │ │ │ ├── privex.helpers.cache.post_deps.sqlite_cache_set_dbfolder.rst │ │ │ │ ├── privex.helpers.cache.post_deps.sqlite_cache_set_dbname.rst │ │ │ │ ├── sqlitecachemanager │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB_FOLDER.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB_NAME.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.SCHEMAS.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.cache_builder.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.cache_key_exists.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.close.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.conn.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.delete_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.find_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.get_cache_all.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.insert_cache_key.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.make_connection.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.purge_expired.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheManager.set_cache_key.rst │ │ │ │ │ └── privex.helpers.cache.post_deps.SqliteCacheManager.update_cache_key.rst │ │ │ │ └── sqlitecacheresult │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheResult.expires_at.rst │ │ │ │ │ ├── privex.helpers.cache.post_deps.SqliteCacheResult.name.rst │ │ │ │ │ └── privex.helpers.cache.post_deps.SqliteCacheResult.value.rst │ │ │ └── privex.helpers.cache.post_deps.rst │ │ ├── privex.helpers.cache.AsyncCacheWrapper.rst │ │ ├── privex.helpers.cache.CacheAdapter.CacheAdapter.rst │ │ ├── privex.helpers.cache.CacheWrapper.rst │ │ ├── privex.helpers.cache.MemcachedCache.MemcachedCache.rst │ │ ├── privex.helpers.cache.MemoryCache.MemoryCache.rst │ │ ├── privex.helpers.cache.RedisCache.RedisCache.rst │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.rst │ │ ├── privex.helpers.cache.adapter_get.rst │ │ ├── privex.helpers.cache.adapter_set.rst │ │ ├── privex.helpers.cache.async_cached.rst │ │ ├── privex.helpers.cache.cached.rst │ │ ├── privex.helpers.cache.get.rst │ │ ├── privex.helpers.cache.get_or_set.rst │ │ ├── privex.helpers.cache.remove.rst │ │ ├── privex.helpers.cache.set.rst │ │ ├── privex.helpers.cache.update_timeout.rst │ │ ├── rediscache │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.__init__.rst │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.get.rst │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.get_or_set.rst │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.pickle_default.rst │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.remove.rst │ │ │ ├── privex.helpers.cache.RedisCache.RedisCache.set.rst │ │ │ └── privex.helpers.cache.RedisCache.RedisCache.update_timeout.rst │ │ └── sqlitecache │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.__init__.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.close.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.connect.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.get.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.last_purged_expired.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.pickle_default.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.purge_due.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.purge_expired.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.remove.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.set.rst │ │ │ ├── privex.helpers.cache.SqliteCache.SqliteCache.update_timeout.rst │ │ │ └── privex.helpers.cache.SqliteCache.SqliteCache.wrapper.rst │ ├── collections │ │ ├── dictable │ │ │ └── privex.helpers.collections.Dictable.from_dict.rst │ │ ├── dictdataclass │ │ │ └── privex.helpers.collections.DictDataClass.from_dict.rst │ │ ├── mocker │ │ │ ├── privex.helpers.collections.Mocker.__init__.rst │ │ │ ├── privex.helpers.collections.Mocker.add_mock_module.rst │ │ │ └── privex.helpers.collections.Mocker.make_mock_class.rst │ │ ├── privex.helpers.collections.DictDataClass.rst │ │ ├── privex.helpers.collections.DictObject.rst │ │ ├── privex.helpers.collections.Dictable.rst │ │ ├── privex.helpers.collections.MockDictObj.rst │ │ ├── privex.helpers.collections.Mocker.rst │ │ ├── privex.helpers.collections.OrderedDictObject.rst │ │ ├── privex.helpers.collections.convert_dictable_namedtuple.rst │ │ ├── privex.helpers.collections.copy_class.rst │ │ ├── privex.helpers.collections.dictable_namedtuple.rst │ │ ├── privex.helpers.collections.is_namedtuple.rst │ │ ├── privex.helpers.collections.make_dict_tuple.rst │ │ └── privex.helpers.collections.subclass_dictable_namedtuple.rst │ ├── common │ │ ├── errhelpparser │ │ │ └── privex.helpers.common.ErrHelpParser.error.rst │ │ ├── layeredcontext │ │ │ ├── privex.helpers.common.LayeredContext.__init__.rst │ │ │ ├── privex.helpers.common.LayeredContext.aenter.rst │ │ │ ├── privex.helpers.common.LayeredContext.aexit.rst │ │ │ ├── privex.helpers.common.LayeredContext.class_name.rst │ │ │ ├── privex.helpers.common.LayeredContext.enter.rst │ │ │ └── privex.helpers.common.LayeredContext.exit.rst │ │ ├── privex.helpers.common.ALPHANUM.rst │ │ ├── privex.helpers.common.ErrHelpParser.rst │ │ ├── privex.helpers.common.INS_EMPTY.rst │ │ ├── privex.helpers.common.IS_XARGS.rst │ │ ├── privex.helpers.common.IS_XKWARGS.rst │ │ ├── privex.helpers.common.LayeredContext.rst │ │ ├── privex.helpers.common.SAFE_CHARS.rst │ │ ├── privex.helpers.common.T_PARAM.rst │ │ ├── privex.helpers.common.T_PARAM_DICT.rst │ │ ├── privex.helpers.common.T_PARAM_LIST.rst │ │ ├── privex.helpers.common._filter_params.rst │ │ ├── privex.helpers.common.almost.rst │ │ ├── privex.helpers.common.auto_list.rst │ │ ├── privex.helpers.common.byteify.rst │ │ ├── privex.helpers.common.call_sys.rst │ │ ├── privex.helpers.common.camel_to_snake.rst │ │ ├── privex.helpers.common.chunked.rst │ │ ├── privex.helpers.common.construct_dict.rst │ │ ├── privex.helpers.common.dec_round.rst │ │ ├── privex.helpers.common.empty.rst │ │ ├── privex.helpers.common.empty_if.rst │ │ ├── privex.helpers.common.env_bool.rst │ │ ├── privex.helpers.common.env_cast.rst │ │ ├── privex.helpers.common.env_csv.rst │ │ ├── privex.helpers.common.env_decimal.rst │ │ ├── privex.helpers.common.env_int.rst │ │ ├── privex.helpers.common.env_keyval.rst │ │ ├── privex.helpers.common.extract_settings.rst │ │ ├── privex.helpers.common.extract_type.rst │ │ ├── privex.helpers.common.filter_form.rst │ │ ├── privex.helpers.common.get_function_params.rst │ │ ├── privex.helpers.common.get_return_type.rst │ │ ├── privex.helpers.common.human_name.rst │ │ ├── privex.helpers.common.inject_items.rst │ │ ├── privex.helpers.common.io_tail.rst │ │ ├── privex.helpers.common.is_false.rst │ │ ├── privex.helpers.common.is_true.rst │ │ ├── privex.helpers.common.parse_csv.rst │ │ ├── privex.helpers.common.parse_keyval.rst │ │ ├── privex.helpers.common.random_str.rst │ │ ├── privex.helpers.common.reverse_io.rst │ │ ├── privex.helpers.common.shell_quote.rst │ │ ├── privex.helpers.common.stringify.rst │ │ ├── privex.helpers.common.strip_null.rst │ │ ├── privex.helpers.common.tail.rst │ │ ├── privex.helpers.common.typing_to_base.rst │ │ └── t_param │ │ │ ├── privex.helpers.common.T_PARAM.KEYWORD_ONLY.rst │ │ │ ├── privex.helpers.common.T_PARAM.POSITIONAL_ONLY.rst │ │ │ ├── privex.helpers.common.T_PARAM.POSITIONAL_OR_KEYWORD.rst │ │ │ ├── privex.helpers.common.T_PARAM.VAR_KEYWORD.rst │ │ │ ├── privex.helpers.common.T_PARAM.VAR_POSITIONAL.rst │ │ │ ├── privex.helpers.common.T_PARAM.__init__.rst │ │ │ ├── privex.helpers.common.T_PARAM.annotation.rst │ │ │ ├── privex.helpers.common.T_PARAM.default.rst │ │ │ ├── privex.helpers.common.T_PARAM.kind.rst │ │ │ ├── privex.helpers.common.T_PARAM.name.rst │ │ │ └── privex.helpers.common.T_PARAM.replace.rst │ ├── converters │ │ ├── privex.helpers.converters.convert_bool_int.rst │ │ ├── privex.helpers.converters.convert_datetime.rst │ │ ├── privex.helpers.converters.convert_int_bool.rst │ │ └── privex.helpers.converters.convert_unixtime_datetime.rst │ ├── crypto │ │ ├── base │ │ │ ├── privex.helpers.crypto.base.auto_b64decode.rst │ │ │ └── privex.helpers.crypto.base.is_base64.rst │ │ ├── encrypthelper │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.__init__.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.decrypt_str.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.encrypt_str.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.from_file.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.from_password.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.generate_key.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.get_fernet.rst │ │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.is_encrypted.rst │ │ │ └── privex.helpers.crypto.EncryptHelper.EncryptHelper.password_key.rst │ │ ├── keymanager │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.__init__.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.backend.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.combined_key_types.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.curves.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.decrypt.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.default_formats.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.default_gen.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.encrypt.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.export_key.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.export_private.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.export_public.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.generate_keypair.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.generate_keypair_raw.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.generators.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.identify_algorithm.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.load_key.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.load_keyfile.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.output_keypair.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.private_key_types.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.public_key_types.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.raw_priv_types.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.raw_pub_types.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.sign.rst │ │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.type_name_map.rst │ │ │ └── privex.helpers.crypto.KeyManager.KeyManager.verify.rst │ │ ├── privex.helpers.crypto.EncryptHelper.EncryptHelper.rst │ │ ├── privex.helpers.crypto.KeyManager.Format.rst │ │ ├── privex.helpers.crypto.KeyManager.KeyManager.rst │ │ └── privex.helpers.crypto.base.rst │ ├── decorators │ │ ├── fo │ │ │ ├── privex.helpers.decorators.FO.KWARG_ONLY.rst │ │ │ ├── privex.helpers.decorators.FO.MIX.rst │ │ │ ├── privex.helpers.decorators.FO.POS_AUTO.rst │ │ │ └── privex.helpers.decorators.FO.POS_ONLY.rst │ │ ├── formatopt │ │ │ ├── privex.helpers.decorators.FormatOpt.KWARG_ONLY.rst │ │ │ ├── privex.helpers.decorators.FormatOpt.MIX.rst │ │ │ ├── privex.helpers.decorators.FormatOpt.POS_AUTO.rst │ │ │ └── privex.helpers.decorators.FormatOpt.POS_ONLY.rst │ │ ├── privex.helpers.decorators.FO.rst │ │ ├── privex.helpers.decorators.FormatOpt.rst │ │ ├── privex.helpers.decorators.async_retry.rst │ │ ├── privex.helpers.decorators.mock_decorator.rst │ │ ├── privex.helpers.decorators.r_cache.rst │ │ ├── privex.helpers.decorators.r_cache_async.rst │ │ └── privex.helpers.decorators.retry_on_err.rst │ ├── django │ │ ├── privex.helpers.django.handle_error.rst │ │ ├── privex.helpers.django.is_database_synchronized.rst │ │ ├── privex.helpers.django.model_to_dict.rst │ │ └── privex.helpers.django.to_json.rst │ ├── exceptions │ │ ├── privex.helpers.exceptions.BaseDNSException.rst │ │ ├── privex.helpers.exceptions.BoundaryException.rst │ │ ├── privex.helpers.exceptions.CacheNotFound.rst │ │ ├── privex.helpers.exceptions.DomainNotFound.rst │ │ ├── privex.helpers.exceptions.EncryptKeyMissing.rst │ │ ├── privex.helpers.exceptions.EncryptionError.rst │ │ ├── privex.helpers.exceptions.InvalidDNSRecord.rst │ │ ├── privex.helpers.exceptions.InvalidFormat.rst │ │ ├── privex.helpers.exceptions.NetworkUnreachable.rst │ │ ├── privex.helpers.exceptions.NotConfigured.rst │ │ ├── privex.helpers.exceptions.PrivexException.rst │ │ └── privex.helpers.exceptions.SysCallError.rst │ ├── extras │ │ ├── attrs │ │ │ ├── attribdictable │ │ │ │ ├── privex.helpers.extras.attrs.AttribDictable.__init__.rst │ │ │ │ └── privex.helpers.extras.attrs.AttribDictable.get.rst │ │ │ └── privex.helpers.extras.attrs.AttribDictable.rst │ │ ├── git │ │ │ ├── _asyncgit │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.__getattr__.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.__init__.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit._repo.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.add.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.branch.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.checkout.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.commit.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.get_current_branch.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.get_current_commit.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.get_current_tag.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.git.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.init.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.log.rst │ │ │ │ ├── privex.helpers.extras.git._AsyncGit.status.rst │ │ │ │ └── privex.helpers.extras.git._AsyncGit.tag.rst │ │ │ ├── privex.helpers.extras.git._AsyncGit.rst │ │ │ ├── privex.helpers.extras.git._cwd_git.rst │ │ │ ├── privex.helpers.extras.git.get_current_branch.rst │ │ │ ├── privex.helpers.extras.git.get_current_commit.rst │ │ │ └── privex.helpers.extras.git.get_current_tag.rst │ │ ├── privex.helpers.extras.attrs.rst │ │ └── privex.helpers.extras.git.rst │ ├── geoip │ │ ├── geoipresult │ │ │ └── privex.helpers.geoip.GeoIPResult.__init__.rst │ │ ├── privex.helpers.geoip.GeoIPResult.rst │ │ ├── privex.helpers.geoip.cleanup.rst │ │ ├── privex.helpers.geoip.cleanup_geoip.rst │ │ ├── privex.helpers.geoip.geoip_manager.rst │ │ ├── privex.helpers.geoip.geolocate_ip.rst │ │ └── privex.helpers.geoip.geolocate_ips.rst │ ├── index.rst │ ├── net │ │ ├── privex.helpers.net.asn_to_name.rst │ │ ├── privex.helpers.net.check_host.rst │ │ ├── privex.helpers.net.check_host_async.rst │ │ ├── privex.helpers.net.get_rdns.rst │ │ ├── privex.helpers.net.get_rdns_async.rst │ │ ├── privex.helpers.net.get_rdns_multi.rst │ │ ├── privex.helpers.net.ip4_to_rdns.rst │ │ ├── privex.helpers.net.ip6_to_rdns.rst │ │ ├── privex.helpers.net.ip_is_v4.rst │ │ ├── privex.helpers.net.ip_is_v6.rst │ │ ├── privex.helpers.net.ip_to_rdns.rst │ │ ├── privex.helpers.net.ping.rst │ │ ├── privex.helpers.net.resolve_ip.rst │ │ ├── privex.helpers.net.resolve_ip_async.rst │ │ ├── privex.helpers.net.resolve_ips.rst │ │ ├── privex.helpers.net.resolve_ips_async.rst │ │ ├── privex.helpers.net.resolve_ips_multi.rst │ │ └── privex.helpers.net.resolve_ips_multi_async.rst │ ├── plugin │ │ ├── privex.helpers.plugin._get_all_threadstore.rst │ │ ├── privex.helpers.plugin._get_threadstore.rst │ │ ├── privex.helpers.plugin._set_threadstore.rst │ │ ├── privex.helpers.plugin.clean_threadstore.rst │ │ ├── privex.helpers.plugin.close_memcached_async.rst │ │ ├── privex.helpers.plugin.close_redis.rst │ │ ├── privex.helpers.plugin.close_redis_async.rst │ │ ├── privex.helpers.plugin.configure_memcached_async.rst │ │ ├── privex.helpers.plugin.configure_redis.rst │ │ ├── privex.helpers.plugin.configure_redis_async.rst │ │ ├── privex.helpers.plugin.connect_geoip.rst │ │ ├── privex.helpers.plugin.connect_memcached_async.rst │ │ ├── privex.helpers.plugin.connect_redis.rst │ │ ├── privex.helpers.plugin.connect_redis_async.rst │ │ ├── privex.helpers.plugin.get_geodbs.rst │ │ ├── privex.helpers.plugin.get_geoip.rst │ │ ├── privex.helpers.plugin.get_geoip_db.rst │ │ ├── privex.helpers.plugin.get_memcached_async.rst │ │ ├── privex.helpers.plugin.get_redis.rst │ │ ├── privex.helpers.plugin.get_redis_async.rst │ │ ├── privex.helpers.plugin.reset_geoip.rst │ │ ├── privex.helpers.plugin.reset_memcached_async.rst │ │ ├── privex.helpers.plugin.reset_redis.rst │ │ └── privex.helpers.plugin.reset_redis_async.rst │ ├── privex.helpers.asyncx.rst │ ├── privex.helpers.black_magic.rst │ ├── privex.helpers.cache.rst │ ├── privex.helpers.collections.rst │ ├── privex.helpers.common.rst │ ├── privex.helpers.converters.rst │ ├── privex.helpers.crypto.rst │ ├── privex.helpers.decorators.rst │ ├── privex.helpers.django.rst │ ├── privex.helpers.exceptions.rst │ ├── privex.helpers.extras.rst │ ├── privex.helpers.geoip.rst │ ├── privex.helpers.net.rst │ ├── privex.helpers.plugin.rst │ ├── privex.helpers.settings.rst │ ├── privex.helpers.setuppy.rst │ ├── privex.helpers.thread.rst │ ├── privex.helpers.types.rst │ ├── settings │ │ ├── privex.helpers.settings.BASE_DIR.rst │ │ ├── privex.helpers.settings.DEFAULT_CACHE_TIMEOUT.rst │ │ ├── privex.helpers.settings.EXTRAS_FOLDER.rst │ │ ├── privex.helpers.settings.GEOASN.rst │ │ ├── privex.helpers.settings.GEOASN_DETECTED.rst │ │ ├── privex.helpers.settings.GEOASN_NAME.rst │ │ ├── privex.helpers.settings.GEOCITY.rst │ │ ├── privex.helpers.settings.GEOCITY_DETECTED.rst │ │ ├── privex.helpers.settings.GEOCITY_NAME.rst │ │ ├── privex.helpers.settings.GEOCOUNTRY.rst │ │ ├── privex.helpers.settings.GEOCOUNTRY_DETECTED.rst │ │ ├── privex.helpers.settings.GEOCOUNTRY_NAME.rst │ │ ├── privex.helpers.settings.GEOIP_DIR.rst │ │ ├── privex.helpers.settings.MEMCACHED_HOST.rst │ │ ├── privex.helpers.settings.MEMCACHED_PORT.rst │ │ ├── privex.helpers.settings.REDIS_DB.rst │ │ ├── privex.helpers.settings.REDIS_HOST.rst │ │ ├── privex.helpers.settings.REDIS_PORT.rst │ │ ├── privex.helpers.settings.VERSION_FILE.rst │ │ └── privex.helpers.settings.search_geoip.rst │ ├── setuppy │ │ ├── bump │ │ │ ├── privex.helpers.setuppy.bump.bump_version.rst │ │ │ ├── privex.helpers.setuppy.bump.default_current_ver.rst │ │ │ ├── privex.helpers.setuppy.bump.default_replace_func.rst │ │ │ ├── privex.helpers.setuppy.bump.get_current_ver.rst │ │ │ └── privex.helpers.setuppy.bump.version_replace.rst │ │ ├── commands │ │ │ ├── bumpcommand │ │ │ │ ├── privex.helpers.setuppy.commands.BumpCommand.description.rst │ │ │ │ ├── privex.helpers.setuppy.commands.BumpCommand.finalize_options.rst │ │ │ │ ├── privex.helpers.setuppy.commands.BumpCommand.initialize_options.rst │ │ │ │ ├── privex.helpers.setuppy.commands.BumpCommand.run.rst │ │ │ │ └── privex.helpers.setuppy.commands.BumpCommand.user_options.rst │ │ │ ├── extrascommand │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.description.rst │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.finalize_options.rst │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.initialize_options.rst │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.install_extras.rst │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.run.rst │ │ │ │ ├── privex.helpers.setuppy.commands.ExtrasCommand.save_list.rst │ │ │ │ └── privex.helpers.setuppy.commands.ExtrasCommand.user_options.rst │ │ │ ├── privex.helpers.setuppy.commands.BumpCommand.rst │ │ │ └── privex.helpers.setuppy.commands.ExtrasCommand.rst │ │ ├── common │ │ │ ├── privex.helpers.setuppy.common.extras.rst │ │ │ ├── privex.helpers.setuppy.common.extras_require.rst │ │ │ ├── privex.helpers.setuppy.common.pip_requirement.rst │ │ │ ├── privex.helpers.setuppy.common.reqs.rst │ │ │ └── privex.helpers.setuppy.common.strip_comments.rst │ │ ├── privex.helpers.setuppy.bump.rst │ │ ├── privex.helpers.setuppy.commands.rst │ │ └── privex.helpers.setuppy.common.rst │ ├── tests.rst │ ├── tests │ │ ├── base │ │ │ ├── privexbasecase │ │ │ │ ├── tests.base.PrivexBaseCase.empty_lst.rst │ │ │ │ ├── tests.base.PrivexBaseCase.empty_vals.rst │ │ │ │ ├── tests.base.PrivexBaseCase.empty_zero.rst │ │ │ │ ├── tests.base.PrivexBaseCase.falsey.rst │ │ │ │ ├── tests.base.PrivexBaseCase.falsey_empty.rst │ │ │ │ └── tests.base.PrivexBaseCase.truthy.rst │ │ │ ├── tests.base.EmptyIter.rst │ │ │ └── tests.base.PrivexBaseCase.rst │ │ ├── test_bool │ │ │ ├── testboolhelpers │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_empty_combined.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_empty_lst.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_empty_vals.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_empty_zero.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_emptyif_only_empty.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_emptyif_only_value.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_emptyif_with_is_not_empty.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_isfalse_falsey.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_isfalse_truthy.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_istrue_falsey.rst │ │ │ │ ├── tests.test_bool.TestBoolHelpers.test_istrue_truthy.rst │ │ │ │ └── tests.test_bool.TestBoolHelpers.test_notempty.rst │ │ │ └── tests.test_bool.TestBoolHelpers.rst │ │ ├── test_cache │ │ │ ├── testcachedecoratormemory │ │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.cache.rst │ │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.setUpClass.rst │ │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.tearDown.rst │ │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.test_rcache_callable.rst │ │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.test_rcache_rand.rst │ │ │ │ └── tests.test_cache.TestCacheDecoratorMemory.test_rcache_rand_dynamic.rst │ │ │ ├── testcachedecoratorredis │ │ │ │ ├── tests.test_cache.TestCacheDecoratorRedis.pytestmark.rst │ │ │ │ └── tests.test_cache.TestCacheDecoratorRedis.setUpClass.rst │ │ │ ├── testmemorycache │ │ │ │ ├── tests.test_cache.TestMemoryCache.cache_keys.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.setUpClass.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.tearDownClass.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.test_cache_expire.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.test_cache_remove.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.test_cache_set.rst │ │ │ │ ├── tests.test_cache.TestMemoryCache.test_cache_update_timeout.rst │ │ │ │ └── tests.test_cache.TestMemoryCache.test_cache_update_timeout_raise.rst │ │ │ ├── testrediscache │ │ │ │ ├── tests.test_cache.TestRedisCache.pytestmark.rst │ │ │ │ └── tests.test_cache.TestRedisCache.setUpClass.rst │ │ │ ├── tests.test_cache.TestCacheDecoratorMemory.rst │ │ │ ├── tests.test_cache.TestCacheDecoratorRedis.rst │ │ │ ├── tests.test_cache.TestMemoryCache.rst │ │ │ └── tests.test_cache.TestRedisCache.rst │ │ ├── test_collections │ │ │ ├── testdictablenamedtuple │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.example_items.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.setUp.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_asdict.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_convert.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_dict_cast.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_get_attr.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_get_index.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_get_item.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_metadata.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_set_attr.rst │ │ │ │ ├── tests.test_collections.TestDictableNamedtuple.test_set_item.rst │ │ │ │ └── tests.test_collections.TestDictableNamedtuple.test_subclass.rst │ │ │ ├── testdictobject │ │ │ │ ├── tests.test_collections.TestDictObject.test_convert_from_dict.rst │ │ │ │ ├── tests.test_collections.TestDictObject.test_convert_to_dict.rst │ │ │ │ ├── tests.test_collections.TestDictObject.test_json_dumps.rst │ │ │ │ ├── tests.test_collections.TestDictObject.test_json_dumps_nested.rst │ │ │ │ ├── tests.test_collections.TestDictObject.test_set_attr.rst │ │ │ │ └── tests.test_collections.TestDictObject.test_set_item.rst │ │ │ ├── testisnamedtuple │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.dict_persons.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.named_persons.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_dictable_namedtuple.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_dictable_namedtuple_plus_invalid.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_dictable_plus_normal_namedtuple.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_class.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_dict.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_float.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_int.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_list.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_not_namedtuple_tuple.rst │ │ │ │ ├── tests.test_collections.TestIsNamedTuple.test_real_namedtuple.rst │ │ │ │ └── tests.test_collections.TestIsNamedTuple.test_real_namedtuple_plus_invalid.rst │ │ │ ├── testordereddictobject │ │ │ │ ├── tests.test_collections.TestOrderedDictObject.test_convert_from_dict.rst │ │ │ │ ├── tests.test_collections.TestOrderedDictObject.test_convert_to_dict.rst │ │ │ │ ├── tests.test_collections.TestOrderedDictObject.test_json_dumps.rst │ │ │ │ ├── tests.test_collections.TestOrderedDictObject.test_json_dumps_nested.rst │ │ │ │ ├── tests.test_collections.TestOrderedDictObject.test_set_attr.rst │ │ │ │ └── tests.test_collections.TestOrderedDictObject.test_set_item.rst │ │ │ ├── tests.test_collections.TestDictObject.rst │ │ │ ├── tests.test_collections.TestDictableNamedtuple.rst │ │ │ ├── tests.test_collections.TestIsNamedTuple.rst │ │ │ └── tests.test_collections.TestOrderedDictObject.rst │ │ ├── test_converters │ │ │ ├── testconvertdate │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_int.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_int_ms.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_int_str.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_str.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_str_2.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_str_3.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_date_str_4.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_unixtime_int.rst │ │ │ │ ├── tests.test_converters.TestConvertDate.test_convert_unixtime_int_ms.rst │ │ │ │ └── tests.test_converters.TestConvertDate.test_convert_unixtime_int_str.rst │ │ │ ├── testconvertgeneral │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_bool_int_empty.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_bool_int_empty_cust.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_bool_int_empty_fail.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_bool_int_false.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_bool_int_true.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_int_bool_empty.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_int_bool_empty_cust.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_int_bool_empty_fail.rst │ │ │ │ ├── tests.test_converters.TestConvertGeneral.test_convert_int_bool_false.rst │ │ │ │ └── tests.test_converters.TestConvertGeneral.test_convert_int_bool_true.rst │ │ │ ├── tests.test_converters.TestConvertDate.rst │ │ │ └── tests.test_converters.TestConvertGeneral.rst │ │ ├── test_crypto │ │ │ ├── cryptobasecase │ │ │ │ └── tests.test_crypto.CryptoBaseCase.fake_b64_key.rst │ │ │ ├── testencrypthelper │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_corrupt_key_encrypt.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_generate_key_enc_dec.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_invalid_key_decrypt.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_is_encrypted.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_password_key_diffpass.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_password_key_diffsalt.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_password_key_equal.rst │ │ │ │ ├── tests.test_crypto.TestEncryptHelper.test_password_key_gensalt.rst │ │ │ │ └── tests.test_crypto.TestEncryptHelper.txt.rst │ │ │ ├── testkeymanagergeneration │ │ │ │ ├── tests.test_crypto.TestKeyManagerGeneration.test_ecdsa_gen.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerGeneration.test_ed25519_gen.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerGeneration.test_output_keypair.rst │ │ │ │ └── tests.test_crypto.TestKeyManagerGeneration.test_rsa_gen.rst │ │ │ ├── testkeymanagerload │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_ecdsa_load.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_ed25519_load.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_invalid.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_corrupt_private.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_corrupt_public.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_corrupt_public_2.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_noexist.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_sign_verify_rsa.rst │ │ │ │ └── tests.test_crypto.TestKeyManagerLoad.test_rsa_load.rst │ │ │ ├── testkeymanagersignverifyencrypt │ │ │ │ ├── tests.test_crypto.TestKeyManagerSignVerifyEncrypt.test_ecdsa_sign_verify.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerSignVerifyEncrypt.test_ed25519_sign_verify.rst │ │ │ │ ├── tests.test_crypto.TestKeyManagerSignVerifyEncrypt.test_rsa_encrypt_decrypt.rst │ │ │ │ └── tests.test_crypto.TestKeyManagerSignVerifyEncrypt.test_rsa_sign_verify.rst │ │ │ ├── tests.test_crypto.CryptoBaseCase.rst │ │ │ ├── tests.test_crypto.TestEncryptHelper.rst │ │ │ ├── tests.test_crypto.TestKeyManagerGeneration.rst │ │ │ ├── tests.test_crypto.TestKeyManagerLoad.rst │ │ │ └── tests.test_crypto.TestKeyManagerSignVerifyEncrypt.rst │ │ ├── test_extras │ │ │ ├── example │ │ │ │ └── tests.test_extras.Example.__init__.rst │ │ │ ├── testattrs │ │ │ │ ├── tests.test_extras.TestAttrs.pytestmark.rst │ │ │ │ ├── tests.test_extras.TestAttrs.test_dictable_cast_dict.rst │ │ │ │ └── tests.test_extras.TestAttrs.test_dictable_set_get.rst │ │ │ ├── testgit │ │ │ │ ├── tests.test_extras.TestGit.setUp.rst │ │ │ │ ├── tests.test_extras.TestGit.tearDown.rst │ │ │ │ ├── tests.test_extras.TestGit.test_add.rst │ │ │ │ ├── tests.test_extras.TestGit.test_add_async.rst │ │ │ │ ├── tests.test_extras.TestGit.test_checkout.rst │ │ │ │ ├── tests.test_extras.TestGit.test_checkout_async.rst │ │ │ │ ├── tests.test_extras.TestGit.test_commit.rst │ │ │ │ ├── tests.test_extras.TestGit.test_commit_async.rst │ │ │ │ ├── tests.test_extras.TestGit.test_get_current_branch.rst │ │ │ │ ├── tests.test_extras.TestGit.test_get_current_commit.rst │ │ │ │ ├── tests.test_extras.TestGit.test_get_current_tag.rst │ │ │ │ ├── tests.test_extras.TestGit.test_init.rst │ │ │ │ └── tests.test_extras.TestGit.test_init_async.rst │ │ │ ├── tests.test_extras.Example.rst │ │ │ ├── tests.test_extras.TestAttrs.rst │ │ │ └── tests.test_extras.TestGit.rst │ │ ├── test_general │ │ │ ├── baseone │ │ │ │ └── tests.general.test_inspect.BaseOne.__init__.rst │ │ │ ├── basetwo │ │ │ │ └── tests.general.test_inspect.BaseTwo.__init__.rst │ │ │ ├── inheritexample │ │ │ │ └── tests.general.test_inspect.InheritExample.__init__.rst │ │ │ ├── simpleexample │ │ │ │ └── tests.general.test_inspect.SimpleExample.__init__.rst │ │ │ ├── testgeneral │ │ │ │ ├── tests.general.test_general.TestGeneral.setUp.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_call_sys_async_read.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_call_sys_async_write.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_call_sys_read.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_call_sys_write.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_chunked.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_filter_form_dict1.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_filter_form_dict_cast.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_human_name_class.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_human_name_func.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_human_name_str_bytes.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_inject_items.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_inject_items_2.rst │ │ │ │ ├── tests.general.test_general.TestGeneral.test_retry_on_err.rst │ │ │ │ └── tests.general.test_general.TestGeneral.test_retry_on_err_return.rst │ │ │ ├── testgeneralalmost │ │ │ │ ├── tests.general.test_general.TestGeneralAlmost.test_four_numbers.rst │ │ │ │ ├── tests.general.test_general.TestGeneralAlmost.test_four_numbers_pt1tolerance.rst │ │ │ │ ├── tests.general.test_general.TestGeneralAlmost.test_two_numbers.rst │ │ │ │ ├── tests.general.test_general.TestGeneralAlmost.test_two_numbers_fail_kwarg.rst │ │ │ │ ├── tests.general.test_general.TestGeneralAlmost.test_two_numbers_pt1tolerance.rst │ │ │ │ └── tests.general.test_general.TestGeneralAlmost.test_two_numbers_test_kwarg.rst │ │ │ ├── testgeneralextractsettings │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.ex_settings.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_case_sensitive.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_case_sensitive_fail.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_case_sensitive_lowercase_keys.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_case_sensitive_lowercase_keys_fail.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_class.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_class_instance.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_class_instance_case_sensitive.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_class_instance_case_sensitive_fail.rst │ │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_dict.rst │ │ │ │ └── tests.general.test_general.TestGeneralExtractSettings.test_extract_settings_modules.rst │ │ │ ├── testgeneraltail │ │ │ │ ├── tests.general.test_general.TestGeneralTail.test_io_tail_500_lines_300.rst │ │ │ │ ├── tests.general.test_general.TestGeneralTail.test_tail_10_lines_10.rst │ │ │ │ ├── tests.general.test_general.TestGeneralTail.test_tail_10_lines_3.rst │ │ │ │ ├── tests.general.test_general.TestGeneralTail.test_tail_10_lines_5.rst │ │ │ │ ├── tests.general.test_general.TestGeneralTail.test_tail_500_lines_20.rst │ │ │ │ └── tests.general.test_general.TestGeneralTail.test_tail_500_lines_300.rst │ │ │ ├── testinspectfunctions │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_construct_dict_class.rst │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_construct_dict_func.rst │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_function_params_class.rst │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_function_params_class_no_parents.rst │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_function_params_class_parents.rst │ │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.test_function_params_class_parents_merge.rst │ │ │ │ └── tests.general.test_inspect.TestInspectFunctions.test_function_params_func.rst │ │ │ ├── testmocker │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_add_modules.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_attributes.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_items.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_items_attributes_equiv.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_make_class.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_make_class_module.rst │ │ │ │ ├── tests.general.test_mocker.TestMocker.test_mocker_make_class_module_isolation.rst │ │ │ │ └── tests.general.test_mocker.TestMocker.test_mocker_make_class_not_instance.rst │ │ │ ├── tests.general.test_general.TestGeneral.rst │ │ │ ├── tests.general.test_general.TestGeneralAlmost.rst │ │ │ ├── tests.general.test_general.TestGeneralExtractSettings.rst │ │ │ ├── tests.general.test_general.TestGeneralTail.rst │ │ │ ├── tests.general.test_general.rst │ │ │ ├── tests.general.test_inspect.BaseOne.rst │ │ │ ├── tests.general.test_inspect.BaseTwo.rst │ │ │ ├── tests.general.test_inspect.InheritExample.rst │ │ │ ├── tests.general.test_inspect.SimpleExample.rst │ │ │ ├── tests.general.test_inspect.TestInspectFunctions.rst │ │ │ ├── tests.general.test_inspect.rst │ │ │ ├── tests.general.test_inspect.some_func.rst │ │ │ ├── tests.general.test_mocker.TestMocker.rst │ │ │ └── tests.general.test_mocker.rst │ │ ├── test_net │ │ │ ├── testnet │ │ │ │ ├── tests.test_net.TestNet.test_asn_to_name_erroneous.rst │ │ │ │ ├── tests.test_net.TestNet.test_asn_to_name_erroneous_2.rst │ │ │ │ ├── tests.test_net.TestNet.test_asn_to_name_int.rst │ │ │ │ ├── tests.test_net.TestNet.test_asn_to_name_str.rst │ │ │ │ ├── tests.test_net.TestNet.test_ping.rst │ │ │ │ └── tests.test_net.TestNet.test_ping_v6.rst │ │ │ └── tests.test_net.TestNet.rst │ │ ├── test_parse │ │ │ ├── testparsehelpers │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_csv_single.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_csv_spaced.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_env_bool_false.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_env_bool_true.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_env_nonexist_bool.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_kval_clean.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_kval_custom_clean.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_kval_custom_spaced.rst │ │ │ │ ├── tests.test_parse.TestParseHelpers.test_kval_single.rst │ │ │ │ └── tests.test_parse.TestParseHelpers.test_kval_spaced.rst │ │ │ └── tests.test_parse.TestParseHelpers.rst │ │ ├── test_rdns │ │ │ ├── testipreversedns │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_arpa_boundary_16bit.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_arpa_boundary_24bit.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_inv_boundary.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_inv_boundary_2.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_invalid.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_invalid_2.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v4_to_arpa.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_arpa_boundary_16bit.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_arpa_boundary_32bit.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_inv_boundary.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_inv_boundary_2.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_invalid.rst │ │ │ │ ├── tests.test_rdns.TestIPReverseDNS.test_v6_invalid_2.rst │ │ │ │ └── tests.test_rdns.TestIPReverseDNS.test_v6_to_arpa.rst │ │ │ └── tests.test_rdns.TestIPReverseDNS.rst │ │ ├── tests.asyncx.rst │ │ ├── tests.base.rst │ │ ├── tests.cache.rst │ │ ├── tests.general.rst │ │ ├── tests.test_bool.rst │ │ ├── tests.test_cache.rst │ │ ├── tests.test_collections.rst │ │ ├── tests.test_converters.rst │ │ ├── tests.test_crypto.rst │ │ ├── tests.test_extras.rst │ │ ├── tests.test_net.rst │ │ ├── tests.test_parse.rst │ │ └── tests.test_rdns.rst │ ├── thread │ │ ├── betterevent │ │ │ ├── privex.helpers.thread.BetterEvent.__init__.rst │ │ │ ├── privex.helpers.thread.BetterEvent.clear.rst │ │ │ ├── privex.helpers.thread.BetterEvent.set.rst │ │ │ ├── privex.helpers.thread.BetterEvent.wait.rst │ │ │ ├── privex.helpers.thread.BetterEvent.wait_clear.rst │ │ │ └── privex.helpers.thread.BetterEvent.wait_set.rst │ │ ├── privex.helpers.thread.BetterEvent.rst │ │ ├── privex.helpers.thread.SafeLoopThread.rst │ │ ├── privex.helpers.thread.StopperThread.rst │ │ ├── privex.helpers.thread.event_multi_wait.rst │ │ ├── privex.helpers.thread.event_multi_wait_all.rst │ │ ├── privex.helpers.thread.event_multi_wait_any.rst │ │ ├── privex.helpers.thread.lock_acquire_timeout.rst │ │ ├── safeloopthread │ │ │ ├── privex.helpers.thread.SafeLoopThread.__init__.rst │ │ │ ├── privex.helpers.thread.SafeLoopThread.loop.rst │ │ │ ├── privex.helpers.thread.SafeLoopThread.loop_sleep.rst │ │ │ ├── privex.helpers.thread.SafeLoopThread.pause_sleep.rst │ │ │ └── privex.helpers.thread.SafeLoopThread.run.rst │ │ └── stopperthread │ │ │ ├── privex.helpers.thread.StopperThread.__init__.rst │ │ │ ├── privex.helpers.thread.StopperThread.emit_pause.rst │ │ │ ├── privex.helpers.thread.StopperThread.emit_start.rst │ │ │ ├── privex.helpers.thread.StopperThread.emit_stop.rst │ │ │ ├── privex.helpers.thread.StopperThread.emit_unpause.rst │ │ │ ├── privex.helpers.thread.StopperThread.should_pause.rst │ │ │ ├── privex.helpers.thread.StopperThread.should_run.rst │ │ │ └── privex.helpers.thread.StopperThread.should_stop.rst │ └── types │ │ ├── privex.helpers.types.AnyNum.rst │ │ ├── privex.helpers.types.C.rst │ │ ├── privex.helpers.types.CL.rst │ │ ├── privex.helpers.types.IP_NET_OR_STR.rst │ │ ├── privex.helpers.types.IP_OR_STR.rst │ │ ├── privex.helpers.types.K.rst │ │ ├── privex.helpers.types.NET_OR_STR.rst │ │ ├── privex.helpers.types.NO_RESULT.rst │ │ ├── privex.helpers.types.Number.rst │ │ ├── privex.helpers.types.NumberStr.rst │ │ ├── privex.helpers.types.STRBYTES.rst │ │ ├── privex.helpers.types.T.rst │ │ ├── privex.helpers.types.USE_ORIG_VAR.rst │ │ ├── privex.helpers.types.V.rst │ │ └── privex.helpers.types.VAL_FUNC_CORO.rst │ ├── index.rst │ └── install.rst ├── extras ├── cache.txt ├── crypto.txt ├── dev.txt ├── dev_general.txt ├── django.txt ├── docs.txt ├── extras.txt ├── full.txt ├── geoip.txt ├── net.txt ├── setuppy.txt └── tests.txt ├── lib └── lib_test.sh ├── local_tests.sh ├── privex ├── __init__.py └── helpers │ ├── __init__.py │ ├── asyncx.py │ ├── black_magic.py │ ├── cache │ ├── CacheAdapter.py │ ├── MemcachedCache.py │ ├── MemoryCache.py │ ├── RedisCache.py │ ├── SqliteCache.py │ ├── __init__.py │ ├── asyncx │ │ ├── AsyncMemcachedCache.py │ │ ├── AsyncMemoryCache.py │ │ ├── AsyncRedisCache.py │ │ ├── AsyncSqliteCache.py │ │ ├── __init__.py │ │ └── base.py │ ├── extras.py │ └── post_deps.py │ ├── collections.py │ ├── common.py │ ├── converters.py │ ├── crypto │ ├── EncryptHelper.py │ ├── KeyManager.py │ ├── __init__.py │ └── base.py │ ├── decorators.py │ ├── django.py │ ├── exceptions.py │ ├── extras │ ├── __init__.py │ ├── attrs.py │ └── git.py │ ├── geoip.py │ ├── mockers.py │ ├── net │ ├── __init__.py │ ├── base.py │ ├── common.py │ ├── dns.py │ ├── socket.py │ └── util.py │ ├── plugin.py │ ├── settings.py │ ├── setuppy │ ├── __init__.py │ ├── bump.py │ ├── commands.py │ └── common.py │ ├── thread.py │ ├── types.py │ └── version.py ├── privex_contribution_agreement.txt ├── privex_stubs └── privex │ ├── __init__.pyi │ ├── db │ └── helpers │ ├── __init__.pyi │ ├── asyncx.pyi │ ├── black_magic.pyi │ ├── cache │ ├── CacheAdapter.pyi │ ├── MemcachedCache.pyi │ ├── MemoryCache.pyi │ ├── RedisCache.pyi │ ├── SqliteCache.pyi │ ├── __init__.pyi │ ├── asyncx │ │ ├── AsyncMemcachedCache.pyi │ │ ├── AsyncMemoryCache.pyi │ │ ├── AsyncRedisCache.pyi │ │ ├── AsyncSqliteCache.pyi │ │ ├── __init__.pyi │ │ └── base.pyi │ ├── extras.pyi │ └── post_deps.pyi │ ├── collections.pyi │ ├── common.pyi │ ├── converters.pyi │ ├── crypto │ ├── EncryptHelper.pyi │ ├── KeyManager.pyi │ ├── __init__.pyi │ └── base.pyi │ ├── decorators.pyi │ ├── exceptions.pyi │ ├── extras │ ├── __init__.pyi │ ├── attrs.pyi │ └── git.pyi │ ├── geoip.pyi │ ├── mockers.pyi │ ├── net │ ├── __init__.pyi │ ├── base.pyi │ ├── common.pyi │ ├── dns.pyi │ ├── socket.pyi │ └── util.pyi │ ├── plugin.pyi │ ├── settings.pyi │ ├── setuppy │ ├── __init__.pyi │ ├── bump.pyi │ ├── commands.pyi │ └── common.pyi │ ├── thread.pyi │ ├── types.pyi │ └── version.pyi ├── pytest.ini ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── __main__.py ├── asyncx ├── __init__.py ├── test_async_common.py └── test_async_retry.py ├── base.py ├── cache ├── test_async_memcached.py ├── test_async_memory.py ├── test_async_redis.py ├── test_async_sqlite.py └── test_async_wrapper.py ├── general ├── __init__.py ├── test_general.py ├── test_inspect.py └── test_mocker.py ├── test_bool.py ├── test_cache.py ├── test_collections.py ├── test_converters.py ├── test_crypto.py ├── test_extras.py ├── test_geoip.py ├── test_net.py ├── test_parse.py ├── test_rdns.py └── test_thread.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | include=privex 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Someguy123] 4 | custom: ['https://www.privex.io'] 5 | -------------------------------------------------------------------------------- /docs/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privex/python-helpers/f4a4a0229123bd31f6bb297e4114a95d82f0c0a1/docs/source/__init__.py -------------------------------------------------------------------------------- /docs/source/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- 1 | {{ name | escape | underline}} 2 | 3 | .. currentmodule:: {{ module }} 4 | 5 | .. auto{{ objtype }}:: {{ objname }} 6 | -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/aobject/privex.helpers.asyncx.aobject.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. automethod:: aobject.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.async_sync.rst: -------------------------------------------------------------------------------- 1 | async\_sync 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: async_sync -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.await_if_needed.rst: -------------------------------------------------------------------------------- 1 | await\_if\_needed 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: await_if_needed -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.awaitable.rst: -------------------------------------------------------------------------------- 1 | awaitable 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: awaitable -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.awaitable_class.rst: -------------------------------------------------------------------------------- 1 | awaitable\_class 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: awaitable_class -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.call_sys_async.rst: -------------------------------------------------------------------------------- 1 | call\_sys\_async 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: call_sys_async -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.coro_thread_func.rst: -------------------------------------------------------------------------------- 1 | coro\_thread\_func 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: coro_thread_func -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.get_async_type.rst: -------------------------------------------------------------------------------- 1 | get\_async\_type 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: get_async_type -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.is_async_context.rst: -------------------------------------------------------------------------------- 1 | is\_async\_context 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: is_async_context -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.loop_run.rst: -------------------------------------------------------------------------------- 1 | loop\_run 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: loop_run -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.run_coro_thread.rst: -------------------------------------------------------------------------------- 1 | run\_coro\_thread 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: run_coro_thread -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.run_coro_thread_async.rst: -------------------------------------------------------------------------------- 1 | run\_coro\_thread\_async 2 | ======================== 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: run_coro_thread_async -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.run_coro_thread_base.rst: -------------------------------------------------------------------------------- 1 | run\_coro\_thread\_base 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: run_coro_thread_base -------------------------------------------------------------------------------- /docs/source/helpers/asyncx/privex.helpers.asyncx.run_sync.rst: -------------------------------------------------------------------------------- 1 | run\_sync 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.asyncx 5 | 6 | .. autofunction:: run_sync -------------------------------------------------------------------------------- /docs/source/helpers/black_magic/privex.helpers.black_magic.caller_name.rst: -------------------------------------------------------------------------------- 1 | caller\_name 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.black_magic 5 | 6 | .. autofunction:: caller_name -------------------------------------------------------------------------------- /docs/source/helpers/black_magic/privex.helpers.black_magic.calling_function.rst: -------------------------------------------------------------------------------- 1 | calling\_function 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.black_magic 5 | 6 | .. autofunction:: calling_function -------------------------------------------------------------------------------- /docs/source/helpers/black_magic/privex.helpers.black_magic.calling_module.rst: -------------------------------------------------------------------------------- 1 | calling\_module 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.black_magic 5 | 6 | .. autofunction:: calling_module -------------------------------------------------------------------------------- /docs/source/helpers/black_magic/privex.helpers.black_magic.last_frames.rst: -------------------------------------------------------------------------------- 1 | last\_frames 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.black_magic 5 | 6 | .. autofunction:: last_frames -------------------------------------------------------------------------------- /docs/source/helpers/black_magic/privex.helpers.black_magic.last_stack_frame.rst: -------------------------------------------------------------------------------- 1 | last\_stack\_frame 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.black_magic 5 | 6 | .. autofunction:: last_stack_frame -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.cache_instance.rst: -------------------------------------------------------------------------------- 1 | cache\_instance 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autoattribute:: AsyncCacheWrapper.cache_instance -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.get_adapter.rst: -------------------------------------------------------------------------------- 1 | get\_adapter 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. automethod:: AsyncCacheWrapper.get_adapter -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.instance_args.rst: -------------------------------------------------------------------------------- 1 | instance\_args 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autoattribute:: AsyncCacheWrapper.instance_args -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.instance_kwargs.rst: -------------------------------------------------------------------------------- 1 | instance\_kwargs 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autoattribute:: AsyncCacheWrapper.instance_kwargs -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.max_context_layers.rst: -------------------------------------------------------------------------------- 1 | max\_context\_layers 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autoattribute:: AsyncCacheWrapper.max_context_layers -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.reset_adapter.rst: -------------------------------------------------------------------------------- 1 | reset\_adapter 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. automethod:: AsyncCacheWrapper.reset_adapter -------------------------------------------------------------------------------- /docs/source/helpers/cache/asynccachewrapper/privex.helpers.cache.AsyncCacheWrapper.set_adapter.rst: -------------------------------------------------------------------------------- 1 | set\_adapter 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. automethod:: AsyncCacheWrapper.set_adapter -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.close.rst: -------------------------------------------------------------------------------- 1 | close 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.close -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.connect.rst: -------------------------------------------------------------------------------- 1 | connect 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.connect -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.pickle_default.rst: -------------------------------------------------------------------------------- 1 | pickle\_default 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. autoattribute:: AsyncSqliteCache.pickle_default -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.purge_due.rst: -------------------------------------------------------------------------------- 1 | purge\_due 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. autoproperty:: AsyncSqliteCache.purge_due -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.purge_expired.rst: -------------------------------------------------------------------------------- 1 | purge\_expired 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.purge_expired -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. automethod:: AsyncSqliteCache.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.AsyncSqliteCache.wrapper.rst: -------------------------------------------------------------------------------- 1 | wrapper 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. autoattribute:: AsyncSqliteCache.wrapper -------------------------------------------------------------------------------- /docs/source/helpers/cache/asyncx/asyncsqlitecache/privex.helpers.cache.asyncx.AsyncSqliteCache.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.asyncx.AsyncSqliteCache 5 | 6 | .. autodata:: __init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.get_or_set.rst: -------------------------------------------------------------------------------- 1 | get\_or\_set 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.get_or_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.get_or_set_async.rst: -------------------------------------------------------------------------------- 1 | get\_or\_set\_async 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.get_or_set_async -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/cacheadapter/privex.helpers.cache.CacheAdapter.CacheAdapter.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.CacheAdapter 5 | 6 | .. automethod:: CacheAdapter.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/cachewrapper/privex.helpers.cache.CacheWrapper.cache_instance.rst: -------------------------------------------------------------------------------- 1 | cache\_instance 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autoattribute:: CacheWrapper.cache_instance -------------------------------------------------------------------------------- /docs/source/helpers/cache/cachewrapper/privex.helpers.cache.CacheWrapper.get_adapter.rst: -------------------------------------------------------------------------------- 1 | get\_adapter 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. automethod:: CacheWrapper.get_adapter -------------------------------------------------------------------------------- /docs/source/helpers/cache/cachewrapper/privex.helpers.cache.CacheWrapper.set_adapter.rst: -------------------------------------------------------------------------------- 1 | set\_adapter 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. automethod:: CacheWrapper.set_adapter -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_get.rst: -------------------------------------------------------------------------------- 1 | cache\_get 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.cache_get -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_get_or_set.rst: -------------------------------------------------------------------------------- 1 | cache\_get\_or\_set 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.cache_get_or_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_key_lock.rst: -------------------------------------------------------------------------------- 1 | cache\_key\_lock 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autoattribute:: CacheManagerMixin.cache_key_lock -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_key_log_name.rst: -------------------------------------------------------------------------------- 1 | cache\_key\_log\_name 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autoattribute:: CacheManagerMixin.cache_key_log_name -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_prefix.rst: -------------------------------------------------------------------------------- 1 | cache\_prefix 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autoattribute:: CacheManagerMixin.cache_prefix -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_sep.rst: -------------------------------------------------------------------------------- 1 | cache\_sep 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autoattribute:: CacheManagerMixin.cache_sep -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.cache_set.rst: -------------------------------------------------------------------------------- 1 | cache\_set 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.cache_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.clear_all_cache_keys.rst: -------------------------------------------------------------------------------- 1 | clear\_all\_cache\_keys 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.clear_all_cache_keys -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.clear_cache_keys.rst: -------------------------------------------------------------------------------- 1 | clear\_cache\_keys 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.clear_cache_keys -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.default_cache_time.rst: -------------------------------------------------------------------------------- 1 | default\_cache\_time 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autoattribute:: CacheManagerMixin.default_cache_time -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.gen_cache_key.rst: -------------------------------------------------------------------------------- 1 | gen\_cache\_key 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.gen_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.get_all_cache_keys.rst: -------------------------------------------------------------------------------- 1 | get\_all\_cache\_keys 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.get_all_cache_keys -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.key_add_prefix.rst: -------------------------------------------------------------------------------- 1 | key\_add\_prefix 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.key_add_prefix -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.key_remove_prefix.rst: -------------------------------------------------------------------------------- 1 | key\_remove\_prefix 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.key_remove_prefix -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.log_cache_key.rst: -------------------------------------------------------------------------------- 1 | log\_cache\_key 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.log_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.log_delete_cache_key.rst: -------------------------------------------------------------------------------- 1 | log\_delete\_cache\_key 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.log_delete_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachemanagermixin/privex.helpers.cache.extras.CacheManagerMixin.log_delete_cache_keys.rst: -------------------------------------------------------------------------------- 1 | log\_delete\_cache\_keys 2 | ======================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheManagerMixin.log_delete_cache_keys -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachesettings/privex.helpers.cache.extras.CacheSettings.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheSettings.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachesettings/privex.helpers.cache.extras.CacheSettings.from_class.rst: -------------------------------------------------------------------------------- 1 | from\_class 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheSettings.from_class -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachesettings/privex.helpers.cache.extras.CacheSettings.gen_cache_key.rst: -------------------------------------------------------------------------------- 1 | gen\_cache\_key 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheSettings.gen_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/cachesettings/privex.helpers.cache.extras.CacheSettings.key_add_prefix.rst: -------------------------------------------------------------------------------- 1 | key\_add\_prefix 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. automethod:: CacheSettings.key_add_prefix -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/privex.helpers.cache.extras.fake_lock_manager.rst: -------------------------------------------------------------------------------- 1 | fake\_lock\_manager 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autofunction:: fake_lock_manager -------------------------------------------------------------------------------- /docs/source/helpers/cache/extras/extras/privex.helpers.cache.extras.z_cache.rst: -------------------------------------------------------------------------------- 1 | z\_cache 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.cache.extras 5 | 6 | .. autofunction:: z_cache -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.adapter_enter_reconnect.rst: -------------------------------------------------------------------------------- 1 | adapter\_enter\_reconnect 2 | ========================= 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. autoattribute:: MemcachedCache.adapter_enter_reconnect -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.adapter_exit_close.rst: -------------------------------------------------------------------------------- 1 | adapter\_exit\_close 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. autoattribute:: MemcachedCache.adapter_exit_close -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.close.rst: -------------------------------------------------------------------------------- 1 | close 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.close -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.connect.rst: -------------------------------------------------------------------------------- 1 | connect 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.connect -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.mcache.rst: -------------------------------------------------------------------------------- 1 | mcache 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. autoproperty:: MemcachedCache.mcache -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.pickle_default.rst: -------------------------------------------------------------------------------- 1 | pickle\_default 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. autoattribute:: MemcachedCache.pickle_default -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/memcachedcache/privex.helpers.cache.MemcachedCache.MemcachedCache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemcachedCache 5 | 6 | .. automethod:: MemcachedCache.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/memorycache/privex.helpers.cache.MemoryCache.MemoryCache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.MemoryCache 5 | 6 | .. automethod:: MemoryCache.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/memorycache/privex.helpers.cache.MemoryCache.MemoryCache.get_or_set.rst: -------------------------------------------------------------------------------- 1 | get\_or\_set 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.MemoryCache 5 | 6 | .. automethod:: MemoryCache.get_or_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/memorycache/privex.helpers.cache.MemoryCache.MemoryCache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemoryCache 5 | 6 | .. automethod:: MemoryCache.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/memorycache/privex.helpers.cache.MemoryCache.MemoryCache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.MemoryCache 5 | 6 | .. automethod:: MemoryCache.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/memorycache/privex.helpers.cache.MemoryCache.MemoryCache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.MemoryCache 5 | 6 | .. automethod:: MemoryCache.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.DEFAULT_DB.rst: -------------------------------------------------------------------------------- 1 | DEFAULT\_DB 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: AsyncSqliteCacheManager.DEFAULT_DB -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.SCHEMAS.rst: -------------------------------------------------------------------------------- 1 | SCHEMAS 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: AsyncSqliteCacheManager.SCHEMAS -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.cache_builder.rst: -------------------------------------------------------------------------------- 1 | cache\_builder 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoproperty:: AsyncSqliteCacheManager.cache_builder -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.close.rst: -------------------------------------------------------------------------------- 1 | close 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.close -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.conn.rst: -------------------------------------------------------------------------------- 1 | conn 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: AsyncSqliteCacheManager.conn -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.find_cache_key.rst: -------------------------------------------------------------------------------- 1 | find\_cache\_key 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.find_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.get_cache_all.rst: -------------------------------------------------------------------------------- 1 | get\_cache\_all 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.get_cache_all -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.make_connection.rst: -------------------------------------------------------------------------------- 1 | make\_connection 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.make_connection -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.purge_expired.rst: -------------------------------------------------------------------------------- 1 | purge\_expired 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.purge_expired -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/asyncsqlitecachemanager/privex.helpers.cache.post_deps.AsyncSqliteCacheManager.set_cache_key.rst: -------------------------------------------------------------------------------- 1 | set\_cache\_key 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: AsyncSqliteCacheManager.set_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/privex.helpers.cache.post_deps.sqlite_cache_set_dbfolder.rst: -------------------------------------------------------------------------------- 1 | sqlite\_cache\_set\_dbfolder 2 | ============================ 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autofunction:: sqlite_cache_set_dbfolder -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/privex.helpers.cache.post_deps.sqlite_cache_set_dbname.rst: -------------------------------------------------------------------------------- 1 | sqlite\_cache\_set\_dbname 2 | ========================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autofunction:: sqlite_cache_set_dbname -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB.rst: -------------------------------------------------------------------------------- 1 | DEFAULT\_DB 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheManager.DEFAULT_DB -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB_FOLDER.rst: -------------------------------------------------------------------------------- 1 | DEFAULT\_DB\_FOLDER 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheManager.DEFAULT_DB_FOLDER -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.DEFAULT_DB_NAME.rst: -------------------------------------------------------------------------------- 1 | DEFAULT\_DB\_NAME 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheManager.DEFAULT_DB_NAME -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.SCHEMAS.rst: -------------------------------------------------------------------------------- 1 | SCHEMAS 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheManager.SCHEMAS -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.cache_builder.rst: -------------------------------------------------------------------------------- 1 | cache\_builder 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoproperty:: SqliteCacheManager.cache_builder -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.cache_key_exists.rst: -------------------------------------------------------------------------------- 1 | cache\_key\_exists 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.cache_key_exists -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.close.rst: -------------------------------------------------------------------------------- 1 | close 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.close -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.conn.rst: -------------------------------------------------------------------------------- 1 | conn 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoproperty:: SqliteCacheManager.conn -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.delete_cache_key.rst: -------------------------------------------------------------------------------- 1 | delete\_cache\_key 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.delete_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.find_cache_key.rst: -------------------------------------------------------------------------------- 1 | find\_cache\_key 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.find_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.get_cache_all.rst: -------------------------------------------------------------------------------- 1 | get\_cache\_all 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.get_cache_all -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.insert_cache_key.rst: -------------------------------------------------------------------------------- 1 | insert\_cache\_key 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.insert_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.make_connection.rst: -------------------------------------------------------------------------------- 1 | make\_connection 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.make_connection -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.purge_expired.rst: -------------------------------------------------------------------------------- 1 | purge\_expired 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.purge_expired -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.set_cache_key.rst: -------------------------------------------------------------------------------- 1 | set\_cache\_key 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.set_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecachemanager/privex.helpers.cache.post_deps.SqliteCacheManager.update_cache_key.rst: -------------------------------------------------------------------------------- 1 | update\_cache\_key 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. automethod:: SqliteCacheManager.update_cache_key -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecacheresult/privex.helpers.cache.post_deps.SqliteCacheResult.expires_at.rst: -------------------------------------------------------------------------------- 1 | expires\_at 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheResult.expires_at -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecacheresult/privex.helpers.cache.post_deps.SqliteCacheResult.name.rst: -------------------------------------------------------------------------------- 1 | name 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheResult.name -------------------------------------------------------------------------------- /docs/source/helpers/cache/post_deps/post_deps/sqlitecacheresult/privex.helpers.cache.post_deps.SqliteCacheResult.value.rst: -------------------------------------------------------------------------------- 1 | value 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.post_deps 5 | 6 | .. autoattribute:: SqliteCacheResult.value -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.adapter_get.rst: -------------------------------------------------------------------------------- 1 | adapter\_get 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: adapter_get -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.adapter_set.rst: -------------------------------------------------------------------------------- 1 | adapter\_set 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: adapter_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.async_cached.rst: -------------------------------------------------------------------------------- 1 | async\_cached 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autodata:: async_cached -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.cached.rst: -------------------------------------------------------------------------------- 1 | cached 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autodata:: cached -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: get -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.get_or_set.rst: -------------------------------------------------------------------------------- 1 | get\_or\_set 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: get_or_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: set -------------------------------------------------------------------------------- /docs/source/helpers/cache/privex.helpers.cache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache 5 | 6 | .. autofunction:: update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.get_or_set.rst: -------------------------------------------------------------------------------- 1 | get\_or\_set 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.get_or_set -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.pickle_default.rst: -------------------------------------------------------------------------------- 1 | pickle\_default 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. autoattribute:: RedisCache.pickle_default -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/rediscache/privex.helpers.cache.RedisCache.RedisCache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.RedisCache 5 | 6 | .. automethod:: RedisCache.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.close.rst: -------------------------------------------------------------------------------- 1 | close 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.close -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.connect.rst: -------------------------------------------------------------------------------- 1 | connect 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.connect -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.get -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.last_purged_expired.rst: -------------------------------------------------------------------------------- 1 | last\_purged\_expired 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. autoattribute:: SqliteCache.last_purged_expired -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.pickle_default.rst: -------------------------------------------------------------------------------- 1 | pickle\_default 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. autoattribute:: SqliteCache.pickle_default -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.purge_due.rst: -------------------------------------------------------------------------------- 1 | purge\_due 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. autoproperty:: SqliteCache.purge_due -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.purge_expired.rst: -------------------------------------------------------------------------------- 1 | purge\_expired 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.purge_expired -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.remove.rst: -------------------------------------------------------------------------------- 1 | remove 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.remove -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.set -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.update_timeout.rst: -------------------------------------------------------------------------------- 1 | update\_timeout 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. automethod:: SqliteCache.update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/cache/sqlitecache/privex.helpers.cache.SqliteCache.SqliteCache.wrapper.rst: -------------------------------------------------------------------------------- 1 | wrapper 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.cache.SqliteCache 5 | 6 | .. autoproperty:: SqliteCache.wrapper -------------------------------------------------------------------------------- /docs/source/helpers/collections/dictable/privex.helpers.collections.Dictable.from_dict.rst: -------------------------------------------------------------------------------- 1 | from\_dict 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. automethod:: Dictable.from_dict -------------------------------------------------------------------------------- /docs/source/helpers/collections/dictdataclass/privex.helpers.collections.DictDataClass.from_dict.rst: -------------------------------------------------------------------------------- 1 | from\_dict 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. automethod:: DictDataClass.from_dict -------------------------------------------------------------------------------- /docs/source/helpers/collections/mocker/privex.helpers.collections.Mocker.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. automethod:: Mocker.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/collections/mocker/privex.helpers.collections.Mocker.add_mock_module.rst: -------------------------------------------------------------------------------- 1 | add\_mock\_module 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. automethod:: Mocker.add_mock_module -------------------------------------------------------------------------------- /docs/source/helpers/collections/mocker/privex.helpers.collections.Mocker.make_mock_class.rst: -------------------------------------------------------------------------------- 1 | make\_mock\_class 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. automethod:: Mocker.make_mock_class -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.convert_dictable_namedtuple.rst: -------------------------------------------------------------------------------- 1 | convert\_dictable\_namedtuple 2 | ============================= 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: convert_dictable_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.copy_class.rst: -------------------------------------------------------------------------------- 1 | copy\_class 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: copy_class -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.dictable_namedtuple.rst: -------------------------------------------------------------------------------- 1 | dictable\_namedtuple 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: dictable_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.is_namedtuple.rst: -------------------------------------------------------------------------------- 1 | is\_namedtuple 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: is_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.make_dict_tuple.rst: -------------------------------------------------------------------------------- 1 | make\_dict\_tuple 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: make_dict_tuple -------------------------------------------------------------------------------- /docs/source/helpers/collections/privex.helpers.collections.subclass_dictable_namedtuple.rst: -------------------------------------------------------------------------------- 1 | subclass\_dictable\_namedtuple 2 | ============================== 3 | 4 | .. currentmodule:: privex.helpers.collections 5 | 6 | .. autofunction:: subclass_dictable_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/common/errhelpparser/privex.helpers.common.ErrHelpParser.error.rst: -------------------------------------------------------------------------------- 1 | error 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: ErrHelpParser.error -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: LayeredContext.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.aenter.rst: -------------------------------------------------------------------------------- 1 | aenter 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: LayeredContext.aenter -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.aexit.rst: -------------------------------------------------------------------------------- 1 | aexit 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: LayeredContext.aexit -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.class_name.rst: -------------------------------------------------------------------------------- 1 | class\_name 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoproperty:: LayeredContext.class_name -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.enter.rst: -------------------------------------------------------------------------------- 1 | enter 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: LayeredContext.enter -------------------------------------------------------------------------------- /docs/source/helpers/common/layeredcontext/privex.helpers.common.LayeredContext.exit.rst: -------------------------------------------------------------------------------- 1 | exit 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: LayeredContext.exit -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.ALPHANUM.rst: -------------------------------------------------------------------------------- 1 | ALPHANUM 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: ALPHANUM -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.IS_XARGS.rst: -------------------------------------------------------------------------------- 1 | IS\_XARGS 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: IS_XARGS -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.IS_XKWARGS.rst: -------------------------------------------------------------------------------- 1 | IS\_XKWARGS 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: IS_XKWARGS -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.SAFE_CHARS.rst: -------------------------------------------------------------------------------- 1 | SAFE\_CHARS 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: SAFE_CHARS -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.T_PARAM_DICT.rst: -------------------------------------------------------------------------------- 1 | T\_PARAM\_DICT 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: T_PARAM_DICT -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.T_PARAM_LIST.rst: -------------------------------------------------------------------------------- 1 | T\_PARAM\_LIST 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autodata:: T_PARAM_LIST -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common._filter_params.rst: -------------------------------------------------------------------------------- 1 | \_filter\_params 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: _filter_params -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.almost.rst: -------------------------------------------------------------------------------- 1 | almost 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: almost -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.auto_list.rst: -------------------------------------------------------------------------------- 1 | auto\_list 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: auto_list -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.byteify.rst: -------------------------------------------------------------------------------- 1 | byteify 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: byteify -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.call_sys.rst: -------------------------------------------------------------------------------- 1 | call\_sys 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: call_sys -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.camel_to_snake.rst: -------------------------------------------------------------------------------- 1 | camel\_to\_snake 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: camel_to_snake -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.chunked.rst: -------------------------------------------------------------------------------- 1 | chunked 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: chunked -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.construct_dict.rst: -------------------------------------------------------------------------------- 1 | construct\_dict 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: construct_dict -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.dec_round.rst: -------------------------------------------------------------------------------- 1 | dec\_round 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: dec_round -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.empty.rst: -------------------------------------------------------------------------------- 1 | empty 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: empty -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.empty_if.rst: -------------------------------------------------------------------------------- 1 | empty\_if 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: empty_if -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_bool.rst: -------------------------------------------------------------------------------- 1 | env\_bool 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_bool -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_cast.rst: -------------------------------------------------------------------------------- 1 | env\_cast 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_cast -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_csv.rst: -------------------------------------------------------------------------------- 1 | env\_csv 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_csv -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_decimal.rst: -------------------------------------------------------------------------------- 1 | env\_decimal 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_decimal -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_int.rst: -------------------------------------------------------------------------------- 1 | env\_int 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_int -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.env_keyval.rst: -------------------------------------------------------------------------------- 1 | env\_keyval 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: env_keyval -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.extract_settings.rst: -------------------------------------------------------------------------------- 1 | extract\_settings 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: extract_settings -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.extract_type.rst: -------------------------------------------------------------------------------- 1 | extract\_type 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: extract_type -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.filter_form.rst: -------------------------------------------------------------------------------- 1 | filter\_form 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: filter_form -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.get_function_params.rst: -------------------------------------------------------------------------------- 1 | get\_function\_params 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: get_function_params -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.get_return_type.rst: -------------------------------------------------------------------------------- 1 | get\_return\_type 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: get_return_type -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.human_name.rst: -------------------------------------------------------------------------------- 1 | human\_name 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: human_name -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.inject_items.rst: -------------------------------------------------------------------------------- 1 | inject\_items 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: inject_items -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.io_tail.rst: -------------------------------------------------------------------------------- 1 | io\_tail 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: io_tail -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.is_false.rst: -------------------------------------------------------------------------------- 1 | is\_false 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: is_false -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.is_true.rst: -------------------------------------------------------------------------------- 1 | is\_true 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: is_true -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.parse_csv.rst: -------------------------------------------------------------------------------- 1 | parse\_csv 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: parse_csv -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.parse_keyval.rst: -------------------------------------------------------------------------------- 1 | parse\_keyval 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: parse_keyval -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.random_str.rst: -------------------------------------------------------------------------------- 1 | random\_str 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: random_str -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.reverse_io.rst: -------------------------------------------------------------------------------- 1 | reverse\_io 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: reverse_io -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.shell_quote.rst: -------------------------------------------------------------------------------- 1 | shell\_quote 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: shell_quote -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.stringify.rst: -------------------------------------------------------------------------------- 1 | stringify 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: stringify -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.strip_null.rst: -------------------------------------------------------------------------------- 1 | strip\_null 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: strip_null -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.tail.rst: -------------------------------------------------------------------------------- 1 | tail 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: tail -------------------------------------------------------------------------------- /docs/source/helpers/common/privex.helpers.common.typing_to_base.rst: -------------------------------------------------------------------------------- 1 | typing\_to\_base 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autofunction:: typing_to_base -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.KEYWORD_ONLY.rst: -------------------------------------------------------------------------------- 1 | KEYWORD\_ONLY 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoattribute:: T_PARAM.KEYWORD_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.POSITIONAL_ONLY.rst: -------------------------------------------------------------------------------- 1 | POSITIONAL\_ONLY 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoattribute:: T_PARAM.POSITIONAL_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.POSITIONAL_OR_KEYWORD.rst: -------------------------------------------------------------------------------- 1 | POSITIONAL\_OR\_KEYWORD 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoattribute:: T_PARAM.POSITIONAL_OR_KEYWORD -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.VAR_KEYWORD.rst: -------------------------------------------------------------------------------- 1 | VAR\_KEYWORD 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoattribute:: T_PARAM.VAR_KEYWORD -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.VAR_POSITIONAL.rst: -------------------------------------------------------------------------------- 1 | VAR\_POSITIONAL 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoattribute:: T_PARAM.VAR_POSITIONAL -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: T_PARAM.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.annotation.rst: -------------------------------------------------------------------------------- 1 | annotation 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoproperty:: T_PARAM.annotation -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.default.rst: -------------------------------------------------------------------------------- 1 | default 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoproperty:: T_PARAM.default -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.kind.rst: -------------------------------------------------------------------------------- 1 | kind 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoproperty:: T_PARAM.kind -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.name.rst: -------------------------------------------------------------------------------- 1 | name 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. autoproperty:: T_PARAM.name -------------------------------------------------------------------------------- /docs/source/helpers/common/t_param/privex.helpers.common.T_PARAM.replace.rst: -------------------------------------------------------------------------------- 1 | replace 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.common 5 | 6 | .. automethod:: T_PARAM.replace -------------------------------------------------------------------------------- /docs/source/helpers/converters/privex.helpers.converters.convert_bool_int.rst: -------------------------------------------------------------------------------- 1 | convert\_bool\_int 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.converters 5 | 6 | .. autofunction:: convert_bool_int -------------------------------------------------------------------------------- /docs/source/helpers/converters/privex.helpers.converters.convert_datetime.rst: -------------------------------------------------------------------------------- 1 | convert\_datetime 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.converters 5 | 6 | .. autofunction:: convert_datetime -------------------------------------------------------------------------------- /docs/source/helpers/converters/privex.helpers.converters.convert_int_bool.rst: -------------------------------------------------------------------------------- 1 | convert\_int\_bool 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.converters 5 | 6 | .. autofunction:: convert_int_bool -------------------------------------------------------------------------------- /docs/source/helpers/converters/privex.helpers.converters.convert_unixtime_datetime.rst: -------------------------------------------------------------------------------- 1 | convert\_unixtime\_datetime 2 | =========================== 3 | 4 | .. currentmodule:: privex.helpers.converters 5 | 6 | .. autofunction:: convert_unixtime_datetime -------------------------------------------------------------------------------- /docs/source/helpers/crypto/base/privex.helpers.crypto.base.auto_b64decode.rst: -------------------------------------------------------------------------------- 1 | auto\_b64decode 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.base 5 | 6 | .. autofunction:: auto_b64decode -------------------------------------------------------------------------------- /docs/source/helpers/crypto/base/privex.helpers.crypto.base.is_base64.rst: -------------------------------------------------------------------------------- 1 | is\_base64 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.crypto.base 5 | 6 | .. autofunction:: is_base64 -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.decrypt_str.rst: -------------------------------------------------------------------------------- 1 | decrypt\_str 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.decrypt_str -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.encrypt_str.rst: -------------------------------------------------------------------------------- 1 | encrypt\_str 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.encrypt_str -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.from_file.rst: -------------------------------------------------------------------------------- 1 | from\_file 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.from_file -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.from_password.rst: -------------------------------------------------------------------------------- 1 | from\_password 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.from_password -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.generate_key.rst: -------------------------------------------------------------------------------- 1 | generate\_key 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.generate_key -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.get_fernet.rst: -------------------------------------------------------------------------------- 1 | get\_fernet 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.get_fernet -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.is_encrypted.rst: -------------------------------------------------------------------------------- 1 | is\_encrypted 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.is_encrypted -------------------------------------------------------------------------------- /docs/source/helpers/crypto/encrypthelper/privex.helpers.crypto.EncryptHelper.EncryptHelper.password_key.rst: -------------------------------------------------------------------------------- 1 | password\_key 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.crypto.EncryptHelper 5 | 6 | .. automethod:: EncryptHelper.password_key -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.backend.rst: -------------------------------------------------------------------------------- 1 | backend 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.backend -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.combined_key_types.rst: -------------------------------------------------------------------------------- 1 | combined\_key\_types 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.combined_key_types -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.curves.rst: -------------------------------------------------------------------------------- 1 | curves 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.curves -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.decrypt.rst: -------------------------------------------------------------------------------- 1 | decrypt 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.decrypt -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.default_formats.rst: -------------------------------------------------------------------------------- 1 | default\_formats 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.default_formats -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.default_gen.rst: -------------------------------------------------------------------------------- 1 | default\_gen 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.default_gen -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.encrypt.rst: -------------------------------------------------------------------------------- 1 | encrypt 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.encrypt -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.export_key.rst: -------------------------------------------------------------------------------- 1 | export\_key 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.export_key -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.export_private.rst: -------------------------------------------------------------------------------- 1 | export\_private 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.export_private -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.export_public.rst: -------------------------------------------------------------------------------- 1 | export\_public 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.export_public -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.generate_keypair.rst: -------------------------------------------------------------------------------- 1 | generate\_keypair 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.generate_keypair -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.generate_keypair_raw.rst: -------------------------------------------------------------------------------- 1 | generate\_keypair\_raw 2 | ====================== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.generate_keypair_raw -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.generators.rst: -------------------------------------------------------------------------------- 1 | generators 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.generators -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.identify_algorithm.rst: -------------------------------------------------------------------------------- 1 | identify\_algorithm 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.identify_algorithm -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.load_key.rst: -------------------------------------------------------------------------------- 1 | load\_key 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.load_key -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.load_keyfile.rst: -------------------------------------------------------------------------------- 1 | load\_keyfile 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.load_keyfile -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.output_keypair.rst: -------------------------------------------------------------------------------- 1 | output\_keypair 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.output_keypair -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.private_key_types.rst: -------------------------------------------------------------------------------- 1 | private\_key\_types 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.private_key_types -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.public_key_types.rst: -------------------------------------------------------------------------------- 1 | public\_key\_types 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.public_key_types -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.raw_priv_types.rst: -------------------------------------------------------------------------------- 1 | raw\_priv\_types 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.raw_priv_types -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.raw_pub_types.rst: -------------------------------------------------------------------------------- 1 | raw\_pub\_types 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.raw_pub_types -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.sign.rst: -------------------------------------------------------------------------------- 1 | sign 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.sign -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.type_name_map.rst: -------------------------------------------------------------------------------- 1 | type\_name\_map 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoattribute:: KeyManager.type_name_map -------------------------------------------------------------------------------- /docs/source/helpers/crypto/keymanager/privex.helpers.crypto.KeyManager.KeyManager.verify.rst: -------------------------------------------------------------------------------- 1 | verify 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. automethod:: KeyManager.verify -------------------------------------------------------------------------------- /docs/source/helpers/crypto/privex.helpers.crypto.KeyManager.Format.rst: -------------------------------------------------------------------------------- 1 | Format 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.crypto.KeyManager 5 | 6 | .. autoclass:: Format 7 | :members: 8 | :undoc-members: 9 | 10 | .. automethod:: __init__ 11 | :noindex: 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/source/helpers/decorators/fo/privex.helpers.decorators.FO.KWARG_ONLY.rst: -------------------------------------------------------------------------------- 1 | KWARG\_ONLY 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FO.KWARG_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/decorators/fo/privex.helpers.decorators.FO.MIX.rst: -------------------------------------------------------------------------------- 1 | MIX 2 | === 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FO.MIX -------------------------------------------------------------------------------- /docs/source/helpers/decorators/fo/privex.helpers.decorators.FO.POS_AUTO.rst: -------------------------------------------------------------------------------- 1 | POS\_AUTO 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FO.POS_AUTO -------------------------------------------------------------------------------- /docs/source/helpers/decorators/fo/privex.helpers.decorators.FO.POS_ONLY.rst: -------------------------------------------------------------------------------- 1 | POS\_ONLY 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FO.POS_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/decorators/formatopt/privex.helpers.decorators.FormatOpt.KWARG_ONLY.rst: -------------------------------------------------------------------------------- 1 | KWARG\_ONLY 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FormatOpt.KWARG_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/decorators/formatopt/privex.helpers.decorators.FormatOpt.MIX.rst: -------------------------------------------------------------------------------- 1 | MIX 2 | === 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FormatOpt.MIX -------------------------------------------------------------------------------- /docs/source/helpers/decorators/formatopt/privex.helpers.decorators.FormatOpt.POS_AUTO.rst: -------------------------------------------------------------------------------- 1 | POS\_AUTO 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FormatOpt.POS_AUTO -------------------------------------------------------------------------------- /docs/source/helpers/decorators/formatopt/privex.helpers.decorators.FormatOpt.POS_ONLY.rst: -------------------------------------------------------------------------------- 1 | POS\_ONLY 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autoattribute:: FormatOpt.POS_ONLY -------------------------------------------------------------------------------- /docs/source/helpers/decorators/privex.helpers.decorators.async_retry.rst: -------------------------------------------------------------------------------- 1 | async\_retry 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autofunction:: async_retry -------------------------------------------------------------------------------- /docs/source/helpers/decorators/privex.helpers.decorators.mock_decorator.rst: -------------------------------------------------------------------------------- 1 | mock\_decorator 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autofunction:: mock_decorator -------------------------------------------------------------------------------- /docs/source/helpers/decorators/privex.helpers.decorators.r_cache.rst: -------------------------------------------------------------------------------- 1 | r\_cache 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autofunction:: r_cache -------------------------------------------------------------------------------- /docs/source/helpers/decorators/privex.helpers.decorators.r_cache_async.rst: -------------------------------------------------------------------------------- 1 | r\_cache\_async 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autofunction:: r_cache_async -------------------------------------------------------------------------------- /docs/source/helpers/decorators/privex.helpers.decorators.retry_on_err.rst: -------------------------------------------------------------------------------- 1 | retry\_on\_err 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.decorators 5 | 6 | .. autofunction:: retry_on_err -------------------------------------------------------------------------------- /docs/source/helpers/django/privex.helpers.django.handle_error.rst: -------------------------------------------------------------------------------- 1 | handle\_error 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.django 5 | 6 | .. autofunction:: handle_error -------------------------------------------------------------------------------- /docs/source/helpers/django/privex.helpers.django.is_database_synchronized.rst: -------------------------------------------------------------------------------- 1 | is\_database\_synchronized 2 | ========================== 3 | 4 | .. currentmodule:: privex.helpers.django 5 | 6 | .. autofunction:: is_database_synchronized -------------------------------------------------------------------------------- /docs/source/helpers/django/privex.helpers.django.model_to_dict.rst: -------------------------------------------------------------------------------- 1 | model\_to\_dict 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.django 5 | 6 | .. autofunction:: model_to_dict -------------------------------------------------------------------------------- /docs/source/helpers/django/privex.helpers.django.to_json.rst: -------------------------------------------------------------------------------- 1 | to\_json 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.django 5 | 6 | .. autofunction:: to_json -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.BaseDNSException.rst: -------------------------------------------------------------------------------- 1 | BaseDNSException 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: BaseDNSException -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.BoundaryException.rst: -------------------------------------------------------------------------------- 1 | BoundaryException 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: BoundaryException -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.CacheNotFound.rst: -------------------------------------------------------------------------------- 1 | CacheNotFound 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: CacheNotFound -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.DomainNotFound.rst: -------------------------------------------------------------------------------- 1 | DomainNotFound 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: DomainNotFound -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.EncryptKeyMissing.rst: -------------------------------------------------------------------------------- 1 | EncryptKeyMissing 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: EncryptKeyMissing -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.EncryptionError.rst: -------------------------------------------------------------------------------- 1 | EncryptionError 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: EncryptionError -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.InvalidDNSRecord.rst: -------------------------------------------------------------------------------- 1 | InvalidDNSRecord 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: InvalidDNSRecord -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.InvalidFormat.rst: -------------------------------------------------------------------------------- 1 | InvalidFormat 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: InvalidFormat -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.NetworkUnreachable.rst: -------------------------------------------------------------------------------- 1 | NetworkUnreachable 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: NetworkUnreachable -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.NotConfigured.rst: -------------------------------------------------------------------------------- 1 | NotConfigured 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: NotConfigured -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.PrivexException.rst: -------------------------------------------------------------------------------- 1 | PrivexException 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: PrivexException -------------------------------------------------------------------------------- /docs/source/helpers/exceptions/privex.helpers.exceptions.SysCallError.rst: -------------------------------------------------------------------------------- 1 | SysCallError 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.exceptions 5 | 6 | .. autoexception:: SysCallError -------------------------------------------------------------------------------- /docs/source/helpers/extras/attrs/attribdictable/privex.helpers.extras.attrs.AttribDictable.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.extras.attrs 5 | 6 | .. automethod:: AttribDictable.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/extras/attrs/attribdictable/privex.helpers.extras.attrs.AttribDictable.get.rst: -------------------------------------------------------------------------------- 1 | get 2 | === 3 | 4 | .. currentmodule:: privex.helpers.extras.attrs 5 | 6 | .. automethod:: AttribDictable.get -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.__getattr__.rst: -------------------------------------------------------------------------------- 1 | \_\_getattr\_\_ 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.__getattr__ -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit._repo.rst: -------------------------------------------------------------------------------- 1 | \_repo 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit._repo -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.add.rst: -------------------------------------------------------------------------------- 1 | add 2 | === 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.add -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.branch.rst: -------------------------------------------------------------------------------- 1 | branch 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.branch -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.checkout.rst: -------------------------------------------------------------------------------- 1 | checkout 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.checkout -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.commit.rst: -------------------------------------------------------------------------------- 1 | commit 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.commit -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.get_current_branch.rst: -------------------------------------------------------------------------------- 1 | get\_current\_branch 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.get_current_branch -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.get_current_commit.rst: -------------------------------------------------------------------------------- 1 | get\_current\_commit 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.get_current_commit -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.get_current_tag.rst: -------------------------------------------------------------------------------- 1 | get\_current\_tag 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.get_current_tag -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.git.rst: -------------------------------------------------------------------------------- 1 | git 2 | === 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.git -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.init.rst: -------------------------------------------------------------------------------- 1 | init 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.init -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.log.rst: -------------------------------------------------------------------------------- 1 | log 2 | === 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.log -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.status.rst: -------------------------------------------------------------------------------- 1 | status 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.status -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/_asyncgit/privex.helpers.extras.git._AsyncGit.tag.rst: -------------------------------------------------------------------------------- 1 | tag 2 | === 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. automethod:: _AsyncGit.tag -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/privex.helpers.extras.git._cwd_git.rst: -------------------------------------------------------------------------------- 1 | \_cwd\_git 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. autodata:: _cwd_git -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/privex.helpers.extras.git.get_current_branch.rst: -------------------------------------------------------------------------------- 1 | get\_current\_branch 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. autofunction:: get_current_branch -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/privex.helpers.extras.git.get_current_commit.rst: -------------------------------------------------------------------------------- 1 | get\_current\_commit 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. autofunction:: get_current_commit -------------------------------------------------------------------------------- /docs/source/helpers/extras/git/privex.helpers.extras.git.get_current_tag.rst: -------------------------------------------------------------------------------- 1 | get\_current\_tag 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.extras.git 5 | 6 | .. autofunction:: get_current_tag -------------------------------------------------------------------------------- /docs/source/helpers/geoip/geoipresult/privex.helpers.geoip.GeoIPResult.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. automethod:: GeoIPResult.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/geoip/privex.helpers.geoip.cleanup.rst: -------------------------------------------------------------------------------- 1 | cleanup 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. autofunction:: cleanup -------------------------------------------------------------------------------- /docs/source/helpers/geoip/privex.helpers.geoip.cleanup_geoip.rst: -------------------------------------------------------------------------------- 1 | cleanup\_geoip 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. autofunction:: cleanup_geoip -------------------------------------------------------------------------------- /docs/source/helpers/geoip/privex.helpers.geoip.geoip_manager.rst: -------------------------------------------------------------------------------- 1 | geoip\_manager 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. autofunction:: geoip_manager -------------------------------------------------------------------------------- /docs/source/helpers/geoip/privex.helpers.geoip.geolocate_ip.rst: -------------------------------------------------------------------------------- 1 | geolocate\_ip 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. autofunction:: geolocate_ip -------------------------------------------------------------------------------- /docs/source/helpers/geoip/privex.helpers.geoip.geolocate_ips.rst: -------------------------------------------------------------------------------- 1 | geolocate\_ips 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.geoip 5 | 6 | .. autofunction:: geolocate_ips -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.asn_to_name.rst: -------------------------------------------------------------------------------- 1 | asn\_to\_name 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: asn_to_name -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.check_host.rst: -------------------------------------------------------------------------------- 1 | check\_host 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: check_host -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.check_host_async.rst: -------------------------------------------------------------------------------- 1 | check\_host\_async 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: check_host_async -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.get_rdns.rst: -------------------------------------------------------------------------------- 1 | get\_rdns 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: get_rdns -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.get_rdns_async.rst: -------------------------------------------------------------------------------- 1 | get\_rdns\_async 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: get_rdns_async -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.get_rdns_multi.rst: -------------------------------------------------------------------------------- 1 | get\_rdns\_multi 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: get_rdns_multi -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ip4_to_rdns.rst: -------------------------------------------------------------------------------- 1 | ip4\_to\_rdns 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ip4_to_rdns -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ip6_to_rdns.rst: -------------------------------------------------------------------------------- 1 | ip6\_to\_rdns 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ip6_to_rdns -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ip_is_v4.rst: -------------------------------------------------------------------------------- 1 | ip\_is\_v4 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ip_is_v4 -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ip_is_v6.rst: -------------------------------------------------------------------------------- 1 | ip\_is\_v6 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ip_is_v6 -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ip_to_rdns.rst: -------------------------------------------------------------------------------- 1 | ip\_to\_rdns 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ip_to_rdns -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.ping.rst: -------------------------------------------------------------------------------- 1 | ping 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: ping -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ip.rst: -------------------------------------------------------------------------------- 1 | resolve\_ip 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ip -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ip_async.rst: -------------------------------------------------------------------------------- 1 | resolve\_ip\_async 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ip_async -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ips.rst: -------------------------------------------------------------------------------- 1 | resolve\_ips 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ips -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ips_async.rst: -------------------------------------------------------------------------------- 1 | resolve\_ips\_async 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ips_async -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ips_multi.rst: -------------------------------------------------------------------------------- 1 | resolve\_ips\_multi 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ips_multi -------------------------------------------------------------------------------- /docs/source/helpers/net/privex.helpers.net.resolve_ips_multi_async.rst: -------------------------------------------------------------------------------- 1 | resolve\_ips\_multi\_async 2 | ========================== 3 | 4 | .. currentmodule:: privex.helpers.net 5 | 6 | .. autofunction:: resolve_ips_multi_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin._get_all_threadstore.rst: -------------------------------------------------------------------------------- 1 | \_get\_all\_threadstore 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: _get_all_threadstore -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin._get_threadstore.rst: -------------------------------------------------------------------------------- 1 | \_get\_threadstore 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: _get_threadstore -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin._set_threadstore.rst: -------------------------------------------------------------------------------- 1 | \_set\_threadstore 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: _set_threadstore -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.clean_threadstore.rst: -------------------------------------------------------------------------------- 1 | clean\_threadstore 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: clean_threadstore -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.close_memcached_async.rst: -------------------------------------------------------------------------------- 1 | close\_memcached\_async 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: close_memcached_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.close_redis.rst: -------------------------------------------------------------------------------- 1 | close\_redis 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: close_redis -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.close_redis_async.rst: -------------------------------------------------------------------------------- 1 | close\_redis\_async 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: close_redis_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.configure_memcached_async.rst: -------------------------------------------------------------------------------- 1 | configure\_memcached\_async 2 | =========================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: configure_memcached_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.configure_redis.rst: -------------------------------------------------------------------------------- 1 | configure\_redis 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: configure_redis -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.configure_redis_async.rst: -------------------------------------------------------------------------------- 1 | configure\_redis\_async 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: configure_redis_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.connect_geoip.rst: -------------------------------------------------------------------------------- 1 | connect\_geoip 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: connect_geoip -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.connect_memcached_async.rst: -------------------------------------------------------------------------------- 1 | connect\_memcached\_async 2 | ========================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: connect_memcached_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.connect_redis.rst: -------------------------------------------------------------------------------- 1 | connect\_redis 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: connect_redis -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.connect_redis_async.rst: -------------------------------------------------------------------------------- 1 | connect\_redis\_async 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: connect_redis_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_geodbs.rst: -------------------------------------------------------------------------------- 1 | get\_geodbs 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_geodbs -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_geoip.rst: -------------------------------------------------------------------------------- 1 | get\_geoip 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_geoip -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_geoip_db.rst: -------------------------------------------------------------------------------- 1 | get\_geoip\_db 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_geoip_db -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_memcached_async.rst: -------------------------------------------------------------------------------- 1 | get\_memcached\_async 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_memcached_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_redis.rst: -------------------------------------------------------------------------------- 1 | get\_redis 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_redis -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.get_redis_async.rst: -------------------------------------------------------------------------------- 1 | get\_redis\_async 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: get_redis_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.reset_geoip.rst: -------------------------------------------------------------------------------- 1 | reset\_geoip 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: reset_geoip -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.reset_memcached_async.rst: -------------------------------------------------------------------------------- 1 | reset\_memcached\_async 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: reset_memcached_async -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.reset_redis.rst: -------------------------------------------------------------------------------- 1 | reset\_redis 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: reset_redis -------------------------------------------------------------------------------- /docs/source/helpers/plugin/privex.helpers.plugin.reset_redis_async.rst: -------------------------------------------------------------------------------- 1 | reset\_redis\_async 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.plugin 5 | 6 | .. autofunction:: reset_redis_async -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.BASE_DIR.rst: -------------------------------------------------------------------------------- 1 | BASE\_DIR 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: BASE_DIR -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.DEFAULT_CACHE_TIMEOUT.rst: -------------------------------------------------------------------------------- 1 | DEFAULT\_CACHE\_TIMEOUT 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: DEFAULT_CACHE_TIMEOUT -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.EXTRAS_FOLDER.rst: -------------------------------------------------------------------------------- 1 | EXTRAS\_FOLDER 2 | ============== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: EXTRAS_FOLDER -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOASN.rst: -------------------------------------------------------------------------------- 1 | GEOASN 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOASN -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOASN_DETECTED.rst: -------------------------------------------------------------------------------- 1 | GEOASN\_DETECTED 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOASN_DETECTED -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOASN_NAME.rst: -------------------------------------------------------------------------------- 1 | GEOASN\_NAME 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOASN_NAME -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCITY.rst: -------------------------------------------------------------------------------- 1 | GEOCITY 2 | ======= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCITY -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCITY_DETECTED.rst: -------------------------------------------------------------------------------- 1 | GEOCITY\_DETECTED 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCITY_DETECTED -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCITY_NAME.rst: -------------------------------------------------------------------------------- 1 | GEOCITY\_NAME 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCITY_NAME -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCOUNTRY.rst: -------------------------------------------------------------------------------- 1 | GEOCOUNTRY 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCOUNTRY -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCOUNTRY_DETECTED.rst: -------------------------------------------------------------------------------- 1 | GEOCOUNTRY\_DETECTED 2 | ==================== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCOUNTRY_DETECTED -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOCOUNTRY_NAME.rst: -------------------------------------------------------------------------------- 1 | GEOCOUNTRY\_NAME 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOCOUNTRY_NAME -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.GEOIP_DIR.rst: -------------------------------------------------------------------------------- 1 | GEOIP\_DIR 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: GEOIP_DIR -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.MEMCACHED_HOST.rst: -------------------------------------------------------------------------------- 1 | MEMCACHED\_HOST 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: MEMCACHED_HOST -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.MEMCACHED_PORT.rst: -------------------------------------------------------------------------------- 1 | MEMCACHED\_PORT 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: MEMCACHED_PORT -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.REDIS_DB.rst: -------------------------------------------------------------------------------- 1 | REDIS\_DB 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: REDIS_DB -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.REDIS_HOST.rst: -------------------------------------------------------------------------------- 1 | REDIS\_HOST 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: REDIS_HOST -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.REDIS_PORT.rst: -------------------------------------------------------------------------------- 1 | REDIS\_PORT 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: REDIS_PORT -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.VERSION_FILE.rst: -------------------------------------------------------------------------------- 1 | VERSION\_FILE 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: VERSION_FILE -------------------------------------------------------------------------------- /docs/source/helpers/settings/privex.helpers.settings.search_geoip.rst: -------------------------------------------------------------------------------- 1 | search\_geoip 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.settings 5 | 6 | .. autodata:: search_geoip -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/bump/privex.helpers.setuppy.bump.bump_version.rst: -------------------------------------------------------------------------------- 1 | bump\_version 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.bump 5 | 6 | .. autofunction:: bump_version -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/bump/privex.helpers.setuppy.bump.default_current_ver.rst: -------------------------------------------------------------------------------- 1 | default\_current\_ver 2 | ===================== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.bump 5 | 6 | .. autofunction:: default_current_ver -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/bump/privex.helpers.setuppy.bump.default_replace_func.rst: -------------------------------------------------------------------------------- 1 | default\_replace\_func 2 | ====================== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.bump 5 | 6 | .. autofunction:: default_replace_func -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/bump/privex.helpers.setuppy.bump.get_current_ver.rst: -------------------------------------------------------------------------------- 1 | get\_current\_ver 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.bump 5 | 6 | .. autofunction:: get_current_ver -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/bump/privex.helpers.setuppy.bump.version_replace.rst: -------------------------------------------------------------------------------- 1 | version\_replace 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.setuppy.bump 5 | 6 | .. autofunction:: version_replace -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/bumpcommand/privex.helpers.setuppy.commands.BumpCommand.description.rst: -------------------------------------------------------------------------------- 1 | description 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. autoattribute:: BumpCommand.description -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/bumpcommand/privex.helpers.setuppy.commands.BumpCommand.finalize_options.rst: -------------------------------------------------------------------------------- 1 | finalize\_options 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: BumpCommand.finalize_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/bumpcommand/privex.helpers.setuppy.commands.BumpCommand.initialize_options.rst: -------------------------------------------------------------------------------- 1 | initialize\_options 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: BumpCommand.initialize_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/bumpcommand/privex.helpers.setuppy.commands.BumpCommand.run.rst: -------------------------------------------------------------------------------- 1 | run 2 | === 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: BumpCommand.run -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/bumpcommand/privex.helpers.setuppy.commands.BumpCommand.user_options.rst: -------------------------------------------------------------------------------- 1 | user\_options 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. autoattribute:: BumpCommand.user_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.description.rst: -------------------------------------------------------------------------------- 1 | description 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. autoattribute:: ExtrasCommand.description -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.finalize_options.rst: -------------------------------------------------------------------------------- 1 | finalize\_options 2 | ================= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: ExtrasCommand.finalize_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.initialize_options.rst: -------------------------------------------------------------------------------- 1 | initialize\_options 2 | =================== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: ExtrasCommand.initialize_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.install_extras.rst: -------------------------------------------------------------------------------- 1 | install\_extras 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: ExtrasCommand.install_extras -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.run.rst: -------------------------------------------------------------------------------- 1 | run 2 | === 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: ExtrasCommand.run -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.save_list.rst: -------------------------------------------------------------------------------- 1 | save\_list 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. automethod:: ExtrasCommand.save_list -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/commands/extrascommand/privex.helpers.setuppy.commands.ExtrasCommand.user_options.rst: -------------------------------------------------------------------------------- 1 | user\_options 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.setuppy.commands 5 | 6 | .. autoattribute:: ExtrasCommand.user_options -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/common/privex.helpers.setuppy.common.extras.rst: -------------------------------------------------------------------------------- 1 | extras 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.common 5 | 6 | .. autofunction:: extras -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/common/privex.helpers.setuppy.common.extras_require.rst: -------------------------------------------------------------------------------- 1 | extras\_require 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.common 5 | 6 | .. autofunction:: extras_require -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/common/privex.helpers.setuppy.common.pip_requirement.rst: -------------------------------------------------------------------------------- 1 | pip\_requirement 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.setuppy.common 5 | 6 | .. autofunction:: pip_requirement -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/common/privex.helpers.setuppy.common.reqs.rst: -------------------------------------------------------------------------------- 1 | reqs 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.common 5 | 6 | .. autofunction:: reqs -------------------------------------------------------------------------------- /docs/source/helpers/setuppy/common/privex.helpers.setuppy.common.strip_comments.rst: -------------------------------------------------------------------------------- 1 | strip\_comments 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.setuppy.common 5 | 6 | .. autofunction:: strip_comments -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.empty_lst.rst: -------------------------------------------------------------------------------- 1 | empty\_lst 2 | ========== 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.empty_lst -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.empty_vals.rst: -------------------------------------------------------------------------------- 1 | empty\_vals 2 | =========== 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.empty_vals -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.empty_zero.rst: -------------------------------------------------------------------------------- 1 | empty\_zero 2 | =========== 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.empty_zero -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.falsey.rst: -------------------------------------------------------------------------------- 1 | falsey 2 | ====== 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.falsey -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.falsey_empty.rst: -------------------------------------------------------------------------------- 1 | falsey\_empty 2 | ============= 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.falsey_empty -------------------------------------------------------------------------------- /docs/source/helpers/tests/base/privexbasecase/tests.base.PrivexBaseCase.truthy.rst: -------------------------------------------------------------------------------- 1 | truthy 2 | ====== 3 | 4 | .. currentmodule:: tests.base 5 | 6 | .. autoattribute:: PrivexBaseCase.truthy -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_empty_combined.rst: -------------------------------------------------------------------------------- 1 | test\_empty\_combined 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_empty_combined -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_empty_lst.rst: -------------------------------------------------------------------------------- 1 | test\_empty\_lst 2 | ================ 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_empty_lst -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_empty_vals.rst: -------------------------------------------------------------------------------- 1 | test\_empty\_vals 2 | ================= 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_empty_vals -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_empty_zero.rst: -------------------------------------------------------------------------------- 1 | test\_empty\_zero 2 | ================= 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_empty_zero -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_emptyif_only_empty.rst: -------------------------------------------------------------------------------- 1 | test\_emptyif\_only\_empty 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_emptyif_only_empty -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_emptyif_only_value.rst: -------------------------------------------------------------------------------- 1 | test\_emptyif\_only\_value 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_emptyif_only_value -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_isfalse_falsey.rst: -------------------------------------------------------------------------------- 1 | test\_isfalse\_falsey 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_isfalse_falsey -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_isfalse_truthy.rst: -------------------------------------------------------------------------------- 1 | test\_isfalse\_truthy 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_isfalse_truthy -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_istrue_falsey.rst: -------------------------------------------------------------------------------- 1 | test\_istrue\_falsey 2 | ==================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_istrue_falsey -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_istrue_truthy.rst: -------------------------------------------------------------------------------- 1 | test\_istrue\_truthy 2 | ==================== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_istrue_truthy -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_bool/testboolhelpers/tests.test_bool.TestBoolHelpers.test_notempty.rst: -------------------------------------------------------------------------------- 1 | test\_notempty 2 | ============== 3 | 4 | .. currentmodule:: tests.test_bool 5 | 6 | .. automethod:: TestBoolHelpers.test_notempty -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratormemory/tests.test_cache.TestCacheDecoratorMemory.cache.rst: -------------------------------------------------------------------------------- 1 | cache 2 | ===== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. autoattribute:: TestCacheDecoratorMemory.cache -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratormemory/tests.test_cache.TestCacheDecoratorMemory.setUpClass.rst: -------------------------------------------------------------------------------- 1 | setUpClass 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestCacheDecoratorMemory.setUpClass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratormemory/tests.test_cache.TestCacheDecoratorMemory.tearDown.rst: -------------------------------------------------------------------------------- 1 | tearDown 2 | ======== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestCacheDecoratorMemory.tearDown -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratormemory/tests.test_cache.TestCacheDecoratorMemory.test_rcache_callable.rst: -------------------------------------------------------------------------------- 1 | test\_rcache\_callable 2 | ====================== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestCacheDecoratorMemory.test_rcache_callable -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratormemory/tests.test_cache.TestCacheDecoratorMemory.test_rcache_rand.rst: -------------------------------------------------------------------------------- 1 | test\_rcache\_rand 2 | ================== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestCacheDecoratorMemory.test_rcache_rand -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratorredis/tests.test_cache.TestCacheDecoratorRedis.pytestmark.rst: -------------------------------------------------------------------------------- 1 | pytestmark 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. autoattribute:: TestCacheDecoratorRedis.pytestmark -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testcachedecoratorredis/tests.test_cache.TestCacheDecoratorRedis.setUpClass.rst: -------------------------------------------------------------------------------- 1 | setUpClass 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestCacheDecoratorRedis.setUpClass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.cache_keys.rst: -------------------------------------------------------------------------------- 1 | cache\_keys 2 | =========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. autoattribute:: TestMemoryCache.cache_keys -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.setUpClass.rst: -------------------------------------------------------------------------------- 1 | setUpClass 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.setUpClass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.tearDownClass.rst: -------------------------------------------------------------------------------- 1 | tearDownClass 2 | ============= 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.tearDownClass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.test_cache_expire.rst: -------------------------------------------------------------------------------- 1 | test\_cache\_expire 2 | =================== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.test_cache_expire -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.test_cache_remove.rst: -------------------------------------------------------------------------------- 1 | test\_cache\_remove 2 | =================== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.test_cache_remove -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.test_cache_set.rst: -------------------------------------------------------------------------------- 1 | test\_cache\_set 2 | ================ 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.test_cache_set -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testmemorycache/tests.test_cache.TestMemoryCache.test_cache_update_timeout.rst: -------------------------------------------------------------------------------- 1 | test\_cache\_update\_timeout 2 | ============================ 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestMemoryCache.test_cache_update_timeout -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testrediscache/tests.test_cache.TestRedisCache.pytestmark.rst: -------------------------------------------------------------------------------- 1 | pytestmark 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. autoattribute:: TestRedisCache.pytestmark -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_cache/testrediscache/tests.test_cache.TestRedisCache.setUpClass.rst: -------------------------------------------------------------------------------- 1 | setUpClass 2 | ========== 3 | 4 | .. currentmodule:: tests.test_cache 5 | 6 | .. automethod:: TestRedisCache.setUpClass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.example_items.rst: -------------------------------------------------------------------------------- 1 | example\_items 2 | ============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. autoattribute:: TestDictableNamedtuple.example_items -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.setUp.rst: -------------------------------------------------------------------------------- 1 | setUp 2 | ===== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.setUp -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_asdict.rst: -------------------------------------------------------------------------------- 1 | test\_asdict 2 | ============ 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_asdict -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_convert.rst: -------------------------------------------------------------------------------- 1 | test\_convert 2 | ============= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_convert -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_dict_cast.rst: -------------------------------------------------------------------------------- 1 | test\_dict\_cast 2 | ================ 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_dict_cast -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_get_attr.rst: -------------------------------------------------------------------------------- 1 | test\_get\_attr 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_get_attr -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_get_index.rst: -------------------------------------------------------------------------------- 1 | test\_get\_index 2 | ================ 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_get_index -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_get_item.rst: -------------------------------------------------------------------------------- 1 | test\_get\_item 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_get_item -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_metadata.rst: -------------------------------------------------------------------------------- 1 | test\_metadata 2 | ============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_metadata -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_set_attr.rst: -------------------------------------------------------------------------------- 1 | test\_set\_attr 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_set_attr -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_set_item.rst: -------------------------------------------------------------------------------- 1 | test\_set\_item 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_set_item -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictablenamedtuple/tests.test_collections.TestDictableNamedtuple.test_subclass.rst: -------------------------------------------------------------------------------- 1 | test\_subclass 2 | ============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictableNamedtuple.test_subclass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_convert_from_dict.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_from\_dict 2 | ========================= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_convert_from_dict -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_convert_to_dict.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_to\_dict 2 | ======================= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_convert_to_dict -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_json_dumps.rst: -------------------------------------------------------------------------------- 1 | test\_json\_dumps 2 | ================= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_json_dumps -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_json_dumps_nested.rst: -------------------------------------------------------------------------------- 1 | test\_json\_dumps\_nested 2 | ========================= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_json_dumps_nested -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_set_attr.rst: -------------------------------------------------------------------------------- 1 | test\_set\_attr 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_set_attr -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testdictobject/tests.test_collections.TestDictObject.test_set_item.rst: -------------------------------------------------------------------------------- 1 | test\_set\_item 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestDictObject.test_set_item -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testisnamedtuple/tests.test_collections.TestIsNamedTuple.dict_persons.rst: -------------------------------------------------------------------------------- 1 | dict\_persons 2 | ============= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. autoattribute:: TestIsNamedTuple.dict_persons -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testisnamedtuple/tests.test_collections.TestIsNamedTuple.named_persons.rst: -------------------------------------------------------------------------------- 1 | named\_persons 2 | ============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. autoattribute:: TestIsNamedTuple.named_persons -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testisnamedtuple/tests.test_collections.TestIsNamedTuple.test_dictable_namedtuple.rst: -------------------------------------------------------------------------------- 1 | test\_dictable\_namedtuple 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestIsNamedTuple.test_dictable_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testisnamedtuple/tests.test_collections.TestIsNamedTuple.test_not_namedtuple_int.rst: -------------------------------------------------------------------------------- 1 | test\_not\_namedtuple\_int 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestIsNamedTuple.test_not_namedtuple_int -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testisnamedtuple/tests.test_collections.TestIsNamedTuple.test_real_namedtuple.rst: -------------------------------------------------------------------------------- 1 | test\_real\_namedtuple 2 | ====================== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestIsNamedTuple.test_real_namedtuple -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testordereddictobject/tests.test_collections.TestOrderedDictObject.test_json_dumps.rst: -------------------------------------------------------------------------------- 1 | test\_json\_dumps 2 | ================= 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestOrderedDictObject.test_json_dumps -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testordereddictobject/tests.test_collections.TestOrderedDictObject.test_set_attr.rst: -------------------------------------------------------------------------------- 1 | test\_set\_attr 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestOrderedDictObject.test_set_attr -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_collections/testordereddictobject/tests.test_collections.TestOrderedDictObject.test_set_item.rst: -------------------------------------------------------------------------------- 1 | test\_set\_item 2 | =============== 3 | 4 | .. currentmodule:: tests.test_collections 5 | 6 | .. automethod:: TestOrderedDictObject.test_set_item -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_int.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_int 2 | ======================== 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_int -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_int_ms.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_int\_ms 2 | ============================ 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_int_ms -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_str.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_str 2 | ======================== 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_str -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_str_2.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_str\_2 2 | =========================== 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_str_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_str_3.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_str\_3 2 | =========================== 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_str_3 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_date_str_4.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_date\_str\_4 2 | =========================== 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_date_str_4 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_converters/testconvertdate/tests.test_converters.TestConvertDate.test_convert_unixtime_int.rst: -------------------------------------------------------------------------------- 1 | test\_convert\_unixtime\_int 2 | ============================ 3 | 4 | .. currentmodule:: tests.test_converters 5 | 6 | .. automethod:: TestConvertDate.test_convert_unixtime_int -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/cryptobasecase/tests.test_crypto.CryptoBaseCase.fake_b64_key.rst: -------------------------------------------------------------------------------- 1 | fake\_b64\_key 2 | ============== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. autoattribute:: CryptoBaseCase.fake_b64_key -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_corrupt_key_encrypt.rst: -------------------------------------------------------------------------------- 1 | test\_corrupt\_key\_encrypt 2 | =========================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_corrupt_key_encrypt -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_generate_key_enc_dec.rst: -------------------------------------------------------------------------------- 1 | test\_generate\_key\_enc\_dec 2 | ============================= 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_generate_key_enc_dec -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_invalid_key_decrypt.rst: -------------------------------------------------------------------------------- 1 | test\_invalid\_key\_decrypt 2 | =========================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_invalid_key_decrypt -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_is_encrypted.rst: -------------------------------------------------------------------------------- 1 | test\_is\_encrypted 2 | =================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_is_encrypted -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_password_key_diffpass.rst: -------------------------------------------------------------------------------- 1 | test\_password\_key\_diffpass 2 | ============================= 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_password_key_diffpass -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_password_key_diffsalt.rst: -------------------------------------------------------------------------------- 1 | test\_password\_key\_diffsalt 2 | ============================= 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_password_key_diffsalt -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_password_key_equal.rst: -------------------------------------------------------------------------------- 1 | test\_password\_key\_equal 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_password_key_equal -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.test_password_key_gensalt.rst: -------------------------------------------------------------------------------- 1 | test\_password\_key\_gensalt 2 | ============================ 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestEncryptHelper.test_password_key_gensalt -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testencrypthelper/tests.test_crypto.TestEncryptHelper.txt.rst: -------------------------------------------------------------------------------- 1 | txt 2 | === 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. autoattribute:: TestEncryptHelper.txt -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagergeneration/tests.test_crypto.TestKeyManagerGeneration.test_ecdsa_gen.rst: -------------------------------------------------------------------------------- 1 | test\_ecdsa\_gen 2 | ================ 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerGeneration.test_ecdsa_gen -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagergeneration/tests.test_crypto.TestKeyManagerGeneration.test_ed25519_gen.rst: -------------------------------------------------------------------------------- 1 | test\_ed25519\_gen 2 | ================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerGeneration.test_ed25519_gen -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagergeneration/tests.test_crypto.TestKeyManagerGeneration.test_output_keypair.rst: -------------------------------------------------------------------------------- 1 | test\_output\_keypair 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerGeneration.test_output_keypair -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagergeneration/tests.test_crypto.TestKeyManagerGeneration.test_rsa_gen.rst: -------------------------------------------------------------------------------- 1 | test\_rsa\_gen 2 | ============== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerGeneration.test_rsa_gen -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagerload/tests.test_crypto.TestKeyManagerLoad.test_ecdsa_load.rst: -------------------------------------------------------------------------------- 1 | test\_ecdsa\_load 2 | ================= 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerLoad.test_ecdsa_load -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagerload/tests.test_crypto.TestKeyManagerLoad.test_ed25519_load.rst: -------------------------------------------------------------------------------- 1 | test\_ed25519\_load 2 | =================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerLoad.test_ed25519_load -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagerload/tests.test_crypto.TestKeyManagerLoad.test_load_invalid.rst: -------------------------------------------------------------------------------- 1 | test\_load\_invalid 2 | =================== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerLoad.test_load_invalid -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagerload/tests.test_crypto.TestKeyManagerLoad.test_load_keyfile_noexist.rst: -------------------------------------------------------------------------------- 1 | test\_load\_keyfile\_noexist 2 | ============================ 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerLoad.test_load_keyfile_noexist -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_crypto/testkeymanagerload/tests.test_crypto.TestKeyManagerLoad.test_rsa_load.rst: -------------------------------------------------------------------------------- 1 | test\_rsa\_load 2 | =============== 3 | 4 | .. currentmodule:: tests.test_crypto 5 | 6 | .. automethod:: TestKeyManagerLoad.test_rsa_load -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/example/tests.test_extras.Example.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: Example.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testattrs/tests.test_extras.TestAttrs.pytestmark.rst: -------------------------------------------------------------------------------- 1 | pytestmark 2 | ========== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. autoattribute:: TestAttrs.pytestmark -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testattrs/tests.test_extras.TestAttrs.test_dictable_cast_dict.rst: -------------------------------------------------------------------------------- 1 | test\_dictable\_cast\_dict 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestAttrs.test_dictable_cast_dict -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testattrs/tests.test_extras.TestAttrs.test_dictable_set_get.rst: -------------------------------------------------------------------------------- 1 | test\_dictable\_set\_get 2 | ======================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestAttrs.test_dictable_set_get -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.setUp.rst: -------------------------------------------------------------------------------- 1 | setUp 2 | ===== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.setUp -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.tearDown.rst: -------------------------------------------------------------------------------- 1 | tearDown 2 | ======== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.tearDown -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_add.rst: -------------------------------------------------------------------------------- 1 | test\_add 2 | ========= 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_add -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_add_async.rst: -------------------------------------------------------------------------------- 1 | test\_add\_async 2 | ================ 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_add_async -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_checkout.rst: -------------------------------------------------------------------------------- 1 | test\_checkout 2 | ============== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_checkout -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_checkout_async.rst: -------------------------------------------------------------------------------- 1 | test\_checkout\_async 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_checkout_async -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_commit.rst: -------------------------------------------------------------------------------- 1 | test\_commit 2 | ============ 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_commit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_commit_async.rst: -------------------------------------------------------------------------------- 1 | test\_commit\_async 2 | =================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_commit_async -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_get_current_branch.rst: -------------------------------------------------------------------------------- 1 | test\_get\_current\_branch 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_get_current_branch -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_get_current_commit.rst: -------------------------------------------------------------------------------- 1 | test\_get\_current\_commit 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_get_current_commit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_get_current_tag.rst: -------------------------------------------------------------------------------- 1 | test\_get\_current\_tag 2 | ======================= 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_get_current_tag -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_init.rst: -------------------------------------------------------------------------------- 1 | test\_init 2 | ========== 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_init -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_extras/testgit/tests.test_extras.TestGit.test_init_async.rst: -------------------------------------------------------------------------------- 1 | test\_init\_async 2 | ================= 3 | 4 | .. currentmodule:: tests.test_extras 5 | 6 | .. automethod:: TestGit.test_init_async -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/baseone/tests.general.test_inspect.BaseOne.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: tests.general.test_inspect 5 | 6 | .. automethod:: BaseOne.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/basetwo/tests.general.test_inspect.BaseTwo.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: tests.general.test_inspect 5 | 6 | .. automethod:: BaseTwo.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/inheritexample/tests.general.test_inspect.InheritExample.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: tests.general.test_inspect 5 | 6 | .. automethod:: InheritExample.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/simpleexample/tests.general.test_inspect.SimpleExample.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: tests.general.test_inspect 5 | 6 | .. automethod:: SimpleExample.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.setUp.rst: -------------------------------------------------------------------------------- 1 | setUp 2 | ===== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.setUp -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_call_sys_async_read.rst: -------------------------------------------------------------------------------- 1 | test\_call\_sys\_async\_read 2 | ============================ 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_call_sys_async_read -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_call_sys_async_write.rst: -------------------------------------------------------------------------------- 1 | test\_call\_sys\_async\_write 2 | ============================= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_call_sys_async_write -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_call_sys_read.rst: -------------------------------------------------------------------------------- 1 | test\_call\_sys\_read 2 | ===================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_call_sys_read -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_call_sys_write.rst: -------------------------------------------------------------------------------- 1 | test\_call\_sys\_write 2 | ====================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_call_sys_write -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_chunked.rst: -------------------------------------------------------------------------------- 1 | test\_chunked 2 | ============= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_chunked -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_filter_form_dict1.rst: -------------------------------------------------------------------------------- 1 | test\_filter\_form\_dict1 2 | ========================= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_filter_form_dict1 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_human_name_class.rst: -------------------------------------------------------------------------------- 1 | test\_human\_name\_class 2 | ======================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_human_name_class -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_human_name_func.rst: -------------------------------------------------------------------------------- 1 | test\_human\_name\_func 2 | ======================= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_human_name_func -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_human_name_str_bytes.rst: -------------------------------------------------------------------------------- 1 | test\_human\_name\_str\_bytes 2 | ============================= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_human_name_str_bytes -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_inject_items.rst: -------------------------------------------------------------------------------- 1 | test\_inject\_items 2 | =================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_inject_items -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_inject_items_2.rst: -------------------------------------------------------------------------------- 1 | test\_inject\_items\_2 2 | ====================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_inject_items_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_retry_on_err.rst: -------------------------------------------------------------------------------- 1 | test\_retry\_on\_err 2 | ==================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_retry_on_err -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneral/tests.general.test_general.TestGeneral.test_retry_on_err_return.rst: -------------------------------------------------------------------------------- 1 | test\_retry\_on\_err\_return 2 | ============================ 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneral.test_retry_on_err_return -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneralalmost/tests.general.test_general.TestGeneralAlmost.test_four_numbers.rst: -------------------------------------------------------------------------------- 1 | test\_four\_numbers 2 | =================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralAlmost.test_four_numbers -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneralalmost/tests.general.test_general.TestGeneralAlmost.test_two_numbers.rst: -------------------------------------------------------------------------------- 1 | test\_two\_numbers 2 | ================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralAlmost.test_two_numbers -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneralextractsettings/tests.general.test_general.TestGeneralExtractSettings.ex_settings.rst: -------------------------------------------------------------------------------- 1 | ex\_settings 2 | ============ 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. autoattribute:: TestGeneralExtractSettings.ex_settings -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneraltail/tests.general.test_general.TestGeneralTail.test_tail_10_lines_10.rst: -------------------------------------------------------------------------------- 1 | test\_tail\_10\_lines\_10 2 | ========================= 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralTail.test_tail_10_lines_10 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneraltail/tests.general.test_general.TestGeneralTail.test_tail_10_lines_3.rst: -------------------------------------------------------------------------------- 1 | test\_tail\_10\_lines\_3 2 | ======================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralTail.test_tail_10_lines_3 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneraltail/tests.general.test_general.TestGeneralTail.test_tail_10_lines_5.rst: -------------------------------------------------------------------------------- 1 | test\_tail\_10\_lines\_5 2 | ======================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralTail.test_tail_10_lines_5 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testgeneraltail/tests.general.test_general.TestGeneralTail.test_tail_500_lines_20.rst: -------------------------------------------------------------------------------- 1 | test\_tail\_500\_lines\_20 2 | ========================== 3 | 4 | .. currentmodule:: tests.general.test_general 5 | 6 | .. automethod:: TestGeneralTail.test_tail_500_lines_20 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testmocker/tests.general.test_mocker.TestMocker.test_mocker_add_modules.rst: -------------------------------------------------------------------------------- 1 | test\_mocker\_add\_modules 2 | ========================== 3 | 4 | .. currentmodule:: tests.general.test_mocker 5 | 6 | .. automethod:: TestMocker.test_mocker_add_modules -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testmocker/tests.general.test_mocker.TestMocker.test_mocker_attributes.rst: -------------------------------------------------------------------------------- 1 | test\_mocker\_attributes 2 | ======================== 3 | 4 | .. currentmodule:: tests.general.test_mocker 5 | 6 | .. automethod:: TestMocker.test_mocker_attributes -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testmocker/tests.general.test_mocker.TestMocker.test_mocker_items.rst: -------------------------------------------------------------------------------- 1 | test\_mocker\_items 2 | =================== 3 | 4 | .. currentmodule:: tests.general.test_mocker 5 | 6 | .. automethod:: TestMocker.test_mocker_items -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/testmocker/tests.general.test_mocker.TestMocker.test_mocker_make_class.rst: -------------------------------------------------------------------------------- 1 | test\_mocker\_make\_class 2 | ========================= 3 | 4 | .. currentmodule:: tests.general.test_mocker 5 | 6 | .. automethod:: TestMocker.test_mocker_make_class -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_general/tests.general.test_inspect.some_func.rst: -------------------------------------------------------------------------------- 1 | some\_func 2 | ========== 3 | 4 | .. currentmodule:: tests.general.test_inspect 5 | 6 | .. autofunction:: some_func -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_asn_to_name_erroneous.rst: -------------------------------------------------------------------------------- 1 | test\_asn\_to\_name\_erroneous 2 | ============================== 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_asn_to_name_erroneous -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_asn_to_name_erroneous_2.rst: -------------------------------------------------------------------------------- 1 | test\_asn\_to\_name\_erroneous\_2 2 | ================================= 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_asn_to_name_erroneous_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_asn_to_name_int.rst: -------------------------------------------------------------------------------- 1 | test\_asn\_to\_name\_int 2 | ======================== 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_asn_to_name_int -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_asn_to_name_str.rst: -------------------------------------------------------------------------------- 1 | test\_asn\_to\_name\_str 2 | ======================== 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_asn_to_name_str -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_ping.rst: -------------------------------------------------------------------------------- 1 | test\_ping 2 | ========== 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_ping -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_net/testnet/tests.test_net.TestNet.test_ping_v6.rst: -------------------------------------------------------------------------------- 1 | test\_ping\_v6 2 | ============== 3 | 4 | .. currentmodule:: tests.test_net 5 | 6 | .. automethod:: TestNet.test_ping_v6 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_csv_single.rst: -------------------------------------------------------------------------------- 1 | test\_csv\_single 2 | ================= 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_csv_single -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_csv_spaced.rst: -------------------------------------------------------------------------------- 1 | test\_csv\_spaced 2 | ================= 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_csv_spaced -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_env_bool_false.rst: -------------------------------------------------------------------------------- 1 | test\_env\_bool\_false 2 | ====================== 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_env_bool_false -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_env_bool_true.rst: -------------------------------------------------------------------------------- 1 | test\_env\_bool\_true 2 | ===================== 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_env_bool_true -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_env_nonexist_bool.rst: -------------------------------------------------------------------------------- 1 | test\_env\_nonexist\_bool 2 | ========================= 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_env_nonexist_bool -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_kval_clean.rst: -------------------------------------------------------------------------------- 1 | test\_kval\_clean 2 | ================= 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_kval_clean -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_kval_custom_clean.rst: -------------------------------------------------------------------------------- 1 | test\_kval\_custom\_clean 2 | ========================= 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_kval_custom_clean -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_kval_custom_spaced.rst: -------------------------------------------------------------------------------- 1 | test\_kval\_custom\_spaced 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_kval_custom_spaced -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_kval_single.rst: -------------------------------------------------------------------------------- 1 | test\_kval\_single 2 | ================== 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_kval_single -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_parse/testparsehelpers/tests.test_parse.TestParseHelpers.test_kval_spaced.rst: -------------------------------------------------------------------------------- 1 | test\_kval\_spaced 2 | ================== 3 | 4 | .. currentmodule:: tests.test_parse 5 | 6 | .. automethod:: TestParseHelpers.test_kval_spaced -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_arpa_boundary_16bit.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_arpa\_boundary\_16bit 2 | =============================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_arpa_boundary_16bit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_arpa_boundary_24bit.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_arpa\_boundary\_24bit 2 | =============================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_arpa_boundary_24bit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_inv_boundary.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_inv\_boundary 2 | ======================= 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_inv_boundary -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_inv_boundary_2.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_inv\_boundary\_2 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_inv_boundary_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_invalid.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_invalid 2 | ================= 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_invalid -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_invalid_2.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_invalid\_2 2 | ==================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_invalid_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v4_to_arpa.rst: -------------------------------------------------------------------------------- 1 | test\_v4\_to\_arpa 2 | ================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v4_to_arpa -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_arpa_boundary_16bit.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_arpa\_boundary\_16bit 2 | =============================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_arpa_boundary_16bit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_arpa_boundary_32bit.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_arpa\_boundary\_32bit 2 | =============================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_arpa_boundary_32bit -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_inv_boundary.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_inv\_boundary 2 | ======================= 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_inv_boundary -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_inv_boundary_2.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_inv\_boundary\_2 2 | ========================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_inv_boundary_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_invalid.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_invalid 2 | ================= 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_invalid -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_invalid_2.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_invalid\_2 2 | ==================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_invalid_2 -------------------------------------------------------------------------------- /docs/source/helpers/tests/test_rdns/testipreversedns/tests.test_rdns.TestIPReverseDNS.test_v6_to_arpa.rst: -------------------------------------------------------------------------------- 1 | test\_v6\_to\_arpa 2 | ================== 3 | 4 | .. currentmodule:: tests.test_rdns 5 | 6 | .. automethod:: TestIPReverseDNS.test_v6_to_arpa -------------------------------------------------------------------------------- /docs/source/helpers/tests/tests.asyncx.rst: -------------------------------------------------------------------------------- 1 | tests.asyncx 2 | ============ 3 | 4 | .. automodule:: tests.asyncx 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/source/helpers/tests/tests.cache.rst: -------------------------------------------------------------------------------- 1 | tests.cache 2 | =========== 3 | 4 | .. automodule:: tests.cache 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.clear.rst: -------------------------------------------------------------------------------- 1 | clear 2 | ===== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.clear -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.set.rst: -------------------------------------------------------------------------------- 1 | set 2 | === 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.set -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.wait.rst: -------------------------------------------------------------------------------- 1 | wait 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.wait -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.wait_clear.rst: -------------------------------------------------------------------------------- 1 | wait\_clear 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.wait_clear -------------------------------------------------------------------------------- /docs/source/helpers/thread/betterevent/privex.helpers.thread.BetterEvent.wait_set.rst: -------------------------------------------------------------------------------- 1 | wait\_set 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: BetterEvent.wait_set -------------------------------------------------------------------------------- /docs/source/helpers/thread/privex.helpers.thread.event_multi_wait.rst: -------------------------------------------------------------------------------- 1 | event\_multi\_wait 2 | ================== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autofunction:: event_multi_wait -------------------------------------------------------------------------------- /docs/source/helpers/thread/privex.helpers.thread.event_multi_wait_all.rst: -------------------------------------------------------------------------------- 1 | event\_multi\_wait\_all 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autofunction:: event_multi_wait_all -------------------------------------------------------------------------------- /docs/source/helpers/thread/privex.helpers.thread.event_multi_wait_any.rst: -------------------------------------------------------------------------------- 1 | event\_multi\_wait\_any 2 | ======================= 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autofunction:: event_multi_wait_any -------------------------------------------------------------------------------- /docs/source/helpers/thread/privex.helpers.thread.lock_acquire_timeout.rst: -------------------------------------------------------------------------------- 1 | lock\_acquire\_timeout 2 | ====================== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autofunction:: lock_acquire_timeout -------------------------------------------------------------------------------- /docs/source/helpers/thread/safeloopthread/privex.helpers.thread.SafeLoopThread.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: SafeLoopThread.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/thread/safeloopthread/privex.helpers.thread.SafeLoopThread.loop.rst: -------------------------------------------------------------------------------- 1 | loop 2 | ==== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: SafeLoopThread.loop -------------------------------------------------------------------------------- /docs/source/helpers/thread/safeloopthread/privex.helpers.thread.SafeLoopThread.loop_sleep.rst: -------------------------------------------------------------------------------- 1 | loop\_sleep 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autoattribute:: SafeLoopThread.loop_sleep -------------------------------------------------------------------------------- /docs/source/helpers/thread/safeloopthread/privex.helpers.thread.SafeLoopThread.pause_sleep.rst: -------------------------------------------------------------------------------- 1 | pause\_sleep 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autoattribute:: SafeLoopThread.pause_sleep -------------------------------------------------------------------------------- /docs/source/helpers/thread/safeloopthread/privex.helpers.thread.SafeLoopThread.run.rst: -------------------------------------------------------------------------------- 1 | run 2 | === 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: SafeLoopThread.run -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.__init__.rst: -------------------------------------------------------------------------------- 1 | \_\_init\_\_ 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: StopperThread.__init__ -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.emit_pause.rst: -------------------------------------------------------------------------------- 1 | emit\_pause 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: StopperThread.emit_pause -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.emit_start.rst: -------------------------------------------------------------------------------- 1 | emit\_start 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: StopperThread.emit_start -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.emit_stop.rst: -------------------------------------------------------------------------------- 1 | emit\_stop 2 | ========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: StopperThread.emit_stop -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.emit_unpause.rst: -------------------------------------------------------------------------------- 1 | emit\_unpause 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. automethod:: StopperThread.emit_unpause -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.should_pause.rst: -------------------------------------------------------------------------------- 1 | should\_pause 2 | ============= 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autoproperty:: StopperThread.should_pause -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.should_run.rst: -------------------------------------------------------------------------------- 1 | should\_run 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autoproperty:: StopperThread.should_run -------------------------------------------------------------------------------- /docs/source/helpers/thread/stopperthread/privex.helpers.thread.StopperThread.should_stop.rst: -------------------------------------------------------------------------------- 1 | should\_stop 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.thread 5 | 6 | .. autoproperty:: StopperThread.should_stop -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.AnyNum.rst: -------------------------------------------------------------------------------- 1 | AnyNum 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autogenericalias:: AnyNum -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.C.rst: -------------------------------------------------------------------------------- 1 | C 2 | = 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: C -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.CL.rst: -------------------------------------------------------------------------------- 1 | CL 2 | == 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: CL -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.IP_NET_OR_STR.rst: -------------------------------------------------------------------------------- 1 | IP\_NET\_OR\_STR 2 | ================ 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autogenericalias:: IP_NET_OR_STR -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.IP_OR_STR.rst: -------------------------------------------------------------------------------- 1 | IP\_OR\_STR 2 | =========== 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autogenericalias:: IP_OR_STR -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.K.rst: -------------------------------------------------------------------------------- 1 | K 2 | = 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: K -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.NET_OR_STR.rst: -------------------------------------------------------------------------------- 1 | NET\_OR\_STR 2 | ============ 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autogenericalias:: NET_OR_STR -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.Number.rst: -------------------------------------------------------------------------------- 1 | Number 2 | ====== 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: Number -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.NumberStr.rst: -------------------------------------------------------------------------------- 1 | NumberStr 2 | ========= 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: NumberStr -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.STRBYTES.rst: -------------------------------------------------------------------------------- 1 | STRBYTES 2 | ======== 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: STRBYTES -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.T.rst: -------------------------------------------------------------------------------- 1 | T 2 | = 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: T -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.V.rst: -------------------------------------------------------------------------------- 1 | V 2 | = 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: V -------------------------------------------------------------------------------- /docs/source/helpers/types/privex.helpers.types.VAL_FUNC_CORO.rst: -------------------------------------------------------------------------------- 1 | VAL\_FUNC\_CORO 2 | =============== 3 | 4 | .. currentmodule:: privex.helpers.types 5 | 6 | .. autodata:: VAL_FUNC_CORO -------------------------------------------------------------------------------- /extras/cache.txt: -------------------------------------------------------------------------------- 1 | redis>=3.3 2 | aioredis>=1.3 3 | hiredis 4 | pylibmc>=1.6.0 5 | aiomcache>=0.6 6 | privex-db>=0.9.2 7 | aiosqlite>=0.12 8 | 9 | -------------------------------------------------------------------------------- /extras/crypto.txt: -------------------------------------------------------------------------------- 1 | cryptography>=2.8 2 | -------------------------------------------------------------------------------- /extras/dev.txt: -------------------------------------------------------------------------------- 1 | -r extras/full.txt 2 | -r extras/django.txt 3 | -r extras/docs.txt 4 | -r extras/tests.txt 5 | -r extras/dev_general.txt 6 | -------------------------------------------------------------------------------- /extras/dev_general.txt: -------------------------------------------------------------------------------- 1 | # For generating stub files (.pyi) + some other helpful dev features 2 | mypy>=0.780 3 | 4 | # (IPython) Provides a much nicer Python REPL console, especially in PyCharm 5 | jupyter 6 | -------------------------------------------------------------------------------- /extras/django.txt: -------------------------------------------------------------------------------- 1 | Django 2 | -------------------------------------------------------------------------------- /extras/docs.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=3.1.1 2 | sphinx-autobuild>=0.7.1 3 | restructuredtext-lint>=1.3.0 4 | sphinx-rtd-theme>=0.5.0 5 | MarkupSafe>=1.1.1 6 | docutils>=0.14 7 | -------------------------------------------------------------------------------- /extras/extras.txt: -------------------------------------------------------------------------------- 1 | # All packages required for the `extras` module. 2 | attrs 3 | -------------------------------------------------------------------------------- /extras/full.txt: -------------------------------------------------------------------------------- 1 | -r extras/cache.txt 2 | -r extras/net.txt 3 | -r extras/crypto.txt 4 | -r extras/setuppy.txt 5 | -------------------------------------------------------------------------------- /extras/geoip.txt: -------------------------------------------------------------------------------- 1 | geoip2>=3.0.0 2 | attrs 3 | -------------------------------------------------------------------------------- /extras/net.txt: -------------------------------------------------------------------------------- 1 | dnspython>=1.16 2 | -r extras/geoip.txt 3 | -------------------------------------------------------------------------------- /extras/setuppy.txt: -------------------------------------------------------------------------------- 1 | # Core package for setup.py 2 | setuptools 3 | # Required for setup.py bdist_wheel 4 | wheel 5 | # Used for uploading built packages 6 | twine 7 | # Used for version bumping related functions/classes 8 | semver 9 | -------------------------------------------------------------------------------- /extras/tests.txt: -------------------------------------------------------------------------------- 1 | # Unit testing 2 | pytest==5.4.* 3 | pytest-cov 4 | pytest-asyncio==0.14.* 5 | coverage 6 | codecov 7 | 8 | -------------------------------------------------------------------------------- /privex_stubs/privex/__init__.pyi: -------------------------------------------------------------------------------- 1 | 2 | __path__ = __import__('pkgutil').extend_path(__path__, __name__) 3 | 4 | from .helpers import * 5 | -------------------------------------------------------------------------------- /privex_stubs/privex/db: -------------------------------------------------------------------------------- 1 | /Users/chris/.local/share/virtualenvs/helpers-IG0UDhHY/lib/python3.8/site-packages/privex/db -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/crypto/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .EncryptHelper import EncryptHelper as EncryptHelper 2 | from .KeyManager import Format as Format, KeyManager as KeyManager 3 | from .base import auto_b64decode as auto_b64decode, is_base64 as is_base64 4 | -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/crypto/base.pyi: -------------------------------------------------------------------------------- 1 | from privex.helpers import byteify as byteify 2 | from typing import Union 3 | 4 | def is_base64(sb: Union[str, bytes], urlsafe: bool=...) -> bool: ... 5 | def auto_b64decode(data: Union[str, bytes], urlsafe: bool=...) -> bytes: ... 6 | -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/extras/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .attrs import * 2 | from .git import * 3 | 4 | HAS_ATTRS: bool 5 | 6 | # Names in __all__ with no definition: 7 | # AttribDictable 8 | -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/net/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .dns import * 2 | from .util import * 3 | from .common import * 4 | from .socket import * 5 | from privex.helpers.exceptions import BoundaryException as BoundaryException, NetworkUnreachable as NetworkUnreachable 6 | -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/setuppy/__init__.pyi: -------------------------------------------------------------------------------- 1 | from .common import * 2 | from .bump import * 3 | from .commands import * 4 | -------------------------------------------------------------------------------- /privex_stubs/privex/helpers/version.pyi: -------------------------------------------------------------------------------- 1 | name: str 2 | VERSION: str 3 | -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | filterwarnings = 3 | ignore:.*coroutine" decorator is deprecated:DeprecationWarning 4 | ignore:.*loop argument is deprecated:DeprecationWarning 5 | markers = 6 | asyncio: asyncio mark 7 | asyncio_mode = auto -------------------------------------------------------------------------------- /tests/__main__.py: -------------------------------------------------------------------------------- 1 | """ 2 | This file exists to allow for ``python3 -m tests`` to work, as python's module execution option 3 | attempts to load ``__main__`` from a package. 4 | """ 5 | from tests import * 6 | 7 | if __name__ == '__main__': 8 | unittest.main() 9 | -------------------------------------------------------------------------------- /tests/asyncx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Privex/python-helpers/f4a4a0229123bd31f6bb297e4114a95d82f0c0a1/tests/asyncx/__init__.py --------------------------------------------------------------------------------