{"id":20909829,"url":"https://github.com/kengoon/kivygetpymoduledeps","last_synced_at":"2026-05-17T00:47:55.670Z","repository":{"id":158740578,"uuid":"367900637","full_name":"kengoon/KIvyGetPyModuleDeps","owner":"kengoon","description":"This simple script helps you to know all the hidden and sub-requirement of python packages used on your code","archived":false,"fork":false,"pushed_at":"2021-07-23T23:32:46.000Z","size":7,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-19T15:19:35.186Z","etag":null,"topics":["buildozer","kivy","python-for-android"],"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/kengoon.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":"2021-05-16T14:17:30.000Z","updated_at":"2022-04-27T07:18:30.000Z","dependencies_parsed_at":"2023-06-26T01:50:12.754Z","dependency_job_id":null,"html_url":"https://github.com/kengoon/KIvyGetPyModuleDeps","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/kengoon%2FKIvyGetPyModuleDeps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kengoon%2FKIvyGetPyModuleDeps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kengoon%2FKIvyGetPyModuleDeps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kengoon%2FKIvyGetPyModuleDeps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kengoon","download_url":"https://codeload.github.com/kengoon/KIvyGetPyModuleDeps/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243301122,"owners_count":20269286,"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":["buildozer","kivy","python-for-android"],"created_at":"2024-11-18T14:12:59.951Z","updated_at":"2026-05-17T00:47:55.641Z","avatar_url":"https://github.com/kengoon.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# KIvyGetPyModuleDeps\n\nThis simple script helps you to know all the hidden and sub requirement of python packages used on your code. This gives you the info of requirements\nto add to your `buildozer.spec` file and also what packages you have that are not included on the `python-for-android` receipe\n\n## Code Example of How To get all dependences\n\n```python\nfrom get_buildozer_py_deps import get_dependencies, check_non_existing_recipe\n\nprint(get_dependencies([\"kivy\", \"pyrebase4\"]) # you can add as many package as possible\nprint(check_non_existing_recipe([\"kivy\", \"pyrebase4\"]) # you can add as many package as possible, but your internet access must be on\n```\n\nyou can also run the file directly with this command\n```\npython3.8 __init__.py pyrebase4 kivy kivymd\n```\n\n### Output of `get_dependencies` looks like this\n```javascript\n{\n  'kivy': ['pygments', 'kivy-garden', 'docutils'], \n  'pyrebase4': ['requests-toolbelt', 'gcloud', 'oauth2client', 'python-jwt', 'pycryptodome', 'requests'], \n  'kivy-garden': ['requests'], \n  'requests-toolbelt': ['requests'], \n  'gcloud': ['googleapis-common-protos', 'protobuf', 'oauth2client', 'six', 'httplib2'],     \n  'oauth2client': ['pyasn1-modules', 'rsa', 'six', 'httplib2', 'pyasn1'], \n  'python-jwt': ['jwcrypto'], \n  'requests': ['chardet', 'urllib3', 'idna', 'certifi'], \n  'googleapis-common-protos': ['protobuf'], 'pyasn1-modules': ['pyasn1'], \n  'rsa': ['pyasn1'], \n  'jwcrypto': ['six', 'deprecated', 'cryptography'], \n  'cryptography': ['cffi']\n}\n```\nit returns a dictionary of packages as `keys` and requirements as `values`\n\n\n### Output of `check_non_existing_recipe` looks like this\n```javascript\n['pyrebase']\n```\nit returns a list of packages that is not yet present on `python-for-android`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkengoon%2Fkivygetpymoduledeps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkengoon%2Fkivygetpymoduledeps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkengoon%2Fkivygetpymoduledeps/lists"}