Re: Integrate appliction into Django

2016-02-28 Thread Derek
In addition, I am not sure you have to use Django here; a simpler Python web-framework like Flask might be more suited (there you don't have to have models; just views). You could write a view that loads the text file and converts it (via a jinja template) into an HTML table, for example.

Re: Integrate appliction into Django

2016-02-28 Thread Rahul Gandhi
I haven't had a look at the github link, but if all you want to do is to display plots (I'm assuming these are images) and text files, then all you need to do is to serve these files from the views to the templates. You can store these plots/text files in a directory which is accessible to

Re: Integrate appliction into Django

2016-02-28 Thread Bob Gailer
On Feb 28, 2016 7:50 AM, "Alain Muls" wrote: > > Hi All, > > I made a program that creates 4 plots and text files about the location of GNSS (Global Navigation Satellite Systems) based on TLEs downloaded from NORAD. > You can find it at

Integrate appliction into Django

2016-02-28 Thread Alain Muls
Hi All, I made a program that creates 4 plots and text files about the location of GNSS (Global Navigation Satellite Systems) based on TLEs downloaded from NORAD. You can find it at https://github.com/alainmuls/GNSSTracking I would like to use this program in django (I started with