Metadata-Version: 2.1
Name: facebookrequests
Version: 0.0.1
Summary: A Python package for handling API interactions with Facebook, utilizing the Python requests package.
Home-page: https://your.package.url
Author: Dan Norwood
Author-email: norwood.dan@gmail.com
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# facebookrequests

A Python package for handling API interactions with Facebook, utilizing the Python requests package.
FacebookRequests is a Python package designed for interacting with the Facebook API. It simplifies the process of making requests to the Facebook API by handling authentication and providing a streamlined interface for sending requests.

## Features

- Easy-to-use client class for the Facebook API.
- Automatic handling of access tokens for authentication.
- Methods for simplifying the process of sending requests to various endpoints of the Facebook API.

## Installation

To install FacebookRequests, simply clone this repository and install the package using pip.

```bash
git clone https://your-repository-url/facebookrequests.git
cd facebookrequests
pip install .
```

## Usage

To use FacebookRequests, you need to have a valid Facebook API access token. Initialize the client with your access token and use it to make requests to the Facebook API.

```python
from facebookrequests import Client

# Initialize the client with your Facebook API access token
client = Client("your_access_token")

# Example usage
response = client.request("GET", "endpoint_url")
```

## Dependencies

requests: For making HTTP requests.
Pillow: For image processing (if applicable).

## License

This project is licensed under the MIT License.
