Skip to main content

The `abstract_apis` module is designed to facilitate HTTP requests in Python applications, particularly those that require handling JSON data, dealing with custom API endpoints, and parsing complex nested JSON responses. The module simplifies request handling by abstracting away common tasks such as header management, URL construction, and response parsing.

Project description


Abstract APIs

The abstract_apis module is designed to facilitate HTTP requests in Python applications, particularly those that require handling JSON data, dealing with custom API endpoints, and parsing complex nested JSON responses. The module simplifies request handling by abstracting away common tasks such as header management, URL construction, and response parsing.

Features

  • Header Management: Automatically prepares headers suitable for JSON requests.
  • URL Construction: Helps in constructing URLs by cleanly appending endpoints to base URLs.
  • Nested JSON Parsing: Capable of parsing deeply nested JSON responses automatically to facilitate easy data extraction.
  • Flexible Response Handling: Offers functions to handle both raw and parsed JSON responses based on user preference.
  • Error Handling: Provides robust error reporting to aid in troubleshooting issues during HTTP requests.

Installation

This module is not yet available on PyPI. To install, you can clone the repository and install it manually:

git clone https://github.com/AbstractEndeavors/abstract_apis.git
cd abstract_apis
python setup.py install

Usage

Making a GET Request

from abstract_apis import getGetRequest

url = 'https://api.example.com'
endpoint = 'data'
params = {'key': 'value'}
response = getGetRequest(url, data=params, endpoint=endpoint)
print(response)

Making a POST Request

from abstract_apis import getPostRequest

url = 'https://api.example.com'
endpoint = 'submit'
data = {'key': 'value'}
response = getPostRequest(url, data=data, endpoint=endpoint)
print(response)

Handling Nested JSON

The module automatically parses nested JSON responses if enabled:

response = getGetRequest(url, data=params, endpoint=endpoint, load_nested_json=True)
print(response)

Dependencies

  • Python 3.6 or higher
  • requests library

Make sure you have the requests library installed:

pip install requests

Contributions

Contributions are welcome. Please fork the repository, make your changes, and submit a pull request on GitHub.

Contact

For any questions or to discuss potential partnerships, please email partners@abstractendeavors.com.

Contributions

Contributions are welcome! Please fork the repository on GitHub and submit a pull request with your changes.

License

This project is licensed under the MIT License - see the LICENSE.md file for details.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

abstract_apis-0.0.0.58.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

abstract_apis-0.0.0.58-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file abstract_apis-0.0.0.58.tar.gz.

File metadata

  • Download URL: abstract_apis-0.0.0.58.tar.gz
  • Upload date:
  • Size: 7.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for abstract_apis-0.0.0.58.tar.gz
Algorithm Hash digest
SHA256 9d5fb869d4debbec5c8fb39cb5cea61cd54d7cbf3e8142a57faf723ff64967ec
MD5 6d1c17dbac1b52e2626b30bde4dc0a2b
BLAKE2b-256 352f9e784d7792415fdb2856788e19aac30d06dba255abd1079c684d6677b817

See more details on using hashes here.

File details

Details for the file abstract_apis-0.0.0.58-py3-none-any.whl.

File metadata

File hashes

Hashes for abstract_apis-0.0.0.58-py3-none-any.whl
Algorithm Hash digest
SHA256 709e66bb87a7013926b6b5849f8aceb7a8823e60404e7d984d82a47a3a4a0bdc
MD5 49fa341569c17faee818e92d8f7c975c
BLAKE2b-256 149098f9d6018307c43b7e57b0f292d09ce613bee92f38ab3b001725a7510b16

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page