Django app to transform input sources to RDF
- Clone the repository into your existing Django project:
git clone https://github.com/LinDA-tools/transformation.git
- Import the app settings.py file into your project settings.py:
from transformation.config.settings import *
- Add the app url patterns to your project urls.py:
url(r'^transformation/', include('transformation.urls'))
- Install MySQL database connector for Python 3 (https://github.com/PyMySQL/mysqlclient-python)
sudo apt-get install python3-dev libmysqlclient-dev
- Add the app requirements.txt to your project requirements.txt:
transformation/requirements.txt