Metadata-Version: 2.1
Name: genshinhelper
Version: 1.2.2
Summary: Automatically get Genshin Impact daily check-in rewards from miHoYo bbs and HoYoLAB Community.
Home-page: https://github.com/y1ndan/genshinhelper
Author: yindan
Author-email: y1nd4n@outlook.com
License: GPLv3
Keywords: 原神 签到 mihoyo hoyolab genshin genshin-impact check-in weibo
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Systems Administration
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

English | [简体中文](https://www.yindan.me/tutorial/genshin-impact-helper.html)

<div align="center"> 
<h1>genshinhelper</h1>
<p>Automatically get Genshin Impact daily check-in rewards.</p>

[![GitHub stars](https://img.shields.io/github/stars/y1ndan/genshinhelper?style=flat-square)](https://github.com/y1ndan/genshinhelper/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/y1ndan/genshinhelper?style=flat-square)](https://github.com/y1ndan/genshinhelper/network)
[![GitHub issues](https://img.shields.io/github/issues/y1ndan/genshinhelper?style=flat-square)](https://github.com/y1ndan/genshinhelper/issues)
[![Docker stars](https://img.shields.io/docker/stars/yindan/genshinhelper?style=flat-square)](https://registry.hub.docker.com/r/yindan/genshinhelper)
![Docker pulls](https://img.shields.io/docker/pulls/yindan/genshinhelper?style=flat-square)
[![PyPI version](https://img.shields.io/pypi/v/genshinhelper?style=flat-square)](https://pypi.org/project/genshinhelper/#history)
[![PyPI downloads](https://img.shields.io/pypi/dm/genshinhelper?style=flat-square)](https://pypi.org/project/genshinhelper)
[![QQ Group](https://img.shields.io/badge/chat-130516740-0d86d7?style=flat-square)](https://qm.qq.com/cgi-bin/qm/qr?k=_M9lYFxkYD7yQQR2btyG3pkZWFys_I-l)
[![Discord](https://img.shields.io/badge/chat-discord-0d86d7?style=flat-square)](https://discord.gg/p28845gGfv)
[![Telegram](https://img.shields.io/badge/chat-telegram-0d86d7?style=flat-square)](https://t.me/genshinhelper)

```

░█▀▀▀░█▀▀░█▀▀▄░█▀▀░█░░░░░▀░░█▀▀▄░█░░░░█▀▀░█░░▄▀▀▄░█▀▀░█▀▀▄
░█░▀▄░█▀▀░█░▒█░▀▀▄░█▀▀█░░█▀░█░▒█░█▀▀█░█▀▀░█░░█▄▄█░█▀▀░█▄▄▀
░▀▀▀▀░▀▀▀░▀░░▀░▀▀▀░▀░░▀░▀▀▀░▀░░▀░▀░░▀░▀▀▀░▀▀░█░░░░▀▀▀░▀░▀▀

```

</div>

## Table of Contents

- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
    * [Docker](#docker)
    * [PyPI Package](#pypi-package)
    * [Serverless](#serverless)
        + [Tencent Cloud SCF](#tencent-cloud-scf)
        + [Alibaba Cloud FC](#alibaba-cloud-fc)
        + [AWS Lambda](#aws-lambda)
- [Configuration](#configuration)
    * [Environment Variables](#environment-variables)
    * [Configuration file](#configuration-file)
    * [Multiple accounts](#multiple-accounts)
- [Contributing](#contributing)
- [Help and Support](#help-and-support)
- [Acknowledgements](#acknowledgements)
- [License](#license)

`If this project is helpful to you, please give us a ⭐️Star QAQ ♥`

## Features

- [x] **miHoYo BBS Genshin Impact daily check-in**
- [x] **HoYoLAB Community Genshin Impact daily check-in**
- [x] **Weibo super topic daily check-in**
- [x] **Support subscription push**
- [x] **Support multiple accounts**
- [x] **Support multiple roles (CN Server)**

## Installation

This project uses [Docker](https://www.docker.com/) or [Python3](https://www.python.org/). Go check it out if you don't have one of them locally installed.

- Docker

You can use the following command to pull the image:

```sh
$ docker pull yindan/genshinhelper
```

This pulls the latest release of `genshinhelper`.

It can be found at [Docker Hub](https://registry.hub.docker.com/r/yindan/genshinhelper/).

- PyPI Package

You can also use the [pypi package](https://pypi.org/project/genshinhelper/):

```sh
$ pip install genshinhelper
```

## Usage

### Docker

In the following commands, `COOKIE_MIHOYOBBS` is the variable name and `<COOKIE_MIHOYOBBS>` is your `COOKIE_MIHOYOBBS` value. The same goes for `DISCORD_WEBHOOK` and so on.

You can find all the environment variables used in this project in the [Configuration](#configuration) section.

- Basic usage

```sh
$ docker run -d --name=genshinhelper \
-e COOKIE_MIHOYOBBS="<COOKIE_MIHOYOBBS>" \
-e DISCORD_WEBHOOK="<DISCORD_WEBHOOK>" \
--restart always \
yindan/genshinhelper:latest
```

- Advanced usage

Docker triggers tasks at `6:00` (UTC+8) every day by default. Use the `CRON_SIGNIN` variable to customize the trigger time.

> Tips: Trigger time according to UTC+8

```sh
$ docker run -d --name=genshinhelper \
-e COOKIE_MIHOYOBBS="<COOKIE_MIHOYOBBS>" \
-e DISCORD_WEBHOOK="<DISCORD_WEBHOOK>" \
-e CRON_SIGNIN="0 7 * * *" \
--restart always \
yindan/genshinhelper:latest
```

If you want to use the `config.json` configuration file, use the following command to map the relevant folder.

Assuming your configuration file is located at `/etc/genshin/config.json`.

```sh
$ docker run -d --name=genshinhelper \
-v /etc/genshin:/app/genshinhelper/config \
--restart always \
yindan/genshinhelper:latest
```

- Useful commands

```
# Logs
$ docker logs -f genshinhelper --tail 100

# Restart
$ docker restart genshinhelper

# Update
$ docker pull yindan/genshinhelper
$ docker rm -f genshinhelper
# Re-create the container with the latest image according to basic usage or Advanced usage.

# Uninstall
$ docker rm -f genshinhelper
$ docker image rm genshinhelper
```

### PyPI Package

You **must add environment variables** in host at first. See [Configuration](#configuration) for more details.

The following command assume that you have already added the environment variables.

```sh
$ python -m genshinhelper
```

### Serverless

If you don't have a host, you can try using serverless deployment. It can help you to automatically check-in every day.

You need to download the latest `genshinhelper-xxx-serverless.zip` serverless zip file at first. The entry point of the zip file is `index.main_handler`.

#### Tencent Cloud SCF

> Tips: Cron expressions are 7 digits

[International](https://intl.cloud.tencent.com/product/scf) | [中国站](https://cloud.tencent.com/product/scf)

- Go to [云函数 SCF 管理控制台](https://console.cloud.tencent.com/scf/) → `函数服务` → `新建` → `自定义创建` → `基础配置` → `本地上传zip包` → `上传` → `本地上传zip包` → Select the downloaded file `genshinhelper-xxx-serverless.zip`
  → `完成`

![SCF_upload](https://i.loli.net/2021/04/27/2gHPKxcsqbwhMTN.png)

- Go to `genshinhelper` → `函数管理` → `函数配置` → `编辑`

![SCF_edit](https://i.loli.net/2021/04/27/5uo7nx3zMBhUbXg.png)

- Modify `执行超时时间` to `300` seconds and add environment variables in `环境变量`. The list of environment variables can be found in the [Configuration](#configuration) section.

![SCF_add_environment_variables](https://i.loli.net/2021/04/27/nTrm8GdFVXl9xsI.png)

- Go to `genshinhelper` → `触发管理` → `新建触发器` → Configure as shown below:

![SCF_Triggers](https://i.loli.net/2021/04/27/9yxvGT73itAHRqC.png)

#### Alibaba Cloud FC

> Tips: Cron expressions are 6 digits

[International](https://www.alibabacloud.com/zh/product/function-compute) | [中国站](https://cn.aliyun.com/product/fc)

- Go to [函数计算 FC 管理控制台](https://fc.console.aliyun.com/fc/) → `新建函数` → `事件函数` → `代码包上传` → `上传代码` → Select the downloaded file `genshinhelper-xxx-serverless.zip` → Configure as shown below. Note that
  the entry point is `index.main_handler` → `新建`

![FC_upload](https://i.loli.net/2021/04/27/NyW1EGML4cHgo6Z.png)

- Go to `genshinhelper` → `概览` → `修改配置`

![FC_edit](https://i.loli.net/2021/04/27/1x2kbsVjMUXlwRv.png)

- Scroll down and find `环境变量` to add environment variables. The list of environment variables can be found in the [Configuration](#configuration) section.

![FC_add_environment_variables](https://i.loli.net/2021/04/27/e7GTEumrIh5q3Kt.png)

- Go to `genshinhelper` → `触发器` → `创建触发器` → Configure as shown below:

![FC_Triggers](https://i.loli.net/2021/04/27/5Oj2acDs3VCture.png)

#### AWS Lambda

> Tips: About AWS cron expressions, check out [here](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html).

- Go to [AWS Lambda](https://aws.amazon.com/lambda/) → Sign In to the Console → Choose a region (Singapore for example)

![AWS_console](https://i.loli.net/2021/05/26/kbBxgRPmF8XOecs.png)

- Click `All services` → `Lambda`
- In the left, `Functions` → `Create function`
- Choose `Author from scratch` / Function name: *yourAwesomeFunctionName* / **Runtime: Python 3.8** → `Create function`

![Lambda_Create_Function](https://i.loli.net/2021/05/26/rGQVH8usTtIO6S1.png)

- In function dashboard, `Code` → `Upload from` → `.zip file` → Select the downloaded file `genshinhelper-xxx-serverless.zip` → `Save`

![Upload_Function](https://i.loli.net/2021/05/26/hkrJ1iyFQERdqbp.png)

- Scroll down, edit runtime settings. Change the original `lambda_function.lambda_handler` in `Handler` section to `index.main_handler` → `Save`

![RuntimeSettings](https://i.loli.net/2021/05/26/qHwotxNWTaXVCyu.png)

- Back to Function overview, click `Add trigger` → search / choose `EventBridge` → Configue as shown below

![EventBridge_Conifg](https://i.loli.net/2021/05/26/wjduP1vM2bxUz6f.png)

- Function dashboard → `Configuration` → `General configuration` → `Edit` → Timeout change to `5 min 0 sec`

![GeneralSettings](https://i.loli.net/2021/05/26/ksYzJrd8LRDEFen.png)

- `Configuration` → `Environment variables` → `Edit` → `Add environment variable`

![EnvironmentVariables](https://i.loli.net/2021/05/26/oxta4eNdci1FMEs.png)

## Configuration

The project has two ways of using custom configurations.

### Environment Variables

You can write your configuration directly into the environment variables.

The following table lists all the environment variables used in this project:

<details>
<summary>Click here</summary>

| **Variable Name** | **Required** | **Default**        | **Description**                                                                                                                   |
|-------------------|:------------:|:------------------:|-----------------------------------------------------------------------------------------------------------------------------------|
| LANGUAGE          | ❌            | en-us              | Rewards language for HoYoLAB daily check-in.                                                                                      |
| COOKIE_MIHOYOBBS  | ❌            |                    | Cookie from miHoYo bbs. https://bbs.mihoyo.com/ys/                                                                                |
| COOKIE_MIYOUBI    | ❌            |                    | Cookie from miHoYo bbs. https://bbs.mihoyo.com/ys/                                                                                |
| COOKIE_HOYOLAB    | ❌            |                    | Cookie from HoYoLAB community. https://webstatic-sea.mihoyo.com/ys/event/signin-sea/index.html?act_id=e202102251931481&lang=en-us |
| COOKIE_WEIBO      | ❌            |                    | Cookie from Weibo intl app.                                                                                                       |
| COOKIE_KA         | ❌            |                    | Cookie from https://ka.sina.com.cn/                                                                                               |
| BARK_KEY          | ❌            |                    | iOS Bark app's IP or device code. For example: https://api.day.app/xxxxxx                                                         |
| BARK_SOUND        | ❌            | healthnotification | iOS Bark app's notification sound. Default: healthnotification                                                                    |
| COOL_PUSH_SKEY    | ❌            |                    | SKEY for Cool Push. https://cp.xuthus.cc/                                                                                         |
| COOL_PUSH_MODE    | ❌            | send               | Push method for Cool Push. Choose from send(私聊),group(群组),wx(微信). Default: send                                                |
| CRON_SIGNIN       | ❌            | 0 6 * * *          | Docker custom runtime                                                                                                             |
| CUSTOM_NOTIFIER   | ❌            |                    | Custom notifier configuration                                                                                                     |
| DD_BOT_TOKEN      | ❌            |                    | 钉钉机器人WebHook地址中access_token后的字段.                                                                                           |
| DD_BOT_SECRET     | ❌            |                    | 钉钉加签密钥.在机器人安全设置页面,加签一栏下面显示的以SEC开头的字符串.                                                                         |
| DISCORD_WEBHOOK   | ❌            |                    | Webhook of Discord.                                                                                                               |
| IGOT_KEY          | ❌            |                    | KEY for iGot. For example: https://push.hellyw.com/xxxxxx                                                                         |
| PUSH_PLUS_TOKEN   | ❌            | 一对一推送              | pushplus 一对一推送或一对多推送的token.不配置push_plus_user则默认为一对一推送. https://www.pushplus.plus/doc/                            |
| PUSH_PLUS_USER    | ❌            |                    | pushplus 一对多推送的群组编码.在'一对多推送'->'您的群组'(如无则新建)->'群组编码'里查看,如果是创建群组人,也需点击'查看二维码'扫描绑定,否则不能接收群组消息.  |
| SCKEY             | ❌            |                    | SCKEY for ServerChan. https://sc.ftqq.com/3.version/                                                                              |
| SCTKEY            | ❌            |                    | SENDKEY for ServerChanTurbo. https://sct.ftqq.com/                                                                                |
| TG_BOT_API        | ❌            | api.telegram.org   | Telegram robot api address. Default: api.telegram.org                                                                             |
| TG_BOT_TOKEN      | ❌            |                    | Telegram robot token. Generated when requesting a bot from @botfather                                                             |
| TG_USER_ID        | ❌            |                    | User ID of the Telegram push target.                                                                                              |
| WW_ID             | ❌            |                    | 企业微信的企业ID(corpid).在'管理后台'->'我的企业'->'企业信息'里查看. https://work.weixin.qq.com/api/doc/90000/90135/90236                   |
| WW_APP_SECRET     | ❌            |                    | 企业微信应用的secret.在'管理后台'->'应用与小程序'->'应用'->'自建',点进某应用里查看.                                                            |
| WW_APP_USERID     | ❌            | @all               | 企业微信应用推送对象的用户ID.在'管理后台'->' 通讯录',点进某用户的详情页里查看.默认: @all                                                         |
| WW_APP_AGENTID    | ❌            |                    | 企业微信应用的agentid.在'管理后台'->'应用与小程序'->'应用',点进某应用里查看.                                                                  |
| WW_BOT_KEY        | ❌            |                    | 企业微信机器人WebHook地址中key后的字段. https://work.weixin.qq.com/api/doc/90000/90136/91770                                            |

</details>

### Configuration file

It is recommended to copy and rename `config.example.json` to `config.json` before use the configuration file.

A `config.example.json` in JSON like below:

<details>
<summary>Click here</summary>

```json
{
  "LANGUAGE": "en-us",
  "COOKIE_MIHOYOBBS": "",
  "COOKIE_MIYOUBI": "",
  "COOKIE_HOYOLAB": "",
  "COOKIE_WEIBO": "",
  "COOKIE_KA": "",
  "BARK_KEY": "",
  "BARK_SOUND": "healthnotification",
  "COOL_PUSH_SKEY": "",
  "COOL_PUSH_MODE": "send",
  "CUSTOM_NOTIFIER": {
    "method": "post",
    "url": "",
    "data": {
    },
    "retcode_key": "",
    "retcode_value": 200,
    "data_type": "data",
    "merge_title_and_desp": false,
    "set_data_title": "",
    "set_data_sub_title": "",
    "set_data_desp": ""
  },
  "DD_BOT_TOKEN": "",
  "DD_BOT_SECRET": "",
  "DISCORD_WEBHOOK": "",
  "IGOT_KEY": "",
  "PUSH_PLUS_TOKEN": "",
  "PUSH_PLUS_USER": "",
  "SCKEY": "",
  "SCTKEY": "",
  "TG_BOT_API": "api.telegram.org",
  "TG_BOT_TOKEN": "",
  "TG_USER_ID": "",
  "WW_ID": "",
  "WW_APP_SECRET": "",
  "WW_APP_USERID": "@all",
  "WW_APP_AGENTID": "",
  "WW_BOT_KEY": ""
}
```

</details>

### Multiple accounts

Multiple account cookies need to be separated by "#" symbol. e.g. `COOKIE_MIHOYOBBS="<cookie1>#<cookie2>#<cookie3>"`

## Contributing

Feel free to dive in! Open an [issue](https://github.com/y1ndan/genshinhelper/issues) or submit PRs.

## Help and Support

Please join our chat groups for help and support.

[QQ Group](https://qm.qq.com/cgi-bin/qm/qr?k=_M9lYFxkYD7yQQR2btyG3pkZWFys_I-l) |
[Discord](https://discord.gg/p28845gGfv) |
[Telegram](https://t.me/genshinhelper)

## Acknowledgements

The idea for the miyoubi feature is inspired by XiaoMiku01's project [miyoubiAuto](https://github.com/XiaoMiku01/miyoubiAuto).

Huge thanks to the contributors of the [y1ndan/genshin-impact-helper](https://github.com/y1ndan/genshin-impact-helper) project:

- PomeloWang
- Celeter
- Arondight
- chenkid999
- xe5700
- Renari
- journey-ad
- aflyhorse
- thesadru
- PeterPanZH
- cainiaowu
- alwaysmiddle
- qianxu2001

## License

![License](https://img.shields.io/pypi/l/genshinhelper?style=flat-square)




