Utilities to use pandas (the data analysis/manipulation library for Python) with Qt.
Latest Release | |
Package Status | |
Build Status | |
PyPI |
Python 3.4 or greater
Pthon 2.7 or greater
PyQt4
To install run the following in the command prompt;
pip install qtpandas
If that doesn't work try installing the lastest version of easy gui;
pip install --upgrade git+https://github.com/robertlugg/easygui.git
If that doesn't work then please report an issue
To use, create a new Python script containing the following:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from qtpandas.views.CSVDialogs import CSVImportDialog
if __name__ == "__main__":
from sys import argv, exit
app = QApplication(argv)
dialog = CSVImportDialog()
dialog.show()
app.exec_()
These can be found in QtPandas/examples.
- BasicExmple.py
- Here is TestApp.py
Any feedback is apprecaited.
- Report an issue
- Check out the wiki for development info (coming soon!)
- Fork us.
Forked from @datalyze-solutions's master.