473,581 Members | 2,607 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Smalles Possible Browser to display python cgi program

Dear everyone,

I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.

I developed a few small application with an WebInterface.

The appplication runs just locally.

I use CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser.

Does anyone know of a very small browser which I can directly
integrate.

Just the very minimum for this purbose, no bookmarks, no tools, no
javascript, no flash ......

just displaying frames, html, forms, python cgi files and images.

Regards,

Matthias Janes
Jul 18 '05 #1
6 1786

try this one:
http://jan.kneschke.de/projects/lighttpd/
On 12 May 2004 23:11:14 -0700
ma***********@g mx.net (matthiasjanes) wrote:
Dear everyone,

I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.


--
"Doamne, da-ne macar de cateva ori in viata, puterea de a folosi comanda
<<Save>> !" -- Mircea Cartarescu

Jul 18 '05 #2
* Cornel Ghiban wrote:
* ma***********@g mx.net (matthiasjanes) wrote:
I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.


try this one:
http://jan.kneschke.de/projects/lighttpd/


Erm, didn't the OP ask about a browser, not a server? ;)

Anyway, take a look into the GNU Free Software Directory, category "Web
browsers"[0] or dmoz[1]. A very small browser is links[2], which has
both a text and a graphics mode.

Lutz

[0] http://www.gnu.org/directory/network/browsers/
[1] http://www.dmoz.org/Computers/Softwa.../WWW/Browsers/
[2] http://atrey.karlin.mff.cuni.cz/~clo...nks/index.html
Jul 18 '05 #3
ma***********@g mx.net (matthiasjanes) wrote in message news:<d5******* *************** ***@posting.goo gle.com>...
Dear everyone,

I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.

I developed a few small application with an WebInterface.

The appplication runs just locally.

I use CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser.

Does anyone know of a very small browser which I can directly
integrate.

Just the very minimum for this purbose, no bookmarks, no tools, no
javascript, no flash ......

just displaying frames, html, forms, python cgi files and images.


Consider using the wxHTML widget in the wxPython GUI library. There's
a nice writeup on it at IBM DeveloperWorks:

http://www-106.ibm.com/developerwork...pen&l=810,t=gr

-- Graham
Jul 18 '05 #4
ma***********@g mx.net (matthiasjanes) schreef:
I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.

I developed a few small application with an WebInterface.

The appplication runs just locally.

I use CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser.

Does anyone know of a very small browser which I can directly
integrate.

Just the very minimum for this purbose, no bookmarks, no tools, no
javascript, no flash ......

just displaying frames, html, forms, python cgi files and images.


For Windows there is OffByOne: <http://www.offbyone.co m/>
Only 450 KiB if you don't need SSL support.

--
JanC

"Be strict when sending and tolerant when receiving."
RFC 1958 - Architectural Principles of the Internet - section 3.9
Jul 18 '05 #5
JanC <us*********@ja nc.invalid> wrote in message news:<Xn******* ***********@213 .118.38.102>...
ma***********@g mx.net (matthiasjanes) schreef:
I would like to know what would be the smalles possible WebBrowser for
displaying Python CGI application.

I developed a few small application with an WebInterface.

The appplication runs just locally.

I use CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser.

Does anyone know of a very small browser which I can directly
integrate.

Just the very minimum for this purbose, no bookmarks, no tools, no
javascript, no flash ......

just displaying frames, html, forms, python cgi files and images.


For Windows there is OffByOne: <http://www.offbyone.co m/>
Only 450 KiB if you don't need SSL support.


Thanks so far to everyone - I forgot to mention that surly I need it
crossplatform at least Ms-Windows and Linux compatible.
maybe some more explanations: My application is an python database
(pysqlite) financial report software, I use the at the moment just
python cgi scripts to access and display all. (no javascript at all)
I use the CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser. I would like to intigrate with the app also the
Webbrowser - as small as possibly. I use frames.

I might give wxHTML a try or maybe find a downgraded Firebird Browser.

Thanks so far and if anyone has still some more ideas - happily
welcomed.

Matthias Janes
Jul 18 '05 #6
> I use CGIHTTPServer.p y Module as a small webserver and Mozilla
Firebird as Browser.

Does anyone know of a very small browser which I can directly
integrate.


Not what you asked, but the module webbrowser uses whatever browser is
available.

for example:

import webbrowser
webbrowser.open ('http://localhost')

Fedor
Jul 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
5931
by: Miranda | last post by:
Hello, My employer is having a PHP application built (I'm in the process of studying PHP, and am an intermediate ASP programmer). Problem is, I've tested this application on the newest versions of Opera, Firebird and Netscape and they do not work. Its seem any dynamic text from the mySQL database is not showing up. I know that the...
3
1650
by: Sean Berry | last post by:
I have a python program that I want to be able to run from a browser window. It gets run in a cron job every day, but I want my boss to be able to run it whenever he wants to since the database it uses is updated many times throughout the day. I have the following as the first few lines of a program.
4
2100
by: Maggie | last post by:
Hi, I am in a process of creating a text version of my website and was wondering if it was possible to accomplish this without actually making the same page twice using CSS. I have a stylesheet for printing only, which has no graphics. Would it be possible to use the same page to display when the users clicks on the text version link?
5
3165
by: David Baker | last post by:
Hi all I am very new to ASP.Net. I am trying to create a sniffer for our program. We want our users to click our sniffer and hopefully the sniffer will check their computer against our requirements. I would like to ask experts like you to see which items are actually doable with ASP.Net. Below I listed all of the items we are looking for but I...
7
2789
by: Chris Jones | last post by:
I'm trying to make sense of a python program and was wondering if vim has any python-oriented functionalities (apart from syntax highlighting) that would make it somewhat easier to browse the source code. What I had in mind is something that would let me use CTRL+] to automatically display whatever object is under the cursor (a bit like...
0
2372
by: bruce | last post by:
hi... it appears that i'm running into a possible problem with mechanize/browser/python rgarding the "select_form" method. i've tried the following and get the error listed: br.select_form(nr = 1) br.select_form(name="foo") br.select_form(name=foo) br.select_form(name="foo")
7
2456
by: Norman Swartz | last post by:
I want to place some graphic images on the web that are optimally viewed at a resolution of 1024 by 768 pixels. Is it possible, within Javascript,to force a particular screen resolution?
2
2393
by: sebastien.abeille | last post by:
Hello, I would like to create a minimalist file browser using pyGTK. Having read lot of tutorials, it seems to me that that in my case, the best solution is to have a gtk.TreeStore containing all the files and folders so that it would map the file system hierarchy.
53
4103
by: brave1979 | last post by:
Please check out my javascript library that allows you to create any layout for your web page, nested as deep as you like, adjusting to width and height of a browser window. You just describe it in javascript object and that's all. No need to know CSS hacks, no need to clutter your html with tables. ...
0
7868
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8149
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8175
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6553
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5674
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5364
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1403
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1138
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.