Skip to content

Commit

Permalink
docs: Add remark
Browse files Browse the repository at this point in the history
  • Loading branch information
Job Tiel Groenestege committed Sep 26, 2023
1 parent 34315be commit 42e1113
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# python-odata for Business Central
**REMARK** This fork does not promise anything beyond that it will work with the Business Central API

It does enforce all other Growy coding standards (configured in pre-commit) - so, code might look a bit different.

# python-odata


A simple library for read/write access to OData services.

- Supports OData version 4.0
Expand Down Expand Up @@ -52,7 +58,7 @@ query = Service.query(Order)
query = query.filter(Order.ShipCity == 'Berlin')

for order in query:
order.ShippedDate = datetime.datetime.utcnow()
order.ShippedDate = datetime.datetime.utcnow()
order.Employee = empl
Service.save(order)
```

0 comments on commit 42e1113

Please sign in to comment.