pantab
Read/Write pandas DataFrames with Tableau Hyper Extracts
File Explorer
Download Latest Version (.zip)- bug_report.md
- feature_request.md
- pypi_publish.yml
- unit-test.yml
- pull_request_template.md
- __init__.py
- benchmarks.py
- custom.py
- benchmark.png
- pantab_logo.png
- simple_write.png
- api.rst
- changelog.rst
- common_issues.rst
- conf.py
- examples.rst
- index.rst
- make.bat
- Makefile
- requirements.txt
- pantab_logo.svg
- __init__.py
- _reader.py
- _types.py
- _writer.py
- CMakeLists.txt
- libpantab.cpp
- libpantab.pyi
- numeric_gen.hpp
- reader.cpp
- reader.hpp
- writer.cpp
- writer.hpp
- conftest.py
- test_decimal.py
- test_reader.py
- test_roundtrip.py
- test_writer.py
- .clang-tidy
- .gitignore
- .pre-commit-config.yaml
- .readthedocs.yaml
- asv.conf.json
- CMakeLists.txt
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE.txt
- pixi.lock
- pixi.toml
- pyproject.toml
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/innobi/pantab
Downloads the entire project code from GitHub to your computer.
cd pantab
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
3. Python
EasyPrerequisites
pip install -r doc/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <μ€νν νμΌλͺ
>.py # READMEμμ μ νν μ€ν νμΌλͺ
μ νμΈνμΈμ
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
cd doc
This project's files live in a subfolder, so move into it first.
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
