Re: .py to .html generation

2015-09-05 Thread injectnique
On Thursday, September 3, 2015 at 1:04:45 AM UTC-4, uday3p...@gmail.com wrote: > Hi friends! > > Can some one help me with the best module and/or its tutorial, to generate > html reports for python scripts? > > I tried pyreport and sphc; but, i am getting errors.

Re: .py to .html generation

2015-09-03 Thread Laura Creighton
In a message of Wed, 02 Sep 2015 22:04:03 -0700, uday3prak...@gmail.com writes: >Hi friends! > >Can some one help me with the best module and/or its tutorial, to generate >html reports for python scripts? > >I tried pyreport and sphc; but, i am getting errors. >--

Re: .py to .html generation

2015-09-03 Thread Laura Creighton
In a message of Thu, 03 Sep 2015 09:22:27 +0200, Laura Creighton writes: >There is also a report generator implemented as an extension to sphinx. >https://github.com/AndreasHeger/CGATReport >Interfaces nicely with ipython. Makes it easy to stick matplotlib >graphs into your report. I forgot

.py to .html generation

2015-09-02 Thread uday3prakash
Hi friends! Can some one help me with the best module and/or its tutorial, to generate html reports for python scripts? I tried pyreport and sphc; but, i am getting errors. -- https://mail.python.org/mailman/listinfo/python-list

Re: HTML Generation

2009-04-16 Thread Nick Craig-Wood
J Kenneth King ja...@agentultra.com wrote: Stefan Behnel stefan...@behnel.de writes: See here for another example that uses lxml.html: http://codespeak.net/lxml/lxmlhtml.html#creating-html-with-the-e-factory Stefan Ah, looks good. Have never used nor finished the example I had

HTML Generation

2009-04-03 Thread Mike
Hello all, I'm writing a web app and wanted to do some html generation (I really do not like to maintain or write html). I'm thinking of writing a dsl based on the following: def html(): return def a(): return def body(): return (html, ...(head, (style, id, {font-color:black

Re: HTML Generation

2009-04-03 Thread Tino Wildenhain
Hi Mike, Mike wrote: Hello all, I'm writing a web app and wanted to do some html generation (I really do not like to maintain or write html). I'm thinking of writing a dsl based on the following: def html(): return def a(): return def body(): return That would be writing

Re: HTML Generation

2009-04-03 Thread Daniel Fetchinson
Hello all, I'm writing a web app and wanted to do some html generation (I really do not like to maintain or write html). I'm thinking of writing a dsl based on the following: def html(): return def a(): return def body(): return (html, ...(head, (style, id, {font

Re: HTML Generation

2009-04-03 Thread J Kenneth King
Tino Wildenhain t...@living-examples.com writes: Hi Mike, Mike wrote: Hello all, I'm writing a web app and wanted to do some html generation (I really do not like to maintain or write html). I'm thinking of writing a dsl based on the following: def html(): return def

Re: HTML Generation

2009-04-03 Thread Stefan Behnel
J Kenneth King wrote: from tags import html, head, meta, title, body, div, p, a mypage = html( head( meta(attrs={'http-equiv': Content-Type, 'content': text/html;}), title(My Page)),

Re: HTML Generation

2009-04-03 Thread J Kenneth King
of it's even practical. Anyway -- OP: there are many ways to approach HTML generation and it's a good pursuit. If you come up with something new and unique, please share! Down with templates! :) -- http://mail.python.org/mailman/listinfo/python-list

Re: automatic html generation for documentation?

2006-02-26 Thread John M. Gabriele
Lonnie Princehouse wrote: I plan on writing some documentation that will consist of blocks of commentary with interspersed snippets of syntax-colored Python code and the occaisional image. Does anyone know of a package that will take a high level description of what I just described and

automatic html generation for documentation?

2006-02-24 Thread Lonnie Princehouse
I plan on writing some documentation that will consist of blocks of commentary with interspersed snippets of syntax-colored Python code and the occaisional image. Does anyone know of a package that will take a high level description of what I just described and auto-generate clean-looking web

Re: HTML generation vs PSP vs Templating Engines

2005-11-20 Thread riplin
Using templates means that the code can work with different templates, and this should be seamless, it also means that different code can be used with the templates, for example if different languages are used. This seems to contradict your statement that you dislike 'embedding code or html

Re: HTML generation vs PSP vs Templating Engines

2005-11-19 Thread riplin
No templates, no python-like or special languages, only pure and simple python. You can embedd python into html or, if it better suits your programming style, you can embed html into python. Why don't you give it a try? I dislike embedding code or html in each other, apart from the

Re: HTML generation vs PSP vs Templating Engines

2005-11-19 Thread Luis M. Gonzalez
I meant that it is not strictly necessary to use templates in Karrigell, although you can use Cheetah if you want. I'm not used to templates mainly because I'm familiar with the way PHP works and, for simple dynamic sites like those I work on, this is the simpliest approach. Another reason is that

Re: HTML generation vs PSP vs Templating Engines

2005-11-19 Thread has
[EMAIL PROTECTED] wrote: I dislike embedding code or html in each other, apart from the 'impurity' of mixing code and user interface it makes them inseparable. Using templates means that the code can work with different templates, and this should be seamless, it also means that different code

HTML generation vs PSP vs Templating Engines

2005-11-16 Thread pkassianidis
Hello everybody, I am in the process of writing my very first web application in Python, and I need a way to generate dynamic HTML pages with data from a database. I have to say I am overwhelmed by the plethora of different frameworks, templating engines, HTML generation tools etc that exist

Re: HTML generation vs PSP vs Templating Engines

2005-11-16 Thread bruno at modulix
[EMAIL PROTECTED] wrote: Hello everybody, I am in the process of writing my very first web application in Python, and I need a way to generate dynamic HTML pages with data from a database. (snip) After some thought I decided to leave the various frameworks aside for the time being and

Re: HTML generation vs PSP vs Templating Engines

2005-11-16 Thread Damjan
After some thought I decided to leave the various frameworks aside for the time being and use mod_python.publisher along with some means of generating HTML on the fly. I kind of like KID templates the most, you can easyly work with them in any HTML authoring software, they are easy to use

Re: HTML generation vs PSP vs Templating Engines

2005-11-16 Thread thakadu
I just do the following: I store the form data as a pickeled dictionary. Then I create my HTML form with something like this: HTMLout=HTMLBODY.. .. INPUT NAME=field1 value=%(field1)s INPUT NAME=field2 value=%(field2)s INPUT NAME=field3 value=%(field3)s''' where the field1, field2 etc

RE: HTML generation vs PSP vs Templating Engines

2005-11-16 Thread Sells, Fred
execute() ===snip= = -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 16, 2005 11:32 AM To: python-list@python.org Subject: HTML generation vs PSP vs