GithubHelp home page GithubHelp logo

rogeriofalcone / django-homegate Goto Github PK

View Code? Open in Web Editor NEW

This project forked from arteria/django-homegate

0.0 1.0 0.0 207 KB

django-homegate (https://github.com/arteria/django-homegate) provides IDX3.01 API support for your Django project by closing the gap between python-homegate (https://github.com/arteria/python-homegate) and your real estate Django app.

License: MIT License

Python 100.00%

django-homegate's Introduction

Django Homegate

django-homegate (https://github.com/arteria/django-homegate) provides IDX3.01 API support for your Django project by closing the gap between python-homegate (https://github.com/arteria/python-homegate) and your real estate Django app.

Installation

To get the latest stable release from PyPi

$ TODO

To get the latest commit from GitHub

$ pip install -e git+git://github.com/arteria/django-homegate.git#egg=django_homegate

Add django_homegate to your INSTALLED_APPS

INSTALLED_APPS = (
    ...,
    'django_homegate',
)

Usage

django-homegate is a helper app providing a management command to push the new records to Homegate using the API implementation of python-homegate (https://github.com/arteria/python-homegate). If you install from PyPi, this package will be installed as dependency.

To connect you real estate model, register your model in the settings and implement a model manager method that returns all records (real estate objects) to push to Homegate. In addition, a get_idx_record() and published_idx_record() method must be implemented on your real estate model to get access to the data to push to Homegate and to update the status of the record. There is an example provided in django_homegate/models.py.

To register the model do not forget to set the app label in your real estate model, eg. '<real-estate>', and in your settings.py add HOMEGATE_REAL_ESTATE_MODEL = '<your-app>.models.<real-estate-class>'.

The manager method name is ready_to_push(), so

>>> objs = RealEstate.objects.ready_to_push()

will return a QuerySet containing all real estate objects to publish to Homegate. There is an example provided in django_homegate/models.py as well.

In settings.py add HOMEGATE_AGENCY_ID = '<your-agency-id>', HOMEGATE_HOST = '<homegate-host>', HOMEGATE_USERNAME = '<your-username>' and HOMEGATE_PASSWORD = '<your-password>'.

For more info about model managers and app labeling see:

http://www.djangobook.com/en/2.0/chapter10.html

https://docs.djangoproject.com/en/dev/ref/models/options/#django.db.models.Options.app_label

Contribute

If you want to contribute to this project, please perform the following steps

# Fork this repository
# Clone your fork
$ mkvirtualenv -p python2.7 django-homegate
$ python setup.py install
$ pip install -r dev_requirements.txt

$ git co -b feature_branch master
# Implement your feature and tests
$ git add . && git commit
$ git push -u origin feature_branch
# Send us a pull request for your feature branch
Bitdeli badge

django-homegate's People

Contributors

philippeowagner avatar bitdeli-chef avatar

Watchers

Rogerio avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.