Learn Python Programming

How To : Make a Change-of-IP Notifier in Python

In this article I'll show you how to make a simple IP address notifier. The program will text you your new IP address, in the event that it changes. For those of you with dynamic IPs, this is very useful. I'm constantly frustrated when my IP changes, and it's handy to be notif ...more

How To : Use the break, continue and pass tricks in Python loops

If you've learned other programming languages, you're likely already familiar with the break and pass flow control commands when programming loops. This video shows you how to use them when writing code in Python, and also how to use the continue trick in your program.

How To : Make a Gmail Notifier in Python

In this article, I'll show you how to make a simple Gmail notifier. Python can do various things in terms of notifications; sending commands to an Arduino unit, playing sounds, opening windows, etc. The code below simply plays some music, but the possibilities of notification ...more

How To : Encrypt And Decrypt Text In Python

In this article, I'll show you how to create a simplistic AES python based text encryptor. You'll need python 2.7 and PyCrypto (found here). The code is fairly simple, a user enters an encryption key (which basically tells the program how to scramble the text, using an algorit ...more

How To : Make a .deb package on Ubuntu

CAUTION: This video is slow to load. This video shows you how to make an installable Debian package (".deb") out of a python program. The example program to demonstrate this technique is a little Python game called "rock, paper, scissors". A .deb installer will make it easy to ...more

How To : Nab Free eBooks Using Google

eBooks are an amazing thing, especially with Amazon's Kindle. What's irrtating about eBooks as that you have an infinite selection of books at your fingertips, but they all cost so much! Well, as always, Null Byte has a trick up our sleeves for nabbing free ebooks from Google. ...more

Pygame : All You Need to Start Making Games in Python

Pygame! And what you can accomplish with it. Another python article... (Blame Alex for getting me hooked on yet another coding language...) This little article will cover "Pygame", the set of modules that were designed with game developers in mind. Specifically ones who code ...more

How To : Use variables when writing a program in Java

Java works a little differently than languages like Python or PHP when it comes to working with variables. This tutorial shows you what the difference is, how you can define your variables and the easiest ways to work with them when writing programs in Java.

How To : Remove the DRM from a Kindle

To remove the DRM from a Kindle, you will need the following: Kindle for PC software program and Python scripting program. Install your Kindle for PC software, if you don't already have it. You can get it from Amazon. You will have to register it to your account. Close it. In ...more

How To : Do cool things with strings in Python

Bucky from The New Boston serves up this Python video tutorial on how to do cool things with strings in Python. This is the program you use to write all of your Python code down. Do cool things with strings and format them! Python is a dynamic, object-oriented, high-level, pr ...more

How To : Use cool string methods in Python

Bucky from The New Boston serves up this Python video tutorial on how to use cool string methods in Python. This is the program you use to write all of your Python code down. Cool string methods! Python is a dynamic, object-oriented, high-level, programming language that can ...more

How To : Use dictionaries in Python

Bucky from The New Boston serves up this Python video tutorial on how to use dictionaries in Python. This is the program you use to write all of your Python code down. Dictionary! Python is a dynamic, object-oriented, high-level, programming language that can be used for many ...more

How To : Use default parameters in Python

Bucky from The New Boston serves up this Python video tutorial on how to use default parameters in Python. This is the program you use to write all of your Python code down. Fun with default parameters! Python is a dynamic, object-oriented, high-level, programming language th ...more

How To : Use tuples as parameters in Python

Bucky from The New Boston serves up this Python video tutorial on how to use tuples as parameters in Python. This is the program you use to write all of your Python code down. Fun with tuples! Python is a dynamic, object-oriented, high-level, programming language that can be ...more

How To : Overwrite variables on a subclass in Python

Bucky from The New Boston serves up this Python video tutorial on how to overwrite variables on a subclass in Python. This is the program you use to write all of your Python code down. Fun with subclasses! Python is a dynamic, object-oriented, high-level, programming language ...more

How To : Import modules into IDLE in Python

Bucky from The New Boston serves up this Python video tutorial on how to import modules into IDLE in Python. This is the program you use to write all of your Python code down. Fun with importing modules! Python is a dynamic, object-oriented, high-level, programming language t ...more

How To : Reload modules in Python

Bucky from The New Boston serves up this Python video tutorial on how to reload modules in Python. This is the program you use to write all of your Python code down. Learn how to reload modules once your source file has been edited! Python is a dynamic, object-oriented, high- ...more

How To : Get module information in Python

Bucky from The New Boston serves up this Python video tutorial on how to get module information in Python. This is the program you use to write all of your Python code down. Learn how to get extra info from outside modules! Python is a dynamic, object-oriented, high-level, pr ...more

How To : Work with files in Python

Bucky from The New Boston serves up this Python video tutorial on how to work with files in Python. This is the program you use to write all of your Python code down. Fun with files! Python is a dynamic, object-oriented, high-level, programming language that can be used for m ...more

How To : Read and write lines in files in Python

Bucky from The New Boston serves up this Python video tutorial on how to read and write lines in files in Python. This is the program you use to write all of your Python code down. Fun with reading and writing lines into a file! Python is a dynamic, object-oriented, high-leve ...more

How To : Download and install wxPython for Python

Bucky from The New Boston serves up this Python video tutorial on how to download and install wxPython for Python. This is the program you use to write all of your Python code down. Learn how to install the GUI (graphical user interface) toolkit. Python is a dynamic, object-o ...more

How To : Download and install Python

Bucky from The New Boston serves up this Python video tutorial on how to download and install Python. This is the program you use to write all of your Python code down. Python is a dynamic, object-oriented, high-level, programming language that can be used for many types of s ...more

How To : Create a 3D program with VPython

Interested in 3D programming, physics and Python? Erik Thomspon introduces 3D programming using the VPython toolkit covering a number of subjects including gravity, friction, and tension demonstrating falling balls, weights, wind and satellites. Part 1 of 9 - How to Create a 3 ...more

How To : Shorten URLs from the Command Line with Python

Shortening URLs has become a necessity in this age of Twitter and limited-character status updates. It not only allows us to cram more words into our oh-so-important Twitter statuses, but it also helps us with a few other things. Some Benefits of URL Shorteners We can create ...more

How To : Use the RUR-PLE learning environment

In this ShowMeDo, André Roberge shows you how to use RUR-PLE. RUR-PLE is a learning environment designed to teach Python and help people learn computer programming. A really cool idea that will hopefully make this subject seem a bit easier to understand, and less boring. Good ...more

How To : Hack WPA WiFi Passwords by Cracking the WPS PIN

A flaw in WPS, or WiFi Protected Setup, known about for over a year by TNS, was finally exploited with proof of concept code. Both TNS, the discoverers of the exploit and Stefan at .braindump have created their respective "reaver" and "wpscrack" programs to exploit the WPS vul ...more

UDP Flooding : How to Kick a Local User Off the Network

Only so much data can be passed through the network and to your computer's networking interfaces. This is limited by the amount of bandwidth you have. The more bandwidth you have, the faster your network connections will be. Not only this, but your transfers will be more paral ...more

How To : Make a keylogger

This video tutorial instructs you on what a key logger is and how to make a key logger which records your computers key strokes for later review. There are software or hardware based key loggers that intercept the connection between the keyboard and computer. Hardware key logg ...more

How To : Things to Do on WonderHowTo (11/30 - 12/06)

WonderHowTo is made up niche communities called Worlds. If you've yet to join one (or create your own), get a taste below of what's going on in the community. Check in every Wednesday for a roundup of new activities and projects. This week: Create a redstone calculator in Min ...more

How To : Things to Do on WonderHowTo (11/23 - 11/29)

WonderHowTo is made up niche communities called Worlds. If you've yet to join one (or create your own), get a taste below of what's going on in the community. Check in every Wednesday for a roundup of new activities and projects. Happy Thanksgiving! We hope everyone enjoys th ...more

How To : Send SMS Messages with Python

In this article, I'll show you how to send SMS messages with Python. You'll need Python 2.7 or later, urllib and urllib2. The code basically uses an online text messaging service to "POST" html data, as if a person was entering the data themselves. The uses for something like ...more

How To : Automate web testing with PAMIE

This Pamie Demo shows how to setup, install and run a simple automation script. It shows you: how to install Pamie, how to create a Pamie test script to Automate a form using PythonWin IDE, how to write the script and how to run the test. The volume is really low so crank your ...more

Weekend Homework : How to Become a Null Byte Contributor

We're officially seeking Null Byters on a weekly basis who would enjoy taking their time to educate the community. Contributors will write tutorials, which will be featured on the Null Byte blog, as well as the front page of WonderHowTo (if up to par, of course). This is a job ...more

News : Null Byte Is Calling for Contributors!

We're officially seeking Null Byters interested in teaching others! Contributors will write tutorials, which will be featured on the Null Byte blog, as well as the front page of WonderHowTo (if up to par, of course). This is a job meant for anyone with the will to share knowle ...more

How To : Things to Do on WonderHowTo (02/29 - 03/06)

WonderHowTo is made up of niche communities called Worlds. If you've yet to join one (or create your own), get a taste below of what's going on in the community. Check in every Wednesday for a roundup of new activities and projects. Thanks to all of our active moderators and ...more

  • Hot
  • Latest