Metadata-Version: 2.1
Name: Fuse-Con
Version: 1.0.0
Summary: Fuse is a content aggregation CLI tool written in Python
Home-page: https://github.com/Eliran-Turgeman/Fuse
Author: Eliran Turgeman
Author-email: email@example.com
License: MIT
Keywords: Fuse aggregation
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: feedparser (==6.0.8)
Requires-Dist: praw (==6.4.0)
Requires-Dist: colorama (==0.4.4)
Requires-Dist: pytest
Requires-Dist: pytest-mock (==3.7.0)
Requires-Dist: requests

# Fuse
![](https://img.shields.io/github/downloads/eliran-turgeman/fuse/total)

Fuse is a content aggregation CLI tool written in Python.

Currently supports Reddit and Medium as sources.

# Installation
`pip install Fuse-Con`

View PyPi project at https://pypi.org/project/Fuse-Con/

# Basic Usage
`python ./src/main.py --reddit --sub programming --hot --limit 3`
* Note: To use reddit as a source you need to generate a key for Reddit's API, follow this guide on [reddit's github](https://github.com/reddit-archive/reddit/wiki/OAuth2-Quick-Start-Example#first-steps) and then set `REDDIT_CLIENT_ID` and `REDDIT_CLIENT_SECRET` as environment variables or pass these keys through the CLI with the arguments `reddit_id` and `reddit_secret`.

![Capture](https://user-images.githubusercontent.com/50831652/167022584-efdd95c6-0d78-463a-a468-dc08dd7989ae.JPG)

`python ./src/main.py --medium --tag programming`

![Capture](https://user-images.githubusercontent.com/50831652/167022796-ac13ad37-dd1a-4c74-b0dc-0c04bfa923fd.JPG)

Note: limit is 10 by default.



