A simple Luigi app to connect django and luigi.
Project description
=====
luigi
=====
Luigi is a simple Django app to be able to link Django to the workflow manager luigi.
Quick start
-----------
1. Add 'django_luigi' to you INSTALLED_APPS settings like this::
INSTALLED_APP = [...
'django_luigi',
]
2. Create your `app` and `models` in Django as usual
3. Run `python manage.py migrate` to create the models.
You can know create objects in your luigi pipeline.
Assuming a django model Test in the test app with two CharField, item1, and item2, properly migrated
.. code-block:: python
from django.db import models
class Test(models.Model):
item1 = models.CharField(max_length=120)
item2 = models.CharField(max_length=120)
Here is a minimal example of a job to copy data to database using Django :
.. code-block:: python
import luigi
from django_luigi.django import ToORM
class TestTask(ToORM):
django_root = 'path_to_your_django_root' # Where manage.py is
settings_path = 'my_site.settings'
model = 'Test'
app = 'test'
def rows(self):
for row in [("item1", "property1"), ("item2", "property2")]:
yield row
if __name__ == '__main__':
task = TestTask()
luigi.build([task], local_scheduler=True)
In the above examples, the data that needs to be copied was directly provided by
overriding the rows method. Alternately, if the data comes from another task, the
modified example would look as shown below:
.. code-block:: python
import luigi
from django_luigi.django import ToORM
from luigi.mock import MockTarget
class BaseTask(luigi.Task):
def output(self):
return MockTarget("BaseTask")
def run(self):
out = self.output().open("w")
TASK_LIST = ["item%d\\tproperty%d\\n" % (i, i) for i in range(1,3)]
for task in TASK_LIST:
out.write(task)
out.close()
class TestTask(ToORM):
django_root = 'path_to_your_django_root' # Where manage.py is
settings_path = 'my_site.settings'
model = 'Test'
app = 'test'
def requires(self):
return BaseTask()
if __name__ == '__main__':
task1, task2 = TestTask(), BaseTask()
luigi.build([task1, task2], local_scheduler=True)
luigi
=====
Luigi is a simple Django app to be able to link Django to the workflow manager luigi.
Quick start
-----------
1. Add 'django_luigi' to you INSTALLED_APPS settings like this::
INSTALLED_APP = [...
'django_luigi',
]
2. Create your `app` and `models` in Django as usual
3. Run `python manage.py migrate` to create the models.
You can know create objects in your luigi pipeline.
Assuming a django model Test in the test app with two CharField, item1, and item2, properly migrated
.. code-block:: python
from django.db import models
class Test(models.Model):
item1 = models.CharField(max_length=120)
item2 = models.CharField(max_length=120)
Here is a minimal example of a job to copy data to database using Django :
.. code-block:: python
import luigi
from django_luigi.django import ToORM
class TestTask(ToORM):
django_root = 'path_to_your_django_root' # Where manage.py is
settings_path = 'my_site.settings'
model = 'Test'
app = 'test'
def rows(self):
for row in [("item1", "property1"), ("item2", "property2")]:
yield row
if __name__ == '__main__':
task = TestTask()
luigi.build([task], local_scheduler=True)
In the above examples, the data that needs to be copied was directly provided by
overriding the rows method. Alternately, if the data comes from another task, the
modified example would look as shown below:
.. code-block:: python
import luigi
from django_luigi.django import ToORM
from luigi.mock import MockTarget
class BaseTask(luigi.Task):
def output(self):
return MockTarget("BaseTask")
def run(self):
out = self.output().open("w")
TASK_LIST = ["item%d\\tproperty%d\\n" % (i, i) for i in range(1,3)]
for task in TASK_LIST:
out.write(task)
out.close()
class TestTask(ToORM):
django_root = 'path_to_your_django_root' # Where manage.py is
settings_path = 'my_site.settings'
model = 'Test'
app = 'test'
def requires(self):
return BaseTask()
if __name__ == '__main__':
task1, task2 = TestTask(), BaseTask()
luigi.build([task1, task2], local_scheduler=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-luigi-0.2.5.tar.gz
(5.6 kB
view details)
Built Distribution
File details
Details for the file django-luigi-0.2.5.tar.gz
.
File metadata
- Download URL: django-luigi-0.2.5.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/38.5.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7ca58bb6b27b5488bc75356e4f4901fb3c5c1c098ccbc76d816a2ac49ab3c1b |
|
MD5 | 7c271d37d54254bbf2110908892f1620 |
|
BLAKE2b-256 | a799555da8988505c906fa7dcd4a06f3a136fddd03adff66498299d62e85c522 |
File details
Details for the file django_luigi-0.2.5-py2-none-any.whl
.
File metadata
- Download URL: django_luigi-0.2.5-py2-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/38.5.1 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68f8ab85c51b0685f5fe816a01650174bf6661d0de13a31f2b57e011b5858cc8 |
|
MD5 | 609ede9018e3f0118f6d3113f7ee09fb |
|
BLAKE2b-256 | d70b8813ba4538dc59e0a67893bb8c8c1813c30e8e13998b0dca1f799634abe3 |