Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dimitri4788/budgetmanager
An application that keeps track of budget (expenses).
https://github.com/dimitri4788/budgetmanager
budget-manager gui python
Last synced: about 2 months ago
JSON representation
An application that keeps track of budget (expenses).
- Host: GitHub
- URL: https://github.com/dimitri4788/budgetmanager
- Owner: dimitri4788
- License: mit
- Created: 2016-03-27T22:57:19.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-13T22:05:24.000Z (about 8 years ago)
- Last Synced: 2023-09-11T17:36:42.644Z (over 1 year ago)
- Topics: budget-manager, gui, python
- Language: Python
- Size: 202 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Budget Manager
==============An application that keeps track of your budget (expenses).
Installation
------------
```sh
# Install py2app
$ pip install -U py2app# Development with alias mode (-A flag)
# Alias mode (the -A or --alias option) instructs py2app to build an application bundle that uses your source and data files in-place. It does not create standalone applications, and the applications built in alias mode are not portable to other machines
$ python setup.py py2app -A# To run application directly from the Terminal
$ ./dist/BudgetManager.app/Contents/MacOS/BudgetManager# Building for deployment
# This will assemble your application as dist/BudgetManager.app. Since this application is self-contained, you will have to run the py2app command again any time you change any source code, data files, options, etc.
# The easiest way to wrap your application up for distribution at this point is simply to right-click the application from Finder and choose “Create Archive”.
$ python setup.py py2app# Copy the application (.app) bundle to Applications directory
$ sudo cp -r dist/BudgetManager.app /Applications/# NOTE: Useful link: https://pythonhosted.org/py2app/tutorial.html
```Usage
-----
Just start the application as you would start any other application on your Mac. Go to the Applications directory and click on the icon or you can make the shortcut on your Dock.Screenshot
----------
![](images/one.png)
![](images/two.png)Author
------
Deep Aggarwal
[email protected]
Date Started: 03/27/2016