Questions tagged [gtoolkit]

2 questions
3
votes
2 answers

pipenv Post-Install Actions

I'm using Python via Pharo/GToolkit's PythonBridge, which uses pipenv under the hood. Things are kicked off via this built-in PythonBridge script (install_env.sh): #!/bin/bash cd "$(dirname "$0")" export PIPENV_VENV_IN_PROJECT=1 pipenv…
Sean DeNigris
  • 6,306
  • 1
  • 31
  • 37
2
votes
2 answers

Display array of objects as a table

I have an array of Candle objects as shown below: Is there a way in Pharo to display the array in a tabular format? | date | open | high | low | close | |------------+------+------+-----+-------| | 2018-12-28 | 10 | 20 | 30 | 40 | |…
dharmatech
  • 8,979
  • 8
  • 42
  • 88