Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sukhbinder/django-exp

DJANGO expense an app to manage housing society's expenses
https://github.com/sukhbinder/django-exp

Last synced: 2 days ago
JSON representation

DJANGO expense an app to manage housing society's expenses

Awesome Lists containing this project

README

        

# Django Exp
A django app i developved for maintaining household expenses. I have primariliy used it to maintain and record expenses for my housing society.

# Install
pip install django-exp

# How to use

Create a new django project

```bash

django-admin startproject expensesite

```

In the **settings.py**

```python

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
# Add these two lines
'rest_framework',
'exp',
]

```

# Demo

![](img/expense_slow.gif)