I am using Python but I wouldn't mind changing language. All I have gotten from my research are tools to count the number of (lattice) points inside a region given the equations for the planes that enclose it. Other tools are made to optimize a given function inside the polytope (linear programming).
How about finding the lattice points alone? For example, a function of the kind
latticePoints( 'x < 5 & x > 0' ) = [ 1, 2, 3, 4]
Plus I am looking for something to work in the multivariate scenario (constrains on x, y, z, ...).
I am currently trying to solve this using ppl.

Using the Python package
polytope, the integral points within ad-dimensional polytope can be computed as follows (this script is based on a test that I wrote: (polytope_test.pylines 415--455):Currently, the above Python code works with the development version of
polytope, which can be installed either using the package installerpip:or by cloning the GitHub repository, and installing from the cloned repository:
The Python script above outputs: