In my Python web browser tutorial, what should I do in Part 3? Just wondering 🙂 PS: Plz like or comment or even both 🙂
Category Archives: Python
Python, GTK and WebKit – creating a web browser – Part 2
IF YOU HAVE NOT YET, PLEASE READ PART 1 BEFORE CONTINUING! In Part 1, I showed you how to create a very basic web browser in Python with WebKit and GTK. It is a great example of Python’s power, but there was no refresh button. Part 2 focuses on adding this feature so you can refreshContinue reading “Python, GTK and WebKit – creating a web browser – Part 2”
Python, GTK and WebKit – creating a web browser – Part 1
THIS WEB BROWSER IS NOT SEASURF. IT IS A VERY BASIC BUT RATHER FUNCTIONAL WEB BROWSER. Here is how to use Python, GTK and WebKit to create a very simple web browser. First, you will need Python and the GTK and WebKit modules installed. Here is the code for the basic web browser: #!/usr/bin/env pythonContinue reading “Python, GTK and WebKit – creating a web browser – Part 1”
Python: Input
Use raw_input for this. Here is an example: print(“Raw_Input example, by Epic Chas Gamer”) name = raw_input(“What is your name? “) print(“Hello, “,name) If you get errors plz comment 🙂
What do you really want to see in ECG SeaSurf?
Will this be the next superfast browser? Read on to find out
A new web browser
Python lets you do lots of things, from Calculator programs to Video Games. But there is one capability that you probably don’t know you can do with Python: make a simple web browser. ECG SeaSurf So, no set release date yet, as I am still working on it. But when I have finished developingContinue reading “A new web browser”
Video Game
I am developing a video game and can’t think of a name for it. Can you guys plz comment with some good names for a video game. It is going to be a fighting game. Thanks! Epic Chas Gamer 😀
What is a Raspberry Pi?
A Raspberry Pi is a £30 computer the size of a credit card designed with kids and programming in mind. It is capable of doing everything a desktop computer is capable of, from surfing the net to playing Minecraft. On this blog I sometimes write about it. You can learn more about the Raspberry Pi atContinue reading “What is a Raspberry Pi?”
Unofficial Raspberry Pi Clock Application
Hi guys. Today I have been experimenting with Python and Pygame. I managed to make a clock application for the Raspberry Pi. Here is the code: import pygame, sys, time pygame.init() screen = pygame.display.set_mode((1184, 624), pygame.FULLSCREEN) pygame.display.set_caption(“Raspberry Pi Clock”) clockFont = pygame.font.Font(None, 72) clock = pygame.time.Clock() ##COLOURS WHITE = (255, 255, 255) RED = (255,Continue reading “Unofficial Raspberry Pi Clock Application”
Sense HAT emulator on Raspbian
On the latest version of raspbian a new app appeared. This app is a sense hat emulator. It is very cool and when you do from sense_hat import SenseHat do from sense_emu import SenseHat instead. For example, here is some Python code that I found here! Here is the code, but this code is for the emulator insteadContinue reading “Sense HAT emulator on Raspbian”