gramex icon indicating copy to clipboard operation
gramex copied to clipboard

A visual analytics platform to build data-based web apps with less code.

Results 127 gramex issues
Sort by recently updated
recently updated
newest added

This adds join functionality to `FormHandler` while selecting data. fixes: https://github.com/gramener/gramex/issues/700

Creating Installer script that supports ubuntu, centos and Amazon Linux 2 Added test cases for all three OS.

`pip install gramex` also installs the latest version of pandas (2.x), which seems to be incompatible with `gramex.ml.translate`. Downgrading to pandas>> gramex.ml.translate('hola', source='es', target='en', key='...') ``` ``` Traceback (most recent...

Add a `sentry:` service like this. ```yaml sentry: dsn: ... # other configurations ``` This should set up [Sentry](https://sentry.io) service like this: ```python import sentry_sdk from sentry_sdk.integrations.tornado import TornadoIntegration sentry_sdk.init(...

FileHandler and gramex.ml support R integration via rpy2. However, the need for this integration has dropped dramatically since Python supports most of its functionality. Maintaining and testing rpy2 integration is...

In FunctionHandler, as an alternative to `function:`, allow the `run:` key that runs the function (on applicable methods) but does not write the result. The function is then free to...

`gramex.install.features(folder)` and `gramex.install.complexity(folder)` should each return a DataFrame. If the option `{"format": "csv"}` is specified, it should return a CSV string. Likewise for `json` and `table`.

- Objective: Create a framework and provide support for building multi-tenancy apps - Users can create accounts for themselves. - Users can create organizations (namespaces) themselves. Call them namespace admins...

A possible syntax could be: ```yaml kwargs: url: ... table: [sales, customer, product] join: customer: type: inner on: sales.customer: customer.id sales.city: customer.city product: join: left on: sales.product: product.id default: sales.amount>~:...

Currently, [Gramex keys](https://gramener.com/gramex/guide/auth/#encrypted-user) use Tornado signed cookies to represent a user object, and log in as that user. An alternative is [JSON Web Tokens](https://jwt.io/). The only advantage this has is...