Metadata-Version: 2.1
Name: aew
Version: 0.0.5
Summary: An unofficial basic parser for blog posts on https://allelitewrestling.com.
Author-email: csm10495 <csm10495@gmail.com>
License: MIT License
Project-URL: homepage, http://github.com/csm10495/aew
Project-URL: repository, http://github.com/csm10495/aew
Project-URL: documentation, https://csm10495.github.io/aew
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: requests (>=2.27)
Requires-Dist: beautifulsoup4
Requires-Dist: python-dateutil

# AEW

An unofficial basic parser for blog posts on https://allelitewrestling.com.

If they change how the pages load.. this will stop working.

## Example Usage

```
In [1]: from aew import AEW

In [2]: a = AEW()

In [3]: posts = a.get_posts()

In [4]: print(posts[0])
Post(url='https://www.allelitewrestling.com/post/best-of-aew-dynamite-for-july-5-2023', title='Best of AEW Dynamite for July 5, 2023', image_url='https://static.wixstatic.com/media/815952_0d4b056ce8504b21baa6d6982641943e~mv2.jpg/v1/fill/w_1920,h_1080,fp_0.50_0.50,q_90,enc_auto/815952_0d4b056ce8504b21baa6d6982641943e~mv2.jpg', aew=<aew.AEW object at 0x000001D93DFF4C10>)

In [5]: posts[0].date
Out[5]: datetime.date(2023, 7, 5)

```
