Utilities
Decorators
- edsl.utilities.decorators.add_edsl_version(func)[source]
Decorator for EDSL objects’ to_dict method. - Adds the EDSL version and class name to the dictionary.
- edsl.utilities.decorators.jupyter_nb_handler(func)[source]
Decorator to run an async function in the event loop if it’s running, or synchronously otherwise.
Interface
Pastebin
Utilities
Utility functions for working with strings, dictionaries, and files.
- class edsl.utilities.utilities.CustomEncoder(*, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, sort_keys=False, indent=None, separators=None, default=None)[source]
Bases:
JSONEncoder
- default(obj)[source]
Implement this method in a subclass such that it returns a serializable object for
o
, or calls the base implementation (to raise aTypeError
).For example, to support arbitrary iterators, you could implement default like this:
def default(self, o): try: iterable = iter(o) except TypeError: pass else: return list(iterable) # Let the base class default method raise the TypeError return super().default(o)
- class edsl.utilities.utilities.HTMLSnippet(value)[source]
Bases:
str
Create an object with html content (value).
view method allows you to view the html content in a web browser.
- edsl.utilities.utilities.clean_json(bad_json_str)[source]
Clean JSON string by replacing single quotes with double quotes
- edsl.utilities.utilities.create_valid_var_name(s, transform_func: ~typing.Callable = <function <lambda>>) str [source]
Create a valid variable name from a string.
- edsl.utilities.utilities.file_notice(file_name)[source]
Print a notice about the file being created.
- edsl.utilities.utilities.hash_value(value: str | int) str [source]
Hash a string or integer value using SHA-256.
- edsl.utilities.utilities.is_notebook() bool [source]
Check if the code is running in a Jupyter notebook or Google Colab.
- edsl.utilities.utilities.is_valid_variable_name(name, allow_name=True)[source]
Check if a string is a valid variable name.
- edsl.utilities.utilities.merge_dicts(dict_list)[source]
Merge a list of dictionaries into a single dictionary.
- edsl.utilities.utilities.repair_json(json_string: str) str [source]
Attempt to repair a JSON string that is not valid JSON.
- edsl.utilities.utilities.shorten_string(s, max_length, placeholder='...')[source]
Shorten a string to a maximum length by removing characters from the middle.
- edsl.utilities.utilities.shortname_proposal(question, max_length=None)[source]
Take a question text and generate a slug.