p-NJU is built on wxPython, a cross-platform GUI library with the Python programming language.
My development environment is Python 2.7.3 + wxPython 2.9.4. To install the wxPython 2.9 version which is in the unstable channel:
- If you are in Windows, go to download page, download and install it.
- If you are in Linux and there is no such version in your software repository, go to download page, get the source code, apply the 2.9.4.1 patch here, then build wxWidgets and wxPython from scratch. There is a build doc FYI.
- If you are in Mac OSX, go to download page, download and install it. Specifically for Mountain Lion, please refer this thread for help.
After that, you have to install additional Python packages that p-NJU uses. It's pretty easy to do it with pip:
pip install urllib3
pip install beautifulsoup4
pip install PIL
If you are in Windows, you can go to PIL website for its binary installation to avoid compiling this library.
OK, now you can run it by python main.py
in console window. To build executable file, you need to use PyInstaller.
Please fork this repository and send me pull request. Definitely you have learned how to use git
:)
This software is distributed under MIT Licence.
Copyright (C) 2012 Letian Zhang
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.