{"id":17669307,"url":"https://github.com/snimmagadda1/luigi-etl-example","last_synced_at":"2025-03-30T13:43:52.932Z","repository":{"id":102028226,"uuid":"116810774","full_name":"snimmagadda1/Luigi-ETL-Example","owner":"snimmagadda1","description":"🔍 Example of an ETL pipeline using Spotify's Luigi","archived":false,"fork":false,"pushed_at":"2019-01-16T14:44:13.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-05T15:42:42.647Z","etag":null,"topics":["data","luigi","luigi-pipeline","python","spotify"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/snimmagadda1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-09T12:01:56.000Z","updated_at":"2020-12-19T21:17:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee713bb2-da36-45d0-827b-c2c1e432786d","html_url":"https://github.com/snimmagadda1/Luigi-ETL-Example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snimmagadda1%2FLuigi-ETL-Example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snimmagadda1%2FLuigi-ETL-Example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snimmagadda1%2FLuigi-ETL-Example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snimmagadda1%2FLuigi-ETL-Example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snimmagadda1","download_url":"https://codeload.github.com/snimmagadda1/Luigi-ETL-Example/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246326600,"owners_count":20759436,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data","luigi","luigi-pipeline","python","spotify"],"created_at":"2024-10-24T00:08:29.096Z","updated_at":"2025-03-30T13:43:52.913Z","avatar_url":"https://github.com/snimmagadda1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Companion repo for post: http://www.s11a.com/2018/01/09/first-impressions-luigi/\n\n## Running Tasks\n\nThe preferred way to run Luigi tasks is through the `luigi` command line tool that is installed with the pip package. Ex:\n```\n# my_module.py, available in your sys.path\nimport luigi\n\nclass MyTask(luigi.Task):\n        x = luigi.IntParameter()\n        y = luigi.IntParameter(default=45)\n\ndef run(self):\n        print(self.x + self.y)\n```\n\nShould be run like this\n```\n$ luigi --module my_module MyTask --x 123 --y 456 --local-scheduler\n```\n\nOr alternatively like this\n```\n$ python -m luigi --module my_module MyTask --x 100 --local-scheduler\n```\n\nNote that if a parameter name contains '_', it should be replaced by '-'. For example, if MyTask had a parameter called 'my_parameter':\n```\n$ luigi --module my_module MyTask --my-parameter 100 --local-scheduler\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnimmagadda1%2Fluigi-etl-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnimmagadda1%2Fluigi-etl-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnimmagadda1%2Fluigi-etl-example/lists"}