Metadata-Version: 2.1
Name: decisionrulespy
Version: 1.4.1
Summary: A simple library for simple connecting to DecisionRules API
Home-page: https://github.com/decisionrules/decisionrulespy
Author: DecisionRules
Author-email: sales@decisionrules.io
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/decisionrules/decisionrulespy/issues
Project-URL: Docs, https://docs.decisionrules.io/docs/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# DecisionRulespy

Simple async python library that allows you to easily connect to [Decisionrules.io](https://decisionrules.io) from your python application.

# Where do I get api key?

You can create your API key here: https://app.decisionrules.io/api-keys

# Init arguments

* apiKey - apikey (string)
* GeoLocation - enum of possible [geoLocations](https://docs.decisionrules.io/docs/api/geo-location) (optional argument)
* uri - custom uri for on promise version of DecisionRules (can be omitted)

# Arguments

* ruleId - id of the rule from dashboard (string)
* data - request object. Omit data object. f.e {data:{myreq: something}} - WRONG, {myreq: something} - GOOD 
* SolverStrategy - enum of possible [solver strategies](https://docs.decisionrules.io/docs/other/execution-strategy)
* version - version of the rule. optional argument

If you omit version then you will automaticaly get result of your latest version deployed on DecisionRules dashboard.

If you omit geo location your request will be computed on default server in Europe.

We offer these geoLocs:

- eu1: Ireland
- eu2: Sweden
- us1: Virginia
- us2: North California

# Simple usage demo

````python
import decisionrules
import asyncio

apikey = "API_KEY_HERE"
geoLoc = decisionrules.enums.GeoLocations.US2
solver_strategy = decisionrules.SolverStrategies.STANDARD
uri = "My custom uri for my server"

decisionrules.init(apikey, geoLoc, uri)

data = {"day": "today"}


async def get_result(request):
    result = await decisionrules.solver("RULE_ID_HERE", request, solver_strategy)
    print(result[0]["result"])


loop = asyncio.get_event_loop()

loop.run_until_complete(get_result(data))
````

# Dependencies

[Requests](https://pypi.org/project/requests/)


