Looking to start learning Python?

Begin Here

Tag: Python

Getting Started with virtualenv

July 17, 2012 by Mike
Virtual environments can be really handy for testing software. That's true in programming circles too. Ian Bicking created the virtualenv project, which is a tool for creating isolated Python environments. You can use these environments to test out new versions of your software, new versions of packages you depend on or just as a sandbox […]

Python 101: pip - a replacement for easy_install

July 16, 2012 by Mike
Pip Installs Python or pip is a tool for installing and managing Python packages, many of which are on the Python Package Index (PyPI). It is a replacement of easy_install. In this article, we'll spend a little time trying out pip to see how it works and how it might help us in our Python […]

Python 101: easy_install or how to create eggs

July 12, 2012 by Mike
Today we're going to take a look at the controversial easy_install method of installing Python modules and packages. We will also learn how to create our own *.egg files. You will need to go get the SetupTools package to follow along. This package doesn't support Python 3.x so if you need that, see pip or […]

Python 201: An Intro to distutils

July 9, 2012 by Mike
Last time we learned how to create modules and packages. Today we're going to take the package we created and use Python's distutils to create a couple different ways to distribute our code. In this tutorial, we'll be learning the following: How to create a setup.py file How to create a source distribution How to […]

Python 201: Creating Modules and Packages

July 8, 2012 by Mike
Creating Python modules is something that most Python programmers do every day. Any time you save a new Python script, you have created a new module. You can import your module into other modules. A package is a collection of modules. The things you import into your scripts from the standard library are modules or […]

wxPython: Making a panel self-destruct

June 26, 2012 by Mike
The other day I saw a question on StackOverflow about how to dynamically destroy and create panels after a certain amount of time has passed. I told the fellow that he could use the examples from one of my blog articles where I destroyed and created buttons, but the dude just didn't get it. So […]
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary