├── .github └── workflows │ └── codecov.yml ├── .gitignore ├── .streamlit └── config.toml ├── LICENSE ├── README.md ├── app.py ├── assets ├── newsapi-connector-app-2023-08-03.mp4 └── st-newsapi-connector.png ├── pyproject.toml ├── requirements.txt ├── st_newsapi_connector ├── __init__.py └── connection.py └── tests ├── __init__.py └── test_connection.py /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/app.py -------------------------------------------------------------------------------- /assets/newsapi-connector-app-2023-08-03.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/assets/newsapi-connector-app-2023-08-03.mp4 -------------------------------------------------------------------------------- /assets/st-newsapi-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/assets/st-newsapi-connector.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/requirements.txt -------------------------------------------------------------------------------- /st_newsapi_connector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /st_newsapi_connector/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/st_newsapi_connector/connection.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarpintero/st-newsapi-connector/HEAD/tests/test_connection.py --------------------------------------------------------------------------------