└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # pandas-to-datatables 2 | Pandas dataframe to jQuery DataTables 3 | 4 | I had some trouble searching for the correct format to export a pandas dataframe to jQuery DataTables. 5 | 6 | python code: 7 | 8 | ``` 9 | table = df.to_json(orient='split', index=False) 10 | return table 11 | ``` 12 | 13 | DataTables js 14 | 15 | ``` 16 | $(document).ready(function() { 17 | $('#example').DataTable( { 18 | 'ajax':{url: 'link/to/above', dataSrc: 'data'} 19 | } ); 20 | } ); 21 | ``` 22 | 23 | Hopefully this helps someone. --------------------------------------------------------------------------------