Code Monkey home page Code Monkey logo

xlfunctions's People

Contributors

brad-eki avatar strichter avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

shoobx

xlfunctions's Issues

Add support for TRUNC

Implementation:

def trunc(number, num_digits=0):
    """Truncate a number to the specified number of digits."""

    if isinstance(number, (int, float)):
        # Simple case. We want to make sure to return an integer in this
        # case.
        if num_digits == 0:
            return math.trunc(number)
        return math.trunc(number * 10**num_digits) / 10**num_digits
    else:
        return ExcelError(
            '#VALUE!', '{} must be a number. You gave me a {}'.format(
                number, type(number)))


xlcalculator.evaluator.evaluator.TRUNC = trunc
xlfunctions.TRUNC = trunc
xlfunctions.SUPPORTED_FUNCTIONS['TRUNC'] = 'TRUNC'

Note that because you are importing all functions early in xlcalculator you have to register your function everywhere.

I would propose to create a proper functions object in which you can register new functions by reference instead of partial Python path.

class ExcelFunctions(dict):

    def register(self, func, name=None):
        if name is None:
           name = func.__name__
        self[name.upper()] = func

    def __getattr__(self, name):
        return self[name]

fn  = ExcelFunctions()

# A quick decorator
def register(name=None):
    def reg(func):
        fn.register(func, name)
    return reg

# Example use:

@register('TRUNC')
def trunc(arg):
    return int(arg)

eval(model.cells['A1'].formula.python_code, locals={'fn': fn})

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.