Metadata-Version: 2.1
Name: astro-ph
Version: 0.2.4
Summary: Translate and post arXiv articles to various apps
Home-page: https://github.com/astropenguin/astro-ph/
License: MIT
Author: Akio Taniguchi
Author-email: taniguchi@a.phys.nagoya-u.ac.jp
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiohttp (>=3.7,<4.0)
Requires-Dist: feedparser (>=6.0,<7.0)
Requires-Dist: fire (>=0.4,<0.5)
Requires-Dist: pyppeteer (>=0.2,<0.3)
Requires-Dist: typing-extensions (>=3.7,<4.0)
Project-URL: Documentation, https://astropenguin.github.io/astro-ph/
Description-Content-Type: text/markdown

# astro-ph

[![PyPI](https://img.shields.io/pypi/v/astro-ph.svg?label=PyPI&style=flat-square)](https://pypi.org/project/astro-ph/)
[![Python](https://img.shields.io/pypi/pyversions/astro-ph.svg?label=Python&color=yellow&style=flat-square)](https://pypi.org/project/astro-ph/)
[![Test](https://img.shields.io/github/workflow/status/astropenguin/astro-ph/Test?logo=github&label=Test&style=flat-square)](https://github.com/astropenguin/astro-ph/actions)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?label=License&style=flat-square)](LICENSE)

Translate and post arXiv articles to various apps

## Installation

Use pip or other package manager to install the Python package.

```shell
$ pip install astro-ph
```

## Usage

After installation, command line interface, `astro-ph`, is available, with which you can translate and post arXiv articles to various apps.
Note that only `slack` app is currently available.
In this case, you need to [create a custom Slack app to get an URL of incoming webhook](https://slack.com/help/articles/115005265063-Incoming-webhooks-for-Slack).

```shell
$ astro-ph slack --keywords galaxy,galaxies \
                 --categories astro-ph.GA,astro-ph.IM \
                 --lang_to ja \
                 --webhook_url https://hooks.slack.com/services/***/***
```

The posted article looks like this.

![astro-ph-slack.png](https://raw.githubusercontent.com/astropenguin/astro-ph/master/docs/_static/astro-ph-slack.png)

For detailed information, see the built-in help by the following command.

```shell
$ astro-ph slack --help
```

## Example

It would be nice to regularly run the command by GitHub Actions.
Here is a live example in which daily (2 days ago) arXiv articles in [astro-ph.GA](https://arxiv.org/list/astro-ph.GA/new) and [astro-ph.IM](https://arxiv.org/list/astro-ph.IM/new) are posted to different channels of a Slack workspace.

- [a-lab-nagoya/astro-ph-slack: Translate and post arXiv articles to Slack](https://github.com/a-lab-nagoya/astro-ph-slack)

## References

- [fkubota/Carrier-Owl: arxiv--> DeepL --> Slack](https://github.com/fkubota/Carrier-Owl)
    - The astro-ph package is highly inspired by their work
- [a-lab-nagoya/astro-ph-slack: Translate and post arXiv articles to Slack](https://github.com/a-lab-nagoya/astro-ph-slack)
    - A live example using the astro-ph package
- [pyppeteer/pyppeteer: Headless chrome/chromium automation library (unofficial port of puppeteer)](https://github.com/pyppeteer/pyppeteer)
    - Used for async Chromium operation
- [aio-libs/aiohttp: Asynchronous HTTP client/server framework for asyncio and Python](https://github.com/aio-libs/aiohttp)
    - Used for async article posts to Slack
- [google/python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.](https://github.com/google/python-fire)
    - Used for creating command line interface

