Git Product home page Git Product logo

d8s-utility's Introduction

Democritus Utility

PyPI CI Lint codecov The Democritus Project uses semver version 2.0.0 The Democritus Project uses black to format code License: LGPL v3

Democritus functions[1] for working with utility functions.

[1] Democritus functions are simple, effective, modular, well-tested, and well-documented Python functions.

We use d8s (pronounced "dee-eights") as an abbreviation for democritus (you can read more about this here).

Installation

pip install d8s-utility

Usage

You import the library like:

from d8s_utility import *

Once imported, you can use any of the functions listed below.

Functions

  • def copy_first_arg(func):
        """Decorator to make a copy of the first argument and pass into the func."""
  • def has_more_than_one_item(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
  • def has_one_or_more_items(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
  • def has_one_item(thing: Any) -> bool:
        """Return whether or not the given thing has a length of at least one."""
  • def request_or_read(path):
        """If the given path is a URL, request the URL and return the content; if the path exists read the file.
    
    Otherwise, just return the string and assume it is the input itself."""
  • def request_or_read_first_arg(func):
        """If the first arg is a url - request the URL. If it is a file path, try to read the file.
    
    If it is neither a URL nor file path, return the content of the first arg."""
  • def is_sorted(iterable, *, descending: bool = False) -> bool:
        """Return whether or not the iterable is sorted."""
  • def first_unsorted_value(iterable, *, descending: bool = False) -> Any:
        """Return the first unsorted value in the iterable."""
  • def last_unsorted_value(iterable, *, descending: bool = False) -> Any:
        """Return the last unsorted value in the iterable."""
  • def unsorted_values(iterable, *, descending: bool = False) -> Iterable[Any]:
        """."""
  • def sorted_values(iterable, *, descending: bool = False) -> Iterable[Any]:
        """."""
  • def ignore_errors(function, *args, **kwargs):
        """."""
  • def zip_if_same_length(*iterables, debug_failure: bool = False):
        """Zip the given iterables if they are the same length.
    
    If they are not the same length, raise an assertion error."""
  • def unique_items(iterable_a: Any, iterable_b: Any) -> Dict[str, Set[Any]]:
        """Find the values unique to iterable_a and iterable_b (relative to one another)."""
  • def prettify(thing: Any, *args):
        """."""
  • def pretty_print(thing: Any, *args):
        """."""
  • def subprocess_run(command, input_=None):
        """Run the given command as if it were run in a command line."""
  • def stringify_first_arg(func):
        """Decorator to convert the first argument to a string."""
  • def retry_if_no_result(wait_seconds=10):
        """Decorator to call the given function and recall it if it returns nothing."""
  • def map_first_arg(func):
        """If the first argument is a list or tuple, iterate through each item in the list and send it to the function."""
  • def repeat_concurrently(n: int = 10):
        """Repeat the decorated function concurrently n times."""
  • def validate_keyword_arg_value(
        keyword: str, valid_keyword_values: Iterable[Any], fail_if_keyword_not_found: bool = True
    ):
        """Validate that the value for the given keyword is in the list of valid_keyword_values."""
  • def validate_arg_value(arg_index: StrOrNumberType, valid_values: Iterable[Any]):
        """Validate that the value of the argument at the given arg_index is in the list of valid_values."""
  • def wait_and_retry_on_failure(wait_seconds=10):
        """Try to call the given function.
    
    If there is an exception thrown by the function, wait for wait_seconds and try again."""

Development

๐Ÿ‘‹ ย If you want to get involved in this project, we have some short, helpful guides below:

If you have any questions or there is anything we did not cover, please raise an issue and we'll be happy to help.

Credits

This package was created with Cookiecutter and Floyd Hightower's Python project template.

d8s-utility's People

Contributors

dependabot[bot] avatar fhightower avatar

Watchers

 avatar  avatar

d8s-utility's Issues

code execution backdoor

We discovered a potential code execution backdoor in version 0.1.0 of the project, the backdoor is the democritus-file-system package. Attackers can upload democritus-file-system packages containing arbitrary malicious code. For the safety of this project, the democritus-file-system package has been uploaded by us.

image

The democritus-file-system package can be successfully installed using pip install d8s-utility==0.1.0

image

Suggestion: remove version 0.1.0 of this project in PyPI

code execution backdoor

We discovered a potential code execution backdoor in version 0.1.0 of the project, the backdoor is the democritus-urls package. Attackers can upload democritus-urls packages containing arbitrary malicious code. For the safety of this project, the democritus-urls package has been uploaded by us.

image

The democritus-urls package can be successfully installed using pip install d8s-utility==0.1.0

image

Suggestion: remove version 0.1.0 of this project in PyPI

code execution backdoor

We discovered a potential code execution backdoor in version 0.1.0 of the project, the backdoor is the democritus-networking package. Attackers can upload democritus-networking packages containing arbitrary malicious code. For the safety of this project, the democritus-networking package has been uploaded by us.

image

The democritus-networking package can be successfully installed using pip install d8s-utility==0.1.0

image

Suggestion: remove version 0.1.0 of this project in PyPI

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.