Metadata-Version: 2.1
Name: fishbowlpy
Version: 0.0.5
Summary: Python package to interact with fishbowlapp.
Home-page: https://github.com/mukulbindal/fishbowlpy
Author: Mukul Bindal
Author-email: mukulbindal170299@gmail.com
Project-URL: Bug Tracker, https://github.com/mukulbindal/fishbowlpy/issues
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
Requires-Dist: attrs ==23.2.0
Requires-Dist: build ==1.0.3
Requires-Dist: certifi ==2023.11.17
Requires-Dist: cffi ==1.16.0
Requires-Dist: charset-normalizer ==3.3.2
Requires-Dist: colorama ==0.4.6
Requires-Dist: docutils ==0.20.1
Requires-Dist: h11 ==0.14.0
Requires-Dist: idna ==3.6
Requires-Dist: importlib-metadata ==7.0.1
Requires-Dist: jaraco.classes ==3.3.0
Requires-Dist: keyring ==24.3.0
Requires-Dist: markdown-it-py ==3.0.0
Requires-Dist: mdurl ==0.1.2
Requires-Dist: more-itertools ==10.2.0
Requires-Dist: nh3 ==0.2.15
Requires-Dist: outcome ==1.3.0.post0
Requires-Dist: packaging ==23.2
Requires-Dist: pkginfo ==1.9.6
Requires-Dist: pycparser ==2.21
Requires-Dist: Pygments ==2.17.2
Requires-Dist: pyproject-hooks ==1.0.0
Requires-Dist: PySocks ==1.7.1
Requires-Dist: python-dotenv ==1.0.0
Requires-Dist: pywin32-ctypes ==0.2.2
Requires-Dist: readme-renderer ==42.0
Requires-Dist: requests ==2.31.0
Requires-Dist: requests-toolbelt ==1.0.0
Requires-Dist: rfc3986 ==2.0.0
Requires-Dist: rich ==13.7.0
Requires-Dist: selenium ==4.16.0
Requires-Dist: setuptools ==69.0.3
Requires-Dist: sniffio ==1.3.0
Requires-Dist: sortedcontainers ==2.4.0
Requires-Dist: trio ==0.24.0
Requires-Dist: trio-websocket ==0.11.1
Requires-Dist: twine ==4.0.2
Requires-Dist: urllib3 ==2.1.0
Requires-Dist: webdriver-manager ==4.0.1
Requires-Dist: wsproto ==1.2.0
Requires-Dist: zipp ==3.17.0

# fishbowlpy

A python library to interact with fishbowlapp. This library provides a simple interface to login, access bowls, posts and comments in our fishbowlapp feed.

## Prerequisites

Before you continue, make sure you have python 3.6 or higher installed in your machine.

## Installation

This package is available on pypi.org
Make sure you have pip installed in your system

```
pip install fishbowlpy
```

## Usage

Below is the bare minimum code to use this package. Full documentation can be accessed here.

```
from fishbowlpy.fishbowlclient import FishBowlClient

# Initialize the fishbowl client
client = FishBowlClient()

# Access posts in the subscribed bowl
posts = client.get_posts('tech-india')

print(posts)
```

## Contributions

You can contribute to this package. Check out the issues tab and pick up any issue you want to work with. If you have any new feature in mind, feel free to create one issue before creating a pull request. Please make sure to follow our contribution guidelines before creating a pull request.

## Contributors

Below are the contributors for this library.
Mukul Bindal

## License

MIT License

## Contact Information

In case you have any questions, suggestion, feel free to contact me at mukulbindal170299@gmail.com
