{"id":15023877,"url":"https://github.com/sap/python-pyodata","last_synced_at":"2025-05-14T20:08:35.207Z","repository":{"id":34243684,"uuid":"158290900","full_name":"SAP/python-pyodata","owner":"SAP","description":"Enterprise-ready Python OData client","archived":false,"fork":false,"pushed_at":"2025-03-24T14:07:05.000Z","size":543,"stargazers_count":231,"open_issues_count":36,"forks_count":95,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-06T13:05:55.857Z","etag":null,"topics":["odata","open-source","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SAP.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-11-19T21:13:30.000Z","updated_at":"2025-04-04T03:38:44.000Z","dependencies_parsed_at":"2024-01-09T12:25:12.037Z","dependency_job_id":"8f4f32b0-96bd-48a9-85e5-a709de327633","html_url":"https://github.com/SAP/python-pyodata","commit_stats":{"total_commits":357,"total_committers":31,"mean_commits":"11.516129032258064","dds":0.6638655462184874,"last_synced_commit":"98b5c492507de19e0f7156353df2ca1d934f03ab"},"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fpython-pyodata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fpython-pyodata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fpython-pyodata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fpython-pyodata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SAP","download_url":"https://codeload.github.com/SAP/python-pyodata/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247485279,"owners_count":20946398,"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":["odata","open-source","python"],"created_at":"2024-09-24T19:59:33.939Z","updated_at":"2025-05-14T20:08:35.201Z","avatar_url":"https://github.com/SAP.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Build Status](https://github.com/SAP/python-pyodata/actions/workflows/python-tests-compatibility.yml/badge.svg)\n![Lint Status](https://github.com/SAP/python-pyodata/actions/workflows/python-linters.yml/badge.svg)\n[![PyPI version](https://badge.fury.io/py/pyodata.svg)](https://badge.fury.io/py/pyodata)\n[![codecov](https://codecov.io/gh/SAP/python-pyodata/branch/master/graph/badge.svg)](https://codecov.io/gh/SAP/python-pyodata)\n[![REUSE status](https://api.reuse.software/badge/github.com/SAP/python-pyodata)](https://api.reuse.software/info/github.com/SAP/python-pyodata)\n\n# Python OData Client - pyodata\n\nPython OData client which provides comfortable Python agnostic\nway for communication with OData services.\n\nThe goal of this Python module is to hide all OData protocol implementation\ndetails.\n\n## Supported features\n\n- OData V2\n\n## Requirements\n\n- [Python \u003e= 3.9](https://www.python.org/downloads/)\n\n## Download and Installation\n\nInstall and update using pip:\n\n```bash\npip install -U pyodata\n```\n\n## Configuration\n\nYou can start building your OData projects straight away after installing the\nPython module without any additional configuration steps needed.\n\n## Limitations\n\nThere have been no limitations discovered yet.\n\n## Known Issues\n\nThere are no known issues at this time.\n\n## How to obtain support\n\nWe accept bug reports, feature requests, questions and comments via [GitHub issues](https://github.com/SAP/python-pyodata/issues)\n\n## Usage\n\nThe only thing you need to do is to import the _pyodata_ Python module and\nprovide an object implementing interface compatible with [Session Object](https://2.python-requests.org/en/master/user/advanced/#session-objects)\nfor the library [Requests](https://2.python-requests.org/en/master/).\n\n```python\nimport requests\nimport pyodata\n\nSERVICE_URL = 'http://services.odata.org/V2/Northwind/Northwind.svc/'\n\n# Create instance of OData client\nclient = pyodata.Client(SERVICE_URL, requests.Session())\n```\n\nFind more sophisticated examples in [The User Guide](docs/usage/README.md).\n\n## Contributing\n\nPlease, go through [the Contributing guideline](CONTRIBUTING.md).\n\n### Authoring a patch\n\nHere's an example workflow for a project `PyOData` hosted on Github\nYour username is `yourname` and you're submitting a basic bugfix or feature.\n\n* Hit 'fork' on Github, creating e.g. `yourname/PyOData`.\n* `git clone git@github.com:yourname/PyOData`\n* `git checkout -b foo_the_bars` to create new local branch named foo_the_bars\n* Hack, hack, hack\n* Run `python3 -m pytest` or `make check`\n* `git status`\n* `git add`\n* `git commit -s -m \"Foo the bars\"`\n* `git push -u origin HEAD` to create foo_the_bars branch in your fork\n* Visit your fork at Github and click handy \"Pull request\" button.\n* In the description field, write down issue number (if submitting code fixing\n  an existing issue) or describe the issue + your fix (if submitting a wholly\n  new bugfix).\n* Hit 'submit'! And please be patient - the maintainers will get to you when\n  they can.\n\n## License\n\nCopyright (c) 2025 SAP SE or an SAP affiliate company. All rights reserved.\nThis file is licensed under the Apache Software License, v. 2 except as noted\notherwise in [the LICENSE file](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsap%2Fpython-pyodata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsap%2Fpython-pyodata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsap%2Fpython-pyodata/lists"}