{"id":22938573,"url":"https://github.com/omarreda22/orm-levelup","last_synced_at":"2026-04-17T02:31:18.252Z","repository":{"id":158398645,"uuid":"598759890","full_name":"omarreda22/ORM-LevelUp","owner":"omarreda22","description":"Some Object–relational Mapping(ORM) instructions ","archived":false,"fork":false,"pushed_at":"2023-02-10T13:34:51.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-11T13:05:11.620Z","etag":null,"topics":["django","django-database","django-multiple-databases","multiple-databases","object-relational-mapping","orm"],"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/omarreda22.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":"2023-02-07T18:55:04.000Z","updated_at":"2023-02-07T19:17:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"71cc66c8-8186-4265-b0d4-371eb605bd6a","html_url":"https://github.com/omarreda22/ORM-LevelUp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/omarreda22/ORM-LevelUp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarreda22%2FORM-LevelUp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarreda22%2FORM-LevelUp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarreda22%2FORM-LevelUp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarreda22%2FORM-LevelUp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omarreda22","download_url":"https://codeload.github.com/omarreda22/ORM-LevelUp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarreda22%2FORM-LevelUp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31912323,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["django","django-database","django-multiple-databases","multiple-databases","object-relational-mapping","orm"],"created_at":"2024-12-14T12:19:31.803Z","updated_at":"2026-04-17T02:31:18.225Z","avatar_url":"https://github.com/omarreda22.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ORM\nSome Object–relational Mapping(ORM) instructions \n\n\u003cbr\u003e\n\n## Using Multiple Database [ Postgres - MySql - Sqlite]\n```yaml\nDATABASES = {\n    'default': {},\n    'first': { ## Postgres SQL\n        'ENGINE': 'django.db.backends.postgresql',\n        'NAME': 'first_db',\n        'USER': 'postgres',\n        'PASSWORD': '*******',\n        'HOST': '127.0.0.1',\n        'PORT': '5432',\n    },\n    'second_db': { # sqlLite DataBase\n        'ENGINE': 'django.db.backends.sqlite3',\n        'NAME': BASE_DIR / 'second.db.sqlite3',\n    },\n    'third_with_mysql':{\n        'ENGINE': 'django.db.backends.mysql',\n        'NAME': 'third_multiple_db',\n        'USER': 'root',\n        'PASSWORD': '',\n        'HOST': '127.0.0.1',\n        'PORT': '',\n    }\n}\n\nDATABASE_ROUTERS = ['Routers.routers.AuthRouter', 'Routers.routers.Second_db', 'Routers.routers.Third_db']\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomarreda22%2Form-levelup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomarreda22%2Form-levelup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomarreda22%2Form-levelup/lists"}