Metadata-Version: 2.1
Name: influxdispatcher
Version: 1.0.0
Summary: A simple asynchronous/non-asynchronous package for sending requests
Home-page: UNKNOWN
Author: Jake Strouse
Author-email: jstrouse@meh.llc
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: loguru
Requires-Dist: requests
Requires-Dist: aiohttp

# InfluxDispatcher

A simple asynchronous/non-asynchronous package for sending requests. I made this because I
was tired of using a bunch of try/except statements in my code when sending requests to my apis.
This package will attempt to send requests twice. It returns the response object and a boolean indicating whether the request
was successful or not. The format for the response is a tuple of the following (response_from_request, boolean)

