Skip to main content

Python wrapper around Lua and LuaJIT

Project description

Lupa

logo/logo-220x200.png

Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. It is a partial rewrite of LunaticPython in Cython with some additional features such as proper coroutine support.

For questions not answered here, please contact the Lupa mailing list.

Major features

  • separate Lua runtime states through a LuaRuntime class

  • Python coroutine wrapper for Lua coroutines

  • iteration support for Python objects in Lua and Lua objects in Python

  • proper encoding and decoding of strings (configurable per runtime, UTF-8 by default)

  • frees the GIL and supports threading in separate runtimes when calling into Lua

  • tested with Python 3.8 and later

  • ships with Lua 5.1, 5.2, 5.3, 5.4 and 5.5 as well as LuaJIT 2.0 and 2.1 on systems that support it.

  • easy to hack on and extend as it is written in Cython, not C

Why the name?

In Latin, “lupa” is a female wolf, as elegant and wild as it sounds. If you don’t like this kind of straight forward allegory to an endangered species, you may also happily assume it’s just an amalgamation of the phonetic sounds that start the words “Lua” and “Python”, two from each to keep the balance.

Why use it?

It complements Python very well. Lua is a language as dynamic as Python, but LuaJIT compiles it to very fast machine code, sometimes faster than many statically compiled languages for computational code. The language runtime is very small and carefully designed for embedding. The complete binary module of Lupa, including a statically linked LuaJIT2 runtime, only weighs some 800KB on a 64 bit machine. With standard Lua 5.2, it’s less than 600KB.

However, the Lua ecosystem lacks many of the batteries that Python readily includes, either directly in its standard library or as third party packages. This makes real-world Lua applications harder to write than equivalent Python applications. Lua is therefore not commonly used as primary language for large applications, but it makes for a fast, high-level and resource-friendly backup language inside of Python when raw speed is required and the edit-compile-run cycle of binary extension modules is too heavy and too static for agile development or hot-deployment.

Lupa is a very fast and thin wrapper around Lua or LuaJIT. It makes it easy to write dynamic Lua code that accompanies dynamic Python code by switching between the two languages at runtime, based on the tradeoff between simplicity and speed.

Which Lua version?

The binary wheels include different Lua versions as well as LuaJIT, if supported. By default, import lupa uses the latest Lua version, but you can choose a specific one via import:

try:
    import lupa.luajit21 as lupa
except ImportError:
    try:
        import lupa.lua54 as lupa
    except ImportError:
        try:
            import lupa.lua53 as lupa
        except ImportError:
            import lupa

print(f"Using {lupa.LuaRuntime().lua_implementation} (compiled with {lupa.LUA_VERSION})")

Examples

>>> from lupa.lua54 import LuaRuntime
>>> lua = LuaRuntime(unpack_returned_tuples=True)

>>> lua.eval('1+1')
2

>>> lua_func = lua.eval('function(f, n) return f(n) end')

>>> def py_add1(n): return n+1
>>> lua_func(py_add1, 2)
3

>>> lua.eval('python.eval(" 2 ** 2 ")') == 4
True
>>> lua.eval('python.builtins.str(4)') == '4'
True

The function lua_type(obj) can be used to find out the type of a wrapped Lua object in Python code, as provided by Lua’s type() function:

>>> lupa.lua_type(lua_func)
'function'
>>> lupa.lua_type(lua.eval('{}'))
'table'

To help in distinguishing between wrapped Lua objects and normal Python objects, it returns None for the latter:

>>> lupa.lua_type(123) is None
True
>>> lupa.lua_type('abc') is None
True
>>> lupa.lua_type({}) is None
True

Note the flag unpack_returned_tuples=True that is passed to create the Lua runtime. It is new in Lupa 0.21 and changes the behaviour of tuples that get returned by Python functions. With this flag, they explode into separate Lua values:

>>> lua.execute('a,b,c = python.eval("(1,2)")')
>>> g = lua.globals()
>>> g.a
1
>>> g.b
2
>>> g.c is None
True

When set to False, functions that return a tuple pass it through to the Lua code:

>>> non_explode_lua = lupa.LuaRuntime(unpack_returned_tuples=False)
>>> non_explode_lua.execute('a,b,c = python.eval("(1,2)")')
>>> g = non_explode_lua.globals()
>>> g.a
(1, 2)
>>> g.b is None
True
>>> g.c is None
True

Since the default behaviour (to not explode tuples) might change in a later version of Lupa, it is best to always pass this flag explicitly.

Python objects in Lua

Python objects are either converted when passed into Lua (e.g. numbers and strings) or passed as wrapped object references.

>>> wrapped_type = lua.globals().type     # Lua's own type() function
>>> wrapped_type(1) == 'number'
True
>>> wrapped_type('abc') == 'string'
True

Wrapped Lua objects get unwrapped when they are passed back into Lua, and arbitrary Python objects get wrapped in different ways:

>>> wrapped_type(wrapped_type) == 'function'  # unwrapped Lua function
True
>>> wrapped_type(len) == 'userdata'       # wrapped Python function
True
>>> wrapped_type([]) == 'userdata'        # wrapped Python object
True

Lua supports two main protocols on objects: calling and indexing. It does not distinguish between attribute access and item access like Python does, so the Lua operations obj[x] and obj.x both map to indexing. To decide which Python protocol to use for Lua wrapped objects, Lupa employs a simple heuristic.

Pratically all Python objects allow attribute access, so if the object also has a __getitem__ method, it is preferred when turning it into an indexable Lua object. Otherwise, it becomes a simple object that uses attribute access for indexing from inside Lua.

Obviously, this heuristic will fail to provide the required behaviour in many cases, e.g. when attribute access is required to an object that happens to support item access. To be explicit about the protocol that should be used, Lupa provides the helper functions as_attrgetter() and as_itemgetter() that restrict the view on an object to a certain protocol, both from Python and from inside Lua:

>>> lua_func = lua.eval('function(obj) return obj["get"] end')
>>> d = {'get' : 'value'}

>>> value = lua_func(d)
>>> value == d['get'] == 'value'
True

>>> value = lua_func( lupa.as_itemgetter(d) )
>>> value == d['get'] == 'value'
True

>>> dict_get = lua_func( lupa.as_attrgetter(d) )
>>> dict_get == d.get
True
>>> dict_get('get') == d.get('get') == 'value'
True

>>> lua_func = lua.eval(
...     'function(obj) return python.as_attrgetter(obj)["get"] end')
>>> dict_get = lua_func(d)
>>> dict_get('get') == d.get('get') == 'value'
True

Note that unlike Lua function objects, callable Python objects support indexing in Lua:

>>> def py_func(): pass
>>> py_func.ATTR = 2

>>> lua_func = lua.eval('function(obj) return obj.ATTR end')
>>> lua_func(py_func)
2
>>> lua_func = lua.eval(
...     'function(obj) return python.as_attrgetter(obj).ATTR end')
>>> lua_func(py_func)
2
>>> lua_func = lua.eval(
...     'function(obj) return python.as_attrgetter(obj)["ATTR"] end')
>>> lua_func(py_func)
2

Iteration in Lua

Iteration over Python objects from Lua’s for-loop is fully supported. However, Python iterables need to be converted using one of the utility functions which are described here. This is similar to the functions like pairs() in Lua.

To iterate over a plain Python iterable, use the python.iter() function. For example, you can manually copy a Python list into a Lua table like this:

>>> lua_copy = lua.eval('''
...     function(L)
...         local t, i = {}, 1
...         for item in python.iter(L) do
...             t[i] = item
...             i = i + 1
...         end
...         return t
...     end
... ''')

>>> table = lua_copy([1,2,3,4])
>>> len(table)
4
>>> table[1]   # Lua indexing
1

Python’s enumerate() function is also supported, so the above could be simplified to:

>>> lua_copy = lua.eval('''
...     function(L)
...         local t = {}
...         for index, item in python.enumerate(L) do
...             t[ index+1 ] = item
...         end
...         return t
...     end
... ''')

>>> table = lua_copy([1,2,3,4])
>>> len(table)
4
>>> table[1]   # Lua indexing
1

For iterators that return tuples, such as dict.iteritems(), it is convenient to use the special python.iterex() function that automatically explodes the tuple items into separate Lua arguments:

>>> lua_copy = lua.eval('''
...     function(d)
...         local t = {}
...         for key, value in python.iterex(d.items()) do
...             t[key] = value
...         end
...         return t
...     end
... ''')

>>> d = dict(a=1, b=2, c=3)
>>> table = lua_copy( lupa.as_attrgetter(d) )
>>> table['b']
2

Note that accessing the d.items method from Lua requires passing the dict as attrgetter. Otherwise, attribute access in Lua would use the getitem protocol of Python dicts and look up d['items'] instead.

None vs. nil

While None in Python and nil in Lua differ in their semantics, they usually just mean the same thing: no value. Lupa therefore tries to map one directly to the other whenever possible:

>>> lua.eval('nil') is None
True
>>> is_nil = lua.eval('function(x) return x == nil end')
>>> is_nil(None)
True

The only place where this cannot work is during iteration, because Lua considers a nil value the termination marker of iterators. Therefore, Lupa special cases None values here and replaces them by a constant python.none instead of returning nil:

>>> _ = lua.require("table")
>>> func = lua.eval('''
...     function(items)
...         local t = {}
...         for value in python.iter(items) do
...             table.insert(t, value == python.none)
...         end
...         return t
...     end
... ''')

>>> items = [1, None ,2]
>>> list(func(items).values())
[False, True, False]

Lupa avoids this value escaping whenever it’s obviously not necessary. Thus, when unpacking tuples during iteration, only the first value will be subject to python.none replacement, as Lua does not look at the other items for loop termination anymore. And on enumerate() iteration, the first value is known to be always a number and never None, so no replacement is needed.

>>> func = lua.eval('''
...     function(items)
...         for a, b, c, d in python.iterex(items) do
...             return {a == python.none, a == nil,   -->  a == python.none
...                     b == python.none, b == nil,   -->  b == nil
...                     c == python.none, c == nil,   -->  c == nil
...                     d == python.none, d == nil}   -->  d == nil ...
...         end
...     end
... ''')

>>> items = [(None, None, None, None)]
>>> list(func(items).values())
[True, False, False, True, False, True, False, True]

>>> items = [(None, None)]   # note: no values for c/d => nil in Lua
>>> list(func(items).values())
[True, False, False, True, False, True, False, True]

Note that this behaviour changed in Lupa 1.0. Previously, the python.none replacement was done in more places, which made it not always very predictable.

Lua Tables

Lua tables mimic Python’s mapping protocol. For the special case of array tables, Lua automatically inserts integer indices as keys into the table. Therefore, indexing starts from 1 as in Lua instead of 0 as in Python. For the same reason, negative indexing does not work. It is best to think of Lua tables as mappings rather than arrays, even for plain array tables.

>>> table = lua.eval('{10,20,30,40}')
>>> table[1]
10
>>> table[4]
40
>>> list(table)
[1, 2, 3, 4]
>>> dict(table)
{1: 10, 2: 20, 3: 30, 4: 40}
>>> list(table.values())
[10, 20, 30, 40]
>>> len(table)
4

>>> mapping = lua.eval('{ [1] = -1 }')
>>> list(mapping)
[1]

>>> mapping = lua.eval('{ [20] = -20; [3] = -3 }')
>>> mapping[20]
-20
>>> mapping[3]
-3
>>> sorted(mapping.values())
[-20, -3]
>>> sorted(mapping.items())
[(3, -3), (20, -20)]

>>> mapping[-3] = 3     # -3 used as key, not index!
>>> mapping[-3]
3
>>> sorted(mapping)
[-3, 3, 20]
>>> sorted(mapping.items())
[(-3, 3), (3, -3), (20, -20)]

To simplify the table creation from Python, the LuaRuntime comes with a helper method that creates a Lua table from Python arguments:

>>> t = lua.table(10, 20, 30, 40)
>>> lupa.lua_type(t)
'table'
>>> list(t)
[1, 2, 3, 4]
>>> list(t.values())
[10, 20, 30, 40]

>>> t = lua.table(10, 20, 30, 40, a=1, b=2)
>>> t[3]
30
>>> t['b']
2

A second helper method, .table_from(), was added in Lupa 1.1 and accepts any number of mappings and sequences/iterables as arguments. It collects all values and key-value pairs and builds a single Lua table from them. Any keys that appear in multiple mappings get overwritten with their last value (going from left to right).

>>> t = lua.table_from([10, 20, 30], {'a': 11, 'b': 22}, (40, 50), {'b': 42})
>>> t['a']
11
>>> t['b']
42
>>> t[5]
50
>>> sorted(t.values())
[10, 11, 20, 30, 40, 42, 50]

Since Lupa 2.1, passing recursive=True will map data structures recursively to Lua tables.

>>> t = lua.table_from(
...     [
...         # t1:
...         [
...             [10, 20, 30],
...             {'a': 11, 'b': 22}
...         ],
...         # t2:
...         [
...             (40, 50),
...             {'b': 42}
...         ]
...     ],
...     recursive=True
... )
>>> t1, t2 = t.values()
>>> list(t1[1].values())
[10, 20, 30]
>>> t1[2]['a']
11
>>> t1[2]['b']
22
>>> t2[2]['b']
42
>>> list(t1[1].values())
[10, 20, 30]
>>> list(t2[1].values())
[40, 50]

A lookup of non-existing keys or indices returns None (actually nil inside of Lua). A lookup is therefore more similar to the .get() method of Python dicts than to a mapping lookup in Python.

>>> table = lua.table(10, 20, 30, 40)
>>> table[1000000] is None
True
>>> table['no such key'] is None
True

>>> mapping = lua.eval('{ [20] = -20; [3] = -3 }')
>>> mapping['no such key'] is None
True

Note that len() does the right thing for array tables but does not work on mappings:

>>> len(table)
4
>>> len(mapping)
0

This is because len() is based on the # (length) operator in Lua and because of the way Lua defines the length of a table. Remember that unset table indices always return nil, including indices outside of the table size. Thus, Lua basically looks for an index that returns nil and returns the index before that. This works well for array tables that do not contain nil values, gives barely predictable results for tables with ‘holes’ and does not work at all for mapping tables. For tables with both sequential and mapping content, this ignores the mapping part completely.

Note that it is best not to rely on the behaviour of len() for mappings. It might change in a later version of Lupa.

Similar to the table interface provided by Lua, Lupa also supports attribute access to table members:

>>> table = lua.eval('{ a=1, b=2 }')
>>> table.a, table.b
(1, 2)
>>> table.a == table['a']
True

This enables access to Lua ‘methods’ that are associated with a table, as used by the standard library modules:

>>> string = lua.eval('string')    # get the 'string' library table
>>> print( string.lower('A') )
a

Python Callables

As discussed earlier, Lupa allows Lua scripts to call Python functions and methods:

>>> def add_one(num):
...     return num + 1
>>> lua_func = lua.eval('function(num, py_func) return py_func(num) end')
>>> lua_func(48, add_one)
49

>>> class MyClass():
...     def my_method(self):
...         return 345
>>> obj = MyClass()
>>> lua_func = lua.eval('function(py_obj) return py_obj:my_method() end')
>>> lua_func(obj)
345

Lua doesn’t have a dedicated syntax for named arguments, so by default Python callables can only be called using positional arguments.

A common pattern for implementing named arguments in Lua is passing them in a table as the first and only function argument. See http://lua-users.org/wiki/NamedParameters for more details. Lupa supports this pattern by providing two decorators: lupa.unpacks_lua_table for Python functions and lupa.unpacks_lua_table_method for methods of Python objects.

Python functions/methods wrapped in these decorators can be called from Lua code as func(foo, bar), func{foo=foo, bar=bar} or func{foo, bar=bar}. Example:

>>> @lupa.unpacks_lua_table
... def add(a, b):
...     return a + b
>>> lua_func = lua.eval('function(a, b, py_func) return py_func{a=a, b=b} end')
>>> lua_func(5, 6, add)
11
>>> lua_func = lua.eval('function(a, b, py_func) return py_func{a, b=b} end')
>>> lua_func(5, 6, add)
11

If you do not control the function implementation, you can also just manually wrap a callable object when passing it into Lupa:

>>> import operator
>>> wrapped_py_add = lupa.unpacks_lua_table(operator.add)

>>> lua_func = lua.eval('function(a, b, py_func) return py_func{a, b} end')
>>> lua_func(5, 6, wrapped_py_add)
11

There are some limitations:

  1. Avoid using lupa.unpacks_lua_table and lupa.unpacks_lua_table_method for functions where the first argument can be a Lua table. In this case py_func{foo=bar} (which is the same as py_func({foo=bar}) in Lua) becomes ambiguous: it could mean either “call py_func with a named foo argument” or “call py_func with a positional {foo=bar} argument”.

  2. One should be careful with passing nil values to callables wrapped in lupa.unpacks_lua_table or lupa.unpacks_lua_table_method decorators. Depending on the context, passing nil as a parameter can mean either “omit a parameter” or “pass None”. This even depends on the Lua version.

    It is possible to use python.none instead of nil to pass None values robustly. Arguments with nil values are also fine when standard braces func(a, b, c) syntax is used.

Because of these limitations lupa doesn’t enable named arguments for all Python callables automatically. Decorators allow to enable named arguments on a per-callable basis.

Lua Coroutines

The next is an example of Lua coroutines. A wrapped Lua coroutine behaves exactly like a Python coroutine. It needs to get created at the beginning, either by using the .coroutine() method of a function or by creating it in Lua code. Then, values can be sent into it using the .send() method or it can be iterated over. Note that the .throw() method is not supported, though.

>>> lua_code = '''\
...     function(N)
...         for i=0,N do
...             coroutine.yield( i%2 )
...         end
...     end
... '''
>>> lua = LuaRuntime()
>>> f = lua.eval(lua_code)

>>> gen = f.coroutine(4)
>>> list(enumerate(gen))
[(0, 0), (1, 1), (2, 0), (3, 1), (4, 0)]

An example where values are passed into the coroutine using its .send() method:

>>> lua_code = '''\
...     function()
...         local t,i = {},0
...         local value = coroutine.yield()
...         while value do
...             t[i] = value
...             i = i + 1
...             value = coroutine.yield()
...         end
...         return t
...     end
... '''
>>> f = lua.eval(lua_code)

>>> co = f.coroutine()   # create coroutine
>>> co.send(None)        # start coroutine (stops at first yield)

>>> for i in range(3):
...     co.send(i*2)

>>> mapping = co.send(None)   # loop termination signal
>>> sorted(mapping.items())
[(0, 0), (1, 2), (2, 4)]

It also works to create coroutines in Lua and to pass them back into Python space:

>>> lua_code = '''\
...   function f(N)
...         for i=0,N do
...             coroutine.yield( i%2 )
...         end
...   end ;
...   co1 = coroutine.create(f) ;
...   co2 = coroutine.create(f) ;
...
...   status, first_result = coroutine.resume(co2, 2) ;   -- starting!
...
...   return f, co1, co2, status, first_result
... '''

>>> lua = LuaRuntime()
>>> f, co, lua_gen, status, first_result = lua.execute(lua_code)

>>> # a running coroutine:

>>> status
True
>>> first_result
0
>>> list(lua_gen)
[1, 0]
>>> list(lua_gen)
[]

>>> # an uninitialised coroutine:

>>> gen = co(4)
>>> list(enumerate(gen))
[(0, 0), (1, 1), (2, 0), (3, 1), (4, 0)]

>>> gen = co(2)
>>> list(enumerate(gen))
[(0, 0), (1, 1), (2, 0)]

>>> # a plain function:

>>> gen = f.coroutine(4)
>>> list(enumerate(gen))
[(0, 0), (1, 1), (2, 0), (3, 1), (4, 0)]

Threading

The following example calculates a mandelbrot image in parallel threads and displays the result in PIL. It is based on a benchmark implementation for the Computer Language Benchmarks Game.

lua_code = '''\
    function(N, i, total)
        local char, unpack = string.char, table.unpack
        local result = ""
        local M, ba, bb, buf = 2/N, 2^(N%8+1)-1, 2^(8-N%8), {}
        local start_line, end_line = N/total * (i-1), N/total * i - 1
        for y=start_line,end_line do
            local Ci, b, p = y*M-1, 1, 0
            for x=0,N-1 do
                local Cr = x*M-1.5
                local Zr, Zi, Zrq, Ziq = Cr, Ci, Cr*Cr, Ci*Ci
                b = b + b
                for i=1,49 do
                    Zi = Zr*Zi*2 + Ci
                    Zr = Zrq-Ziq + Cr
                    Ziq = Zi*Zi
                    Zrq = Zr*Zr
                    if Zrq+Ziq > 4.0 then b = b + 1; break; end
                end
                if b >= 256 then p = p + 1; buf[p] = 511 - b; b = 1; end
            end
            if b ~= 1 then p = p + 1; buf[p] = (ba-b)*bb; end
            result = result .. char(unpack(buf, 1, p))
        end
        return result
    end
'''

image_size = 1280   # == 1280 x 1280
thread_count = 8

from lupa import LuaRuntime
lua_funcs = [ LuaRuntime(encoding=None).eval(lua_code)
              for _ in range(thread_count) ]

results = [None] * thread_count
def mandelbrot(i, lua_func):
    results[i] = lua_func(image_size, i+1, thread_count)

import threading
threads = [ threading.Thread(target=mandelbrot, args=(i,lua_func))
            for i, lua_func in enumerate(lua_funcs) ]
for thread in threads:
    thread.start()
for thread in threads:
    thread.join()

result_buffer = b''.join(results)

# use Pillow to display the image
from PIL import Image
image = Image.frombytes('1', (image_size, image_size), result_buffer)
image.show()

Note how the example creates a separate LuaRuntime for each thread to enable parallel execution. Each LuaRuntime is protected by a global lock that prevents concurrent access to it. The low memory footprint of Lua makes it reasonable to use multiple runtimes, but this setup also means that values cannot easily be exchanged between threads inside of Lua. They must either get copied through Python space (passing table references will not work, either) or use some Lua mechanism for explicit communication, such as a pipe or some kind of shared memory setup.

Restricting Lua access to Python objects

Lupa provides a simple mechanism to control access to Python objects. Each attribute access can be passed through a filter function as follows:

>>> def filter_attribute_access(obj, attr_name, is_setting):
...     if isinstance(attr_name, unicode):
...         if not attr_name.startswith('_'):
...             return attr_name
...     raise AttributeError('access denied')

>>> lua = lupa.LuaRuntime(
...     register_eval=False,      # disallow python.eval('...')
...     register_builtins=False,  # disallow python.builtins.*
...     attribute_filter=filter_attribute_access)
>>> func = lua.eval('function(x) return x.__class__ end')
>>> func(lua)
Traceback (most recent call last):
 ...
AttributeError: access denied

The is_setting flag indicates whether the attribute is being read or set.

Note that the attributes of Python functions provide access to the current globals() and therefore to the builtins etc. If you want to safely restrict access to a known set of Python objects, it is best to work with a whitelist of safe attribute names. One way to do that could be to use a well selected list of dedicated API objects that you provide to Lua code, and to only allow Python attribute access to the set of public attribute/method names of these objects.

Since Lupa 1.0, you can alternatively provide dedicated getter and setter function implementations for a LuaRuntime:

>>> def getter(obj, attr_name):
...     if attr_name == 'yes':
...         return getattr(obj, attr_name)
...     raise AttributeError(
...         'not allowed to read attribute "%s"' % attr_name)

>>> def setter(obj, attr_name, value):
...     if attr_name == 'put':
...         setattr(obj, attr_name, value)
...         return
...     raise AttributeError(
...         'not allowed to write attribute "%s"' % attr_name)

>>> class X:
...     yes = 123
...     put = 'abc'
...     noway = 2.1

>>> x = X()

>>> lua = lupa.LuaRuntime(
...     register_eval=False,      # disallow python.eval('...')
...     register_builtins=False,  # disallow python.builtins.*
...     attribute_handlers=(getter, setter))
>>> func = lua.eval('function(x) return x.yes end')
>>> func(x)  # getting 'yes'
123
>>> func = lua.eval('function(x) x.put = "ABC"; end')
>>> func(x)  # setting 'put'
>>> print(x.put)
ABC
>>> func = lua.eval('function(x) x.noway = 42; end')
>>> func(x)  # setting 'noway'
Traceback (most recent call last):
 ...
AttributeError: not allowed to write attribute "noway"

Restricting Lua Memory Usage

Lupa provides a simple mechanism to control the maximum memory usage of the Lua Runtime since version 2.0. By default Lupa does not interfere with Lua’s memory allocation, to opt-in you must set the max_memory when creating the LuaRuntime.

The LuaRuntime provides three methods for controlling and reading the memory usage:

  1. get_memory_used(total=False) to get the current memory usage of the LuaRuntime.

  2. get_max_memory(total=False) to get the current memory limit. 0 means there is no memory limitation.

  3. set_max_memory(max_memory, total=False) to change the memory limit. Values below or equal to 0 mean no limit.

There is always some memory used by the LuaRuntime itself (around ~20KiB, depending on your lua version and other factors) which is excluded from all calculations unless you specify total=True.

>>> from lupa import lua52
>>> lua = lua52.LuaRuntime(max_memory=0)  # 0 for unlimited, default is None
>>> lua.get_memory_used()  # memory used by your code
0
>>> total_lua_memory = lua.get_memory_used(total=True)  # includes memory used by the runtime itself
>>> assert total_lua_memory > 0  # exact amount depends on your lua version and other factors

Lua code hitting the memory limit will receive memory errors:

>>> lua.set_max_memory(100)
>>> lua.eval("string.rep('a', 1000)")   # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
 ...
lupa.LuaMemoryError: not enough memory

LuaMemoryError inherits from LuaError and MemoryError.

Importing Lua binary modules

This will usually work as is, but here are the details, in case anything goes wrong for you.

To use binary modules in Lua, you need to compile them against the header files of the LuaJIT sources that you used to build Lupa, but do not link them against the LuaJIT library.

Furthermore, CPython needs to enable global symbol visibility for shared libraries before loading the Lupa module. This can be done by calling sys.setdlopenflags(flag_values). Importing the lupa module will automatically try to set up the correct dlopen flags if it can find the platform specific DLFCN Python module that defines the necessary flag constants. In that case, using binary modules in Lua should work out of the box.

If this setup fails, however, you have to set the flags manually. When using the above configuration call, the argument flag_values must represent the sum of your system’s values for RTLD_NEW and RTLD_GLOBAL. If RTLD_NEW is 2 and RTLD_GLOBAL is 256, you need to call sys.setdlopenflags(258).

Assuming that the Lua luaposix (posix) module is available, the following should work on a Linux system:

>>> import sys
>>> orig_dlflags = sys.getdlopenflags()
>>> sys.setdlopenflags(258)
>>> import lupa
>>> sys.setdlopenflags(orig_dlflags)

>>> lua = lupa.LuaRuntime()
>>> posix_module = lua.require('posix')     # doctest: +SKIP

Building with different Lua versions

The build is configured to automatically search for an installed version of first LuaJIT and then Lua, and failing to find either, to use the bundled LuaJIT or Lua version.

If you wish to build Lupa with a specific version of Lua, you can configure the following options on setup:

Option

Description

--lua-lib <libfile>

Lua library file path, e.g. --lua-lib /usr/local/lib/lualib.a

--lua-includes <incdir>

Lua include directory, e.g. --lua-includes /usr/local/include

--use-bundle

Use bundled LuaJIT or Lua instead of searching for an installed version.

--no-bundle

Don’t use the bundled LuaJIT/Lua, search for an installed version of LuaJIT or Lua, e.g. using pkg-config.

--no-lua-jit

Don’t use or search for LuaJIT, only use or search Lua instead.

Installing lupa

Building with LuaJIT2

  1. Download and unpack lupa

    http://pypi.python.org/pypi/lupa

  2. Download LuaJIT2

    http://luajit.org/download.html

  3. Unpack the archive into the lupa base directory, e.g.:

    .../lupa-0.1/LuaJIT-2.0.2
  4. Build LuaJIT:

    cd LuaJIT-2.0.2
    make
    cd ..

    If you need specific C compiler flags, pass them to make as follows:

    make CFLAGS="..."

    For trickier target platforms like Windows and MacOS-X, please see the official installation instructions for LuaJIT.

    NOTE: When building on Windows, make sure that lua51.lib is made in addition to lua51.dll. The MSVC build produces this file, MinGW does NOT.

  5. Build lupa:

    python setup.py build_ext -i

    Or any other distutils target of your choice, such as build or one of the bdist targets. See the distutils documentation for help, also the hints on building extension modules.

    Note that on 64bit MacOS-X installations, the following additional compiler flags are reportedly required due to the embedded LuaJIT:

    -pagezero_size 10000 -image_base 100000000

    You can find additional installation hints for MacOS-X in this somewhat unclear blog post, which may or may not tell you at which point in the installation process to provide these flags.

    Also, on 64bit MacOS-X, you will typically have to set the environment variable ARCHFLAGS to make sure it only builds for your system instead of trying to generate a fat binary with both 32bit and 64bit support:

    export ARCHFLAGS="-arch x86_64"

    Note that this applies to both LuaJIT and Lupa, so make sure you try a clean build of everything if you forgot to set it initially.

Starting with Lupa 2.7, abi3 wheels can be built by passing the setup.py option --limited-api or by setting the environment variable LUPA_LIMITED_API.

Examples are:

# build for the ABI version of the currently running Python
python3.11 setup.py build_wheel --limited-api=true

# build for a specific Python ABI version, e.g. Python 3.9
python3 setup.py build_wheel --limited-api=3.9

Building with Lua 5.x

It also works to use Lupa with the standard (non-JIT) Lua runtime. The easiest way is to use the bundled lua submodule:

  1. Clone the respective submodule, e.g. Lua 5.4:

    $ git submodule update --init third-party/lua54
  2. Build Lupa:

    $ python3 setup.py bdist_wheel --use-bundle --with-cython

You can also build it by installing a Lua 5.x package, including any development packages (header files etc.). On systems that use the “pkg-config” configuration mechanism, Lupa’s setup.py will pick up either LuaJIT2 or Lua automatically, with a preference for LuaJIT2 if it is found. Pass the --no-luajit option to the setup.py script if you have both installed but do not want to use LuaJIT2.

On other systems, you may have to supply the build parameters externally, e.g. using environment variables or by changing the setup.py script manually. Pass the --no-luajit option to the setup.py script in order to ignore the failure you get when neither LuaJIT2 nor Lua are found automatically.

For further information, read this mailing list post:

https://www.freelists.org/post/lupa-dev/Lupa-with-normal-Lua-interpreter-Lua-51,2

Installing lupa from packages

Debian/Ubuntu + Lua 5.2

  1. Install Lua 5.2 development package:

    $ apt-get install liblua5.2-dev
  2. Install lupa:

    $ pip install lupa

Debian/Ubuntu + LuaJIT2

  1. Install LuaJIT2 development package:

    $ apt-get install libluajit-5.1-dev
  2. Install lupa:

    $ pip install lupa

Depending on OS version, you might get an older LuaJIT2 version.

OS X + Lua 5.2 + Homebrew

  1. Install Lua:

    $ brew install lua
  2. Install pkg-config:

    $ brew install pkg-config
  3. Install lupa:

    $ pip install lupa

Lupa change log

2.7 (2026-04-07)

  • In Lua 5.5, the string hash seed can be configured for each LuaRuntime.

  • The bundled LuaJIT versions were updated to the latest git branches.

  • Lua 5.5 is included in the binary wheels.

  • Lupa can be built as abi3 wheel.

  • Some lesser used platforms are served with abi3 wheels.

  • Built with Cython 3.2.4.

2.6 (2025-10-24)

  • The bundled LuaJIT versions were updated to the latest git branches.

  • Built with Cython 3.1.6.

2.5 (2025-06-15)

  • GH#284: Lua uses dlopen() again, which was lost in Lupa 2.3. Patch by Philipp Krones.

  • The bundled Lua 5.4 was updated to 5.4.8.

  • The bundled LuaJIT versions were updated to the latest git branches.

  • Built with Cython 3.1.2.

2.4 (2025-01-10)

  • The windows wheels now bundle LuaJIT 2.0 and 2.1. (patch by Michal Plichta)

  • Failures in the test suite didn’t set a non-zero process exit value.

2.3 (2025-01-09)

  • The bundled LuaJIT versions were updated to the latest git branches.

  • The bundled Lua 5.4 was updated to 5.4.7.

  • Removed support for Python 2.x.

  • Built with Cython 3.0.11.

2.2 (2024-06-02)

  • A new method LuaRuntime.gccollect() was added to trigger the Lua garbage collector.

  • A new context manager LuaRuntime.nogc() was added to temporarily disable the Lua garbage collector.

  • Freeing Python objects from a thread while running Lua code could run into a deadlock.

  • The bundled LuaJIT versions were updated to the latest git branches.

  • Built with Cython 3.0.10.

2.1 (2024-03-24)

  • GH#199: The table_from() method gained a new keyword argument recursive=False. If true, Python data structures will be recursively mapped to Lua tables, taking care of loops and duplicates via identity de-duplication.

  • GH#248: The LuaRuntime methods “eval”, “execute” and “compile” gained new keyword options mode and name that allow constraining the input type and modifying the (chunk) name shown in error messages, following similar arguments in the Lua load() function. See https://www.lua.org/manual/5.4/manual.html#pdf-load

  • GH#246: Loading Lua modules did not work for the version specific Lua modules introduced in Lupa 2.0. It turned out that it can only be enabled for one of them in a given Python run, so it is now left to users to enable it explicitly at need. (original patch by Richard Connon)

  • GH#234: The bundled Lua 5.1 was updated to 5.1.5 and Lua 5.2 to 5.2.4. (patch by xxyzz)

  • The bundled Lua 5.4 was updated to 5.4.6.

  • The bundled LuaJIT versions were updated to the latest git branches.

  • Built with Cython 3.0.9 for improved support of Python 3.12/13.

2.0 (2023-04-03)

  • GH#217: Lua stack traces in Python exception messages are now reversed to match the order of Python stack traces.

  • GH#196: Lupa now ships separate extension modules built with Lua 5.3, Lua 5.4, LuaJIT 2.0 and LuaJIT 2.1 beta. Note that this is build specific and may depend on the platform. A normal Python import cascade can be used.

  • GH#211: A new option max_memory allows to limit the memory usage of Lua code. (patch by Leo Developer)

  • GH#171: Python references in Lua are now more safely reference counted to prevent garbage collection glitches. (patch by Guilherme Dantas)

  • GH#146: Lua integers in Lua 5.3+ are converted from and to Python integers. (patch by Guilherme Dantas)

  • GH#180: The python.enumerate() function now returns indices as integers if supported by Lua. (patch by Guilherme Dantas)

  • GH#178: The Lua integer limits can be read from the module as LUA_MAXINTEGER and LUA_MININTEGER. (patch by Guilherme Dantas)

  • GH#174: Failures while calling the __index method in Lua during a table index lookup from Python could crash Python. (patch by Guilherme Dantas)

  • GH#137: Passing None as a dict key into table_from() crashed. (patch by Leo Developer)

  • GH#176: A new function python.args(*args, **kwargs) was added to help with building Python argument tuples and keyword argument dicts for Python function calls from Lua code.

  • GH#177: Tables that are not sequences raise IndexError when unpacking them. Previously, non-sequential items were simply ignored.

  • GH#179: Resolve some C compiler warnings about signed/unsigned comparisons. (patch by Guilherme Dantas)

  • Built with Cython 0.29.34.

1.14.1 (2022-11-16)

  • Rebuild with Cython 0.29.32 to support Python 3.11.

1.13 (2022-03-01)

  • Bundled Lua source files were missing in the source distribution.

1.12 (2022-02-24)

  • GH#197: Some binary wheels in the last releases were not correctly linked with Lua.

  • GH#194: An absolute file path appeared in the SOURCES.txt metadata of the source distribution.

1.11 (2022-02-23)

  • Use Lua 5.4.4 in binary wheels and as bundled Lua.

  • Built with Cython 0.29.28 to support Python 3.10/11.

1.10 (2021-09-02)

  • GH#147: Lua 5.4 is supported. (patch by Russel Davis)

  • The runtime version of the Lua library as a tuple (e.g. (5,3)) is provided via lupa.LUA_VERSION and LuaRuntime.lua_version.

  • The Lua implementation name and version string is provided as LuaRuntime.lua_implementation.

  • setup.py accepts new command line arguments --lua-lib and --lua-includes to specify the

  • Use Lua 5.4.3 in binary wheels and as bundled Lua.

  • Built with Cython 0.29.24 to support Python 3.9.

1.9 (2019-12-21)

  • Build against Lua 5.3 if available.

  • Use Lua 5.3.5 in binary wheels and as bundled Lua.

  • GH#129: Fix Lua module loading in Python 3.x.

  • GH#126: Fix build on Linux systems that install Lua as “lua52” package.

  • Built with Cython 0.29.14 for better Py3.8 compatibility.

1.8 (2019-02-01)

  • GH#107: Fix a deprecated import in Py3.

  • Built with Cython 0.29.3 for better Py3.7 compatibility.

1.7 (2018-08-06)

  • GH#103: Provide wheels for MS Windows and fix MSVC build on Py2.7.

1.6 (2017-12-15)

  • GH#95: Improved compatibility with Lua 5.3. (patch by TitanSnow)

1.5 (2017-09-16)

  • GH#93: New method LuaRuntime.compile() to compile Lua code without executing it. (patch by TitanSnow)

  • GH#91: Lua 5.3 is bundled in the source distribution to simplify one-shot installs. (patch by TitanSnow)

  • GH#87: Lua stack trace is included in output in debug mode. (patch by aaiyer)

  • GH#78: Allow Lua code to intercept Python exceptions. (patch by Sergey Dobrov)

  • Built with Cython 0.26.1.

1.4 (2016-12-10)

  • GH#82: Lua coroutines were using the wrong runtime state (patch by Sergey Dobrov)

  • GH#81: copy locally provided Lua DLL into installed package on Windows (patch by Gareth Coles)

  • built with Cython 0.25.2

1.3 (2016-04-12)

  • GH#70: eval() and execute() accept optional positional arguments (patch by John Vandenberg)

  • GH#65: calling str() on a Python object from Lua could fail if the LuaRuntime is set up without auto-encoding (patch by Mikhail Korobov)

  • GH#63: attribute/keyword names were not properly encoded if the LuaRuntime is set up without auto-encoding (patch by Mikhail Korobov)

  • built with Cython 0.24

1.2 (2015-10-10)

  • callbacks returned from Lua coroutines were incorrectly mixing coroutine state with global Lua state (patch by Mikhail Korobov)

  • availability of python.builtins in Lua can be disabled via LuaRuntime option.

  • built with Cython 0.23.4

1.1 (2014-11-21)

  • new module function lupa.lua_type() that returns the Lua type of a wrapped object as string, or None for normal Python objects

  • new helper method LuaRuntime.table_from(...) that creates a Lua table from one or more Python mappings and/or sequences

  • new lupa.unpacks_lua_table and lupa.unpacks_lua_table_method decorators to allow calling Python functions from Lua using named arguments

  • fix a hang on shutdown where the LuaRuntime failed to deallocate due to reference cycles

  • Lupa now plays more nicely with other Lua extensions that create userdata objects

1.0.1 (2014-10-11)

  • fix a crash when requesting attributes of wrapped Lua coroutine objects

  • looking up attributes on Lua objects that do not support it now always raises an AttributeError instead of sometimes raising a TypeError depending on the attribute name

1.0 (2014-09-28)

  • NOTE: this release includes the major backwards incompatible changes listed below. It is believed that they simplify the interaction between Python code and Lua code by more strongly following idiomatic Lua on the Lua side.

    • Instead of passing a wrapped python.none object into Lua, None return values are now mapped to nil, making them more straight forward to handle in Lua code. This makes the behaviour more consistent, as it was previously somewhat arbitrary where none could appear and where a nil value was used. The only remaining exception is during iteration, where the first returned value must not be nil in Lua, or otherwise the loop terminates prematurely. To prevent this, any None value that the iterator returns, or any first item in exploded tuples that is None, is still mapped to python.none. Any further values returned in the same iteration will be mapped to nil if they are None, not to none. This means that only the first argument needs to be manually checked for this special case. For the enumerate() iterator, the counter is never None and thus the following unpacked items will never be mapped to python.none.

    • When unpack_returned_tuples=True, iteration now also unpacks tuple values, including enumerate() iteration, which yields a flat sequence of counter and unpacked values.

    • When calling bound Python methods from Lua as “obj:meth()”, Lupa now prevents Python from prepending the self argument a second time, so that the Python method is now called as “obj.meth()”. Previously, it was called as “obj.meth(obj)”. Note that this can be undesired when the object itself is explicitly passed as first argument from Lua, e.g. when calling “func(obj)” where “func” is “obj.meth”, but these constellations should be rare. As a work-around for this case, user code can wrap the bound method in another function so that the final call comes from Python.

  • garbage collection works for reference cycles that span both runtimes, Python and Lua

  • calling from Python into Lua and back into Python did not clean up the Lua call arguments before the innermost call, so that they could leak into the nested Python call or its return arguments

  • support for Lua 5.2 (in addition to Lua 5.1 and LuaJIT 2.0)

  • Lua tables support Python’s “del” statement for item deletion (patch by Jason Fried)

  • Attribute lookup can use a more fine-grained control mechanism by implementing explicit getter and setter functions for a LuaRuntime (attribute_handlers argument). Patch by Brian Moe.

  • item assignments/lookups on Lua objects from Python no longer special case double underscore names (as opposed to attribute lookups)

0.21 (2014-02-12)

  • some garbage collection issues were cleaned up using new Cython features

  • new LuaRuntime option unpack_returned_tuples which automatically unpacks tuples returned from Python functions into separate Lua objects (instead of returning a single Python tuple object)

  • some internal wrapper classes were removed from the module API

  • Windows build fixes

  • Py3.x build fixes

  • support for building with Lua 5.1 instead of LuaJIT (setup.py –no-luajit)

  • no longer uses Cython by default when building from released sources (pass --with-cython to explicitly request a rebuild)

  • requires Cython 0.20+ when building from unreleased sources

  • built with Cython 0.20.1

0.20 (2011-05-22)

  • fix “deallocating None” crash while iterating over Lua tables in Python code

  • support for filtering attribute access to Python objects for Lua code

  • fix: setting source encoding for Lua code was broken

0.19 (2011-03-06)

  • fix serious resource leak when creating multiple LuaRuntime instances

  • portability fix for binary module importing

0.18 (2010-11-06)

  • fix iteration by returning Py_None object for None instead of nil, which would terminate the iteration

  • when converting Python values to Lua, represent None as a Py_None object in places where nil has a special meaning, but leave it as nil where it doesn’t hurt

  • support for counter start value in python.enumerate()

  • native implementation for python.enumerate() that is several times faster

  • much faster Lua iteration over Python objects

0.17 (2010-11-05)

  • new helper function python.enumerate() in Lua that returns a Lua iterator for a Python object and adds the 0-based index to each item.

  • new helper function python.iterex() in Lua that returns a Lua iterator for a Python object and unpacks any tuples that the iterator yields.

  • new helper function python.iter() in Lua that returns a Lua iterator for a Python object.

  • reestablished the python.as_function() helper function for Lua code as it can be needed in cases where Lua cannot determine how to run a Python function.

0.16 (2010-09-03)

  • dropped python.as_function() helper function for Lua as all Python objects are callable from Lua now (potentially raising a TypeError at call time if they are not callable)

  • fix regression in 0.13 and later where ordinary Lua functions failed to print due to an accidentally used meta table

  • fix crash when calling str() on wrapped Lua objects without metatable

0.15 (2010-09-02)

  • support for loading binary Lua modules on systems that support it

0.14 (2010-08-31)

  • relicensed to the MIT license used by LuaJIT2 to simplify licensing considerations

0.13.1 (2010-08-30)

  • fix Cython generated C file using Cython 0.13

0.13 (2010-08-29)

  • fixed undefined behaviour on str(lua_object) when the object’s __tostring() meta method fails

  • removed redundant “error:” prefix from LuaError messages

  • access to Python’s python.builtins from Lua code

  • more generic wrapping rules for Python objects based on supported protocols (callable, getitem, getattr)

  • new helper functions as_attrgetter() and as_itemgetter() to specify the Python object protocol used by Lua indexing when wrapping Python objects in Python code

  • new helper functions python.as_attrgetter(), python.as_itemgetter() and python.as_function() to specify the Python object protocol used by Lua indexing of Python objects in Lua code

  • item and attribute access for Python objects from Lua code

0.12 (2010-08-16)

  • fix Lua stack leak during table iteration

  • fix lost Lua object reference after iteration

0.11 (2010-08-07)

  • error reporting on Lua syntax errors failed to clean up the stack so that errors could leak into the next Lua run

  • Lua error messages were not properly decoded

0.10 (2010-07-27)

0.9 (2010-07-23)

  • fixed Python special double-underscore method access on LuaObject instances

  • Lua coroutine support through dedicated wrapper classes, including Python iteration support. In Python space, Lua coroutines behave exactly like Python generators.

0.8 (2010-07-21)

  • support for returning multiple values from Lua evaluation

  • repr() support for Lua objects

  • LuaRuntime.table() method for creating Lua tables from Python space

  • encoding fix for str(LuaObject)

0.7 (2010-07-18)

  • LuaRuntime.require() and LuaRuntime.globals() methods

  • renamed LuaRuntime.run() to LuaRuntime.execute()

  • support for len(), setattr() and subscripting of Lua objects

  • provide all built-in Lua libraries in LuaRuntime, including support for library loading

  • fixed a thread locking issue

  • fix passing Lua objects back into the runtime from Python space

0.6 (2010-07-18)

  • Python iteration support for Lua objects (e.g. tables)

  • threading fixes

  • fix compile warnings

0.5 (2010-07-14)

  • explicit encoding options per LuaRuntime instance to decode/encode strings and Lua code

0.4 (2010-07-14)

  • attribute read access on Lua objects, e.g. to read Lua table values from Python

  • str() on Lua objects

  • include .hg repository in source downloads

  • added missing files to source distribution

0.3 (2010-07-13)

  • fix several threading issues

  • safely free the GIL when calling into Lua

0.2 (2010-07-13)

  • propagate Python exceptions through Lua calls

0.1 (2010-07-12)

  • first public release

License

Lupa

Copyright (c) 2010-2017 Stefan Behnel. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Lua

(See https://www.lua.org/license.html)

Copyright © 1994–2017 Lua.org, PUC-Rio.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lupa-2.7.tar.gz (8.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

lupa-2.7-pp311-pypy311_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

lupa-2.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

lupa-2.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp314-cp314t-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

lupa-2.7-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

lupa-2.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lupa-2.7-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

lupa-2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lupa-2.7-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

lupa-2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lupa-2.7-cp312-abi3-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12+Windows ARM64

lupa-2.7-cp312-abi3-win32.whl (1.6 MB view details)

Uploaded CPython 3.12+Windows x86

lupa-2.7-cp312-abi3-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ x86-64

lupa-2.7-cp312-abi3-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ riscv64

lupa-2.7-cp312-abi3-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ppc64le

lupa-2.7-cp312-abi3-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ i686

lupa-2.7-cp312-abi3-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARMv7l

lupa-2.7-cp312-abi3-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12+musllinux: musl 1.2+ ARM64

lupa-2.7-cp312-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (1.2 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

lupa-2.7-cp312-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

lupa-2.7-cp312-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

lupa-2.7-cp312-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (1.4 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

lupa-2.7-cp312-abi3-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12+macOS 10.13+ x86-64

lupa-2.7-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

lupa-2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lupa-2.7-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

lupa-2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lupa-2.7-cp310-abi3-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10+Windows ARM64

lupa-2.7-cp310-abi3-win32.whl (1.6 MB view details)

Uploaded CPython 3.10+Windows x86

lupa-2.7-cp39-cp39-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows ARM64

lupa-2.7-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

lupa-2.7-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

lupa-2.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lupa-2.7-cp39-abi3-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

lupa-2.7-cp39-abi3-musllinux_1_2_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ riscv64

lupa-2.7-cp39-abi3-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ppc64le

lupa-2.7-cp39-abi3-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ i686

lupa-2.7-cp39-abi3-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARMv7l

lupa-2.7-cp39-abi3-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

lupa-2.7-cp39-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (1.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

lupa-2.7-cp39-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

lupa-2.7-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

lupa-2.7-cp39-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (1.5 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

lupa-2.7-cp39-abi3-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9+macOS 10.9+ x86-64

lupa-2.7-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

lupa-2.7-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

lupa-2.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

lupa-2.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

lupa-2.7-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file lupa-2.7.tar.gz.

File metadata

  • Download URL: lupa-2.7.tar.gz
  • Upload date:
  • Size: 8.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7.tar.gz
Algorithm Hash digest
SHA256 73a64ce5dc8cd95b75a330c1513e46e098d40fceed3fea516c09f6595eade889
MD5 796d5a580ed6591508af879ae0ce084a
BLAKE2b-256 c4a0327c40cdd59f0ce9dc6faaf73bf6e52b0b22188f1ee2366ef36d0e5c1b85

See more details on using hashes here.

File details

Details for the file lupa-2.7-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lupa-2.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d794357fba342f3e2fb9145d0a21677a55f0d8dc285f629752942bd437d9f3ab
MD5 37c9818a77a712870ce3854272a4e8b4
BLAKE2b-256 b07b9c5e08bc09a10102f12d032e4c8f1d9bbb9c07a442866ed5ea0915ad4f96

See more details on using hashes here.

File details

Details for the file lupa-2.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00bfc3d78479d2ee16babba46c9566fbd942203fe7212538cf4412fd6c857cf7
MD5 176b6b72fc80ac2027732ba117847b68
BLAKE2b-256 a17dfdb7d7c4e68e50f48031bbcd7b81114f62d7781c5fce7854f637142bb9b7

See more details on using hashes here.

File details

Details for the file lupa-2.7-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5e441dc3b09875d38a75cd9a98a6da5378a6fe6307a58b2307c1de33d481b5f
MD5 8149d0926daaaa0d9ed49259cf41cae9
BLAKE2b-256 6f25d579f7a7c72c771845c886600915e96be31c7ce676258d2555fa46bfb372

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8e01cefd60857ab39a9fd648c594d9a77872f768d9411e3ba0d84373dafae8fc
MD5 7d2a381bafb4d55f7581b2105dadf6ef
BLAKE2b-256 41b22a18c34abf3e63daa539c29dcbf595de4c1fa482aa632b0045555df333c1

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dc4956154e0fb556f1b4d37f97ee83f8ab4288151172ebb869209fb1732070e
MD5 7aa84d87b886574cb882167674688661
BLAKE2b-256 bf5d6c31a442643ad5b3fb0fd74236fc4bdf835162e22686213ead92600c560e

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4abb197d3adb7607651df03853c0f7656d23a8f6d91f43b72d8d7a1032c6e82
MD5 608f7fd2009da9b98c569185a6b4c5ba
BLAKE2b-256 aae53b9aea6bad4141c9379f0612c94e7c465204d64738eca25fb03c688fab35

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e0fd2c9895e8a456f583ac05b210b406924cf25921a675c42b00806cb14a8f4
MD5 a954f225ea746a320d213efb8bd46e60
BLAKE2b-256 13f7651916ffd568ac4261298fdcb64dd8213603ed22ebaab8541bb8114c73d9

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a2de0c293cb0c67c38963b676017ed2e38c5b76254316e956451ca21589b44fe
MD5 1a78aecf3b503ea50b05f0855f9fdfb9
BLAKE2b-256 e9eb05a4169973a4e9498268f66fcc778a56331b4fce94feb15b9b41a3f831ed

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8b7012f1389e7b8399edf7520e6f3aba1ff99d192b269ccd0a1c452d1fc2064
MD5 ead4b9b3a26d382da84d3f7ba3840e21
BLAKE2b-256 c696060b5e32c70af7a8b47c1ac8b497ade1817fada345f904edaafb28928894

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fbc5dfabab4ef6da94284db04132da1702696cbdb39b57e83e7e577c30d12e3
MD5 aea14da1cb2e8d56df53b468222b180d
BLAKE2b-256 32c4433da832d0d1b551f8d699a23f63ee02203b13522e9956a18b19a4770b89

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d832452975b2251bda891a12e5fc239151f347802fd2f6e2224b3adf5caf49
MD5 03f1da0c9f4ad33cf7056c78a64c6c2c
BLAKE2b-256 ba01198d43e8abee9febca7bbed5cbd2bbe471f4a08fd20860f5544fb5fcf782

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a7ae5b9bd275221311c7993c8c8f4d21eafa4502826130e2bb85d46f6d9224e
MD5 b923d27cbce08b136229c76d648fcdd4
BLAKE2b-256 de1ffe20ad87f791240f936d6ec762e3ce81ec8f0e71d1c2b2789e20b949eaab

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 446b2245b2b6265d8340c13c4d80eb2f0bfd0d918d399aea1590d3f57f867a7e
MD5 bfd62c28c55523c8001c33707a517f25
BLAKE2b-256 6553c20eda14f95f8a96123d627e06f7926fb4cc919c14b248a287f050eb242c

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1c56c56e8ce7dd5f4daf1e926942983c1b419ef81da2a51f5e5dc717f1b8da7
MD5 f0b8b4799966bb17a8b9798e4622b5bd
BLAKE2b-256 7cacb6b45ba0c5200f569c9571936e980a35d92aca878017e3a0dc9e48263084

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4d3cd6100dad6664992b60397a3d0731ffce663b966eaa0fdcb5cfcac26550b
MD5 124fddac7d39044a16beb5dd555f67ee
BLAKE2b-256 e51f278709766ded94736d011239d6ece9f52e6621827f7d28f195f2a0574126

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97376dbfaeecd8ee13ae08eaa18749c0e2142557552838d1da25c5102b22a504
MD5 77ad66301bda27afd708cf8d865f5b58
BLAKE2b-256 9051974e7a2b40d331157f4102ed427f1ff64b95cbef6d91a65e3c01aca44681

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1b05ef0c8075a1d5378f11998ddaa0f3af53b06970a337f3eb312ff837b7d94
MD5 0f9ea542455d38e4d60d24ebdb7c4a1c
BLAKE2b-256 34ee19eca26ea53a8b747560479db61837ea9b2c88d43ebde1112a2eff6edec4

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ec34c94e25f1c4bd66c9be714ff72376e3da6d7918a8a037fc6ba82fb9822cb
MD5 1269fdf01798db01973dcdd017017587
BLAKE2b-256 121254642ea2fab032a6aba57317fb1087c144f2ddd56d671fc0c9140afbbd25

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b9c1340029815952fd7ed1f788274659298a73aabd3573a4753d14b1a9162db
MD5 49f5090783a7a975fe6f570943496b81
BLAKE2b-256 19c08e70d5084e3b79f360df71251c61b9f46959c676131d93da25f67037b8e9

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-win_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 5b4630d86f3d97613f08cb0cb302ecb2a5266e67fbb2d50eb69ba69f259b5ee0
MD5 6bd999dce75d38c120f0a57fa08fa86b
BLAKE2b-256 3ba14eee20d28e7170fb50e7b2389946e9b385b9e23c079391648ef7a7b3db10

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-win32.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 093e03d520d294a372f2521e5948b5660874c889f189f23b538d59fa1841c365
MD5 e7f534c29d0c3a153409bf232d442ec8
BLAKE2b-256 1b8469bbd0cba804e33761709775b769db54187003f98000350ae2807793821a

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0bf6bd82d639d6cd527983ecff76450bc8878a75e4434c0fbde5edf16aa2bb4
MD5 6d1078dfbf412b7f94fb0463e4caf020
BLAKE2b-256 2bec5ba9bad40d46baebc2f85d22c21b44c1afa38363e00cf8f75ca2add07267

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4615785072c1185b0ed1caf0dea188abd7890667e730c6d6717d84b317d10e78
MD5 75d39fbba7bb2e3d2de8661f10c3006b
BLAKE2b-256 3167af8600ce0268e675f7d23e970bb2a5f6c68a3686884ef2518c9d24c75379

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ab47477a37c562c6512a222c0acaddb11d9d69ec16e50913214bc15b2ab3d8bc
MD5 2710d8e02fb9b9e44edc6cd1f61f1b7c
BLAKE2b-256 5fc0dd451cb97c52bcb69b8ecc1e92c87426dd88cb51e79d128accfda2b66949

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90c0adf6519cac6f2ab1fc094e6ea40650198571e9aace52b8a7e69e316a2b89
MD5 5a8aaf066758446cf45271197ab40ce7
BLAKE2b-256 64faa9fe2aaf0605b5556ebb8539c19c023fdd3bc78a0d07811ceba27d3f18c8

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9545a538067f517330faa56d59ff08b0c74910711597dcccc24ad71a97c9cb8c
MD5 89cb332a1177f23302f1f45b6576e88e
BLAKE2b-256 30f5c8a7a80dc6f31216fdce524089cea475af7ae1e6b28952fecba076d8a166

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 319c02f8e4ec2dbdccb47bb3676a139f8634b255efafbb433a2c705e315fbb76
MD5 a3caa37bd85d2662fd35fa2a66f178b5
BLAKE2b-256 0e683e3c32342dfa906c9c3ab2a88084688c1e22f77be1cc4da44669faa071d3

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8046dedc75cbd93ee4ec01d3088511079425d9438ffddd7c0de8bac54db6701d
MD5 68babde619860dfd2ab168155869bc38
BLAKE2b-256 4017bd577543997b3e0b9f49525b4a9966817808048e34a30ca3e15939d9de40

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5f720ce493fa9049917954ae1270a5d3c41987f792e34a633f725fa0fc85781e
MD5 51070b41ae3c9b1c2b255b4deb115f75
BLAKE2b-256 1f1dae4f7cc90eb3e42021e0ca7ef5f4ce5e9894a3f46b47d3dfa40d9b749c94

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 23915808a2475705582e7c8adc17fac5ca9f3a803be184798e06cbd8c7350580
MD5 38502ff0938c16a14eb78f44848df8c0
BLAKE2b-256 8bb7a7b8561ceefca78c6b38fcd2edd624dbbd66818d6a7cacdb49155745f44c

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp312-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9de6c9263a82bc4f0db73d0c8534bdb8a3a1fd13f448c967d7f3e085dbc50c05
MD5 a42fef33b0c1179a4457a1ab153fd6fe
BLAKE2b-256 81229b3db3535ec25f3e091ffd111b39e25a16bd17bcddea5e5a269075ec104d

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp312-abi3-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: lupa-2.7-cp312-abi3-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12+, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp312-abi3-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5bb4461f6127293c866819a22f39a3878d49314f4463b4adf45d3bf968d15c92
MD5 031f24fc92eee12da1e08c3fe0c1e0ff
BLAKE2b-256 58b383836d5f3d4af2c135b12dd4483592c4064339b075158cbcc8fbfe5e239b

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87358e2bfd630a3cac05bd376aba6ce6a67acd0df44970be6c25b9134d400d2e
MD5 caf2ee92e1d729435faed91de524a2c4
BLAKE2b-256 23c35ffe67670e34aad6792b9daa6f6ae2aa1188ea9b6d4e9a947425b5152aa8

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51bbd28c639088028cbfa10aa001ea77b890609ab364fbd85d3fc36d3e0a6b0d
MD5 e81cf9ad648fc3ad748c8dec8a5bbe00
BLAKE2b-256 0ee0207c641774016a1b200b30c50cbcfea332536b412daad14778bba7ceea10

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c30332ff60c6587dd4177d286516316e4fe63ef09bf4c25249c7e0d98f6100ff
MD5 c876409acc7f9b185efbb8c512250a17
BLAKE2b-256 2989f4b2fa7eaee9810c5280b8f18f6c5640b2f434242ffb4f050e16a01f0ca7

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eff5282d76f57dc27067d1cfe668a40dc63c8d052004ee96831d4d8b15057d0
MD5 0d23935b56778044d192032a8e1cfd82
BLAKE2b-256 1a69db7099ef820fdaa532edbbadb24fe47f114f2f53252fdd9872683cdd2e42

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bd7e295c1f56f02786dc935cac2892fca6e6cde2ace0eac08915297306053779
MD5 f5554bdd7ed599353f5e81a89637dc07
BLAKE2b-256 f8908cc64d5e5d4ff314a747f44017b4423749e6027c3aa2612f19be0c690c05

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65f8b89da2f3c85b8f5e33855f07a8db8eb8a04264d020850d59e04f3f0a9615
MD5 3ee067202d11a30c2c6c656475736339
BLAKE2b-256 36d2cd90b3f126766523ac4ef535739f9ca8838a1232d0df030492cdba22c785

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d986b406df775b6f092b91f57bbf26df17f02ad0da11b37e0f66d45c011b26ad
MD5 49fb2664c7821e0ed493aa8d7fecb831
BLAKE2b-256 336a9fb6e8f0dca122090d82696c1758864eb409a822bb4d135993481b522553

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b441227447001e2e4059fbe5cd0b4067a9af60bc77979eb9bad1b143b299c57
MD5 5a97aeced9aafef6f20bfffe153f2324
BLAKE2b-256 e20c6a9f5a7ffd0c286550ea18b136e51bf9bf757f9d2b01245b4aa93e4f37d2

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 e353bad751b55d48d1b909a6b48fb5b306a2d6cd8404981a1554b356da2cf050
MD5 62e2651f83e101e04af687eee723a1de
BLAKE2b-256 29e5390470a09b8972772f547b51c29baafd1708b20c46f92ac8c251d1db2fbf

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp310-abi3-win32.whl.

File metadata

  • Download URL: lupa-2.7-cp310-abi3-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 9992c5afa5adddabb953685b205cfd42cb6cdaf44316f4e4e2cf1c5dc4815f74
MD5 205156c00b3ad23760e34916c74be0d1
BLAKE2b-256 c9b718f7e66df0245cee685b22f458e9c614fdff9406aaf77a2e81b452a56da6

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a0f37ee4fc99cc584a688b718227185f649541dbe4d7db39abd45732e603768d
MD5 465f1293e8e1987c29dd62d1af939eac
BLAKE2b-256 2950dd57e3caa35fdd692be726626c06bd8f7343ea28782a63cf732df93cfdb5

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d659e82d4ee039b51f49559c0c846ddf81bd783320e656c7151f707a027a466a
MD5 c2f6fd0c94163c9d3f1246d1917a5622
BLAKE2b-256 08cd27a58e50e2216298993b6b30e1190491c4a2dcde86a560bf76047f457947

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: lupa-2.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c5bf7c760e8d84c5008642a00fb124568c68001a504b6a7412921efe306e486f
MD5 25b95820da751011b27aa1aabf3d2c45
BLAKE2b-256 d4e0d079843e20f16533baed9a37942e386fdcf2db415f84613d3437104871d5

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82559205799433408306c716413455833e5310f294d0a3c40594b23b5aea5f6e
MD5 d104728c9d432b2b51089ee4e8387763
BLAKE2b-256 64c1d78d5024c8dcbbe48e39bd6c076d662986001f8646a14687d6848c05a990

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56c82a3ee1c485ae69296e6ae4942a12e13165aae8cda36c5db94cdec9b197eb
MD5 425c3756593a388671e486cebbefef74
BLAKE2b-256 98aae4273342863c63568c2a0a4796bb5d708c04e3069f37197a81c0b1d008b6

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6f671fb2cb285fdfe2a89c3bf9ddc006427a499afdaa7a89f59d2da93e778e0
MD5 7700cd52709a060d09a92bf20c3e56fa
BLAKE2b-256 226484ebdc5a28feadf58ae5bbbeefa9c3b71c3858676449a16c8323583f0bb8

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f899ceacf2d38bdd4c54aa777cec4deafcc7a6b02a0aa65dbca96e57e11d260
MD5 d6e3273b29fde64af439065028210a70
BLAKE2b-256 14775df2e2296eac345c6d391632b50138615cabc4834742acf82d318fe2f89b

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6dcf4cba4bb5936859a675bb22f0d9291914f3e2840366653eb829b7d8b3035d
MD5 ee69da75438718474db054931dd429f9
BLAKE2b-256 42896ed7cb2441213569d5732b9d2b955c4fb0484c94dbb875f3af502e083650

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1129d12951c221941c471251ea478db6faa34175ffafadd3dca1f75c9d83e84a
MD5 619671a44b40f0d16edcc216581d634d
BLAKE2b-256 0e284e4cbc45a36000a37a1109ce4c375a8621e9fa195e86ec1e228138e88a39

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f810b920787dfb46b3bf3f54d370f2e3c78ea37db214954fc025d2d1e760eff7
MD5 3e4eda8a5d87e95671fcc3759f88e060
BLAKE2b-256 372a8cfc3ae8ec1d474beaa07839b3e200ef0710f0439959cc91a97ef4e432f9

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02e24aaf1bc55242fdd4dd6c6b556f927f1c2a7a669deb902d4d1e73d2c9d1d6
MD5 f0947074c346d306a278c6b0dab41444
BLAKE2b-256 d1decb2dca1f39ada99f311e54f4ede0235ec47398b712482528fc64737df407

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14b26aaa7f600c670eec2afeb5cf312cc398c0a1bd958f97f5328e8162d11f78
MD5 d0366dbae9a2751f50f96f7a30f1b6dd
BLAKE2b-256 328f5499f13dac1329a9759fd9344622656b3f00c52ea70f9be94de9fb273256

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-abi3-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3cd273b4fa9c0fcdaed0a541e37ced22117c7aeab8af14d75ece213ce4c37506
MD5 18d4cb347a6dc11a3c95e4ec80e272b3
BLAKE2b-256 8a1866e5289a6d086235723fa7516049313eb994a5d6ead9eb8f7f7eb8523172

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c98d4d085e438d5fcee10e555baf67bc84553417efbe1d163fcc152466696a69
MD5 321b2811678c309ec1645ab6ac8c9b82
BLAKE2b-256 5a3f7e0a6660a84ae3b6d8f9834ff183d0522b123b3b2329f0343f52d469fd1a

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 07f2cd100f7278888f23f79d7ad49f3544835501543fa65be74bc5bfd2369aea
MD5 c86692d98c1f6c11ffd52acd841a56a1
BLAKE2b-256 4e259bcbd18a5742d0b1b80b783548007dcc57d4159075ff35fd833bf53548a5

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp39-abi3-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 aa5d3f540fed4534cac696d0a5ee6cb267180b45241501a43db5ca1699d46746
MD5 3e520a9a5894a552cbd1fb292c563f6d
BLAKE2b-256 083e17109c4f7e333205a08f01c2d3d4222c76ce6f8b6c72791a739b11c6f43a

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp39-abi3-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: lupa-2.7-cp39-abi3-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9+, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp39-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10d679932e759d628cd9df56590d6e90dd81040d10552172d01b2419e8f16565
MD5 26f065c4880e332fc7109c832ad385b5
BLAKE2b-256 78c19976b81671b339196a69f4ee96a885864b96cf9541c6c1c76ce00cb08df4

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lupa-2.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71c336e6f0551cc0638ff23ff6ba632be3c7fae80d9f493da23be76e17c738d8
MD5 6af2e89117e9bbb3f39075ca9f4c7cef
BLAKE2b-256 ac0132020ba12131c8cd83a14672689fc340fc3e21f9d32725c8194bd8f53506

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: lupa-2.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 20c3051080077b6ea31a159dccfe6c17d708cca436acbf50f4c6aee71f5bdc11
MD5 cd1bf682eb5f2ff815e1218deeda8011
BLAKE2b-256 d6b2e21fa07d4be8c5566d898a3795f37f8bd3d07bcd02a5ea93b1bfbe170ac7

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e6bb7df38e17ca239155e3e518f214bea04697f070173392e963e63fff02fa6
MD5 eb315dbc50f623695e66ecbcf9ff783d
BLAKE2b-256 4f51656014a326b4c0157e32a2325b700ec7015731a1755c783370d4c44c1e71

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lupa-2.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f159a2d2449fc1bbde6cb527f60cdf67c83f9144f6cffe4822b3c0dbf35ea3d9
MD5 cb85748cdd0d7a4aab0a4032305a44fe
BLAKE2b-256 f44b5dec29958093f5cab70e403e58644bd31d03e4991934f25127db3efee6c2

See more details on using hashes here.

File details

Details for the file lupa-2.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: lupa-2.7-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for lupa-2.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4716f26b9412a89e12b476fa2981ac87c38a1eaa1474747c436ad190f5aa13d8
MD5 2b5364db8ff786b336c2cb29e0c2795a
BLAKE2b-256 fbad96c3329790fe6d2a3dd850170a17761335b457adc21031a975175a1db135

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page