Top 0.5% dependent packages on proxy.golang.org
Top 0.7% dependent repos on proxy.golang.org
Top 2.0% docker downloads on proxy.golang.org
proxy.golang.org : github.com/fumiama/cron
Package cron implements a cron spec parser and job runner. To download the specific tagged release, run: Import it in your program as: It requires Go 1.11 or later due to usage of Go Modules. Callers may register Funcs to be invoked on a given schedule. Cron will run them in their own goroutines. A cron expression represents a set of times, using 5 space-separated fields. Month and Day-of-week field values are case insensitive. "SUN", "Sun", and "sun" are equally accepted. The specific interpretation of the format is based on the Cron Wikipedia page: https://en.wikipedia.org/wiki/Cron Alternative Cron expression formats support other fields like seconds. You can implement that by creating a custom Parser as follows. Since adding Seconds is the most common modification to the standard cron spec, cron provides a builtin function to do that, which is equivalent to the custom parser you saw earlier, except that its seconds field is REQUIRED: That emulates Quartz, the most popular alternative Cron schedule format: http://www.quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger.html Asterisk ( * ) The asterisk indicates that the cron expression will match for all values of the field; e.g., using an asterisk in the 5th field (month) would indicate every month. Slash ( / ) Slashes are used to describe increments of ranges. For example 3-59/15 in the 1st field (minutes) would indicate the 3rd minute of the hour and every 15 minutes thereafter. The form "*\/..." is equivalent to the form "first-last/...", that is, an increment over the largest possible range of the field. The form "N/..." is accepted as meaning "N-MAX/...", that is, starting at N, use the increment until the end of that specific range. It does not wrap around. Comma ( , ) Commas are used to separate items of a list. For example, using "MON,WED,FRI" in the 5th field (day of week) would mean Mondays, Wednesdays and Fridays. Hyphen ( - ) Hyphens are used to define ranges. For example, 9-17 would indicate every hour between 9am and 5pm inclusive. Question mark ( ? ) Question mark may be used instead of '*' for leaving either day-of-month or day-of-week blank. 'L' stands for "last". When used in the day-of-month field, it specifies the last day of the month. You may use one of several pre-defined schedules in place of a cron expression. You may also schedule a job to execute at fixed intervals, starting at the time it's added or cron is run. This is supported by formatting the cron spec like this: where "duration" is a string accepted by time.ParseDuration (http://golang.org/pkg/time/#ParseDuration). For example, "@every 1h30m10s" would indicate a schedule that activates after 1 hour, 30 minutes, 10 seconds, and then every interval after that. Note: The interval does not take the job runtime into account. For example, if a job takes 3 minutes to run, and it is scheduled to run every 5 minutes, it will have only 2 minutes of idle time between each run. By default, all interpretation and scheduling is done in the machine's local time zone (time.Local). You can specify a different time zone on construction: Individual cron schedules may also override the time zone they are to be interpreted in by providing an additional space-separated field at the beginning of the cron spec, of the form "CRON_TZ=Asia/Tokyo". For example: The prefix "TZ=(TIME ZONE)" is also supported for legacy compatibility. Be aware that jobs scheduled during daylight-savings leap-ahead transitions will not be run! A Cron runner may be configured with a chain of job wrappers to add cross-cutting functionality to all submitted jobs. For example, they may be used to achieve the following effects: Install wrappers for all jobs added to a cron using the `cron.WithChain` option: Install wrappers for individual jobs by explicitly wrapping them: Since the Cron service runs concurrently with the calling code, some amount of care must be taken to ensure proper synchronization. All cron methods are designed to be correctly synchronized as long as the caller ensures that invocations have a clear happens-before ordering between them. Cron defines a Logger interface that is a subset of the one defined in github.com/go-logr/logr. It has two logging levels (Info and Error), and parameters are key/value pairs. This makes it possible for cron logging to plug into structured logging systems. An adapter, [Verbose]PrintfLogger, is provided to wrap the standard library *log.Logger. For additional insight into Cron operations, verbose logging may be activated which will record job runs, scheduling decisions, and added or removed jobs. Activate it with a one-off logger as follows: Cron entries are stored in an array, sorted by their next activation time. Cron sleeps until the next job is due to be run. Upon waking:
Registry
-
Source
- Documentation
- JSON
- codemeta.json
purl: pkg:golang/github.com/fumiama/cron
License: MIT
Latest release: about 4 years ago
First release: almost 12 years ago
Namespace: github.com/fumiama
Dependent packages: 113
Dependent repositories: 60
Stars: 0 on GitHub
Forks: 0 on GitHub
Docker dependents: 1
Docker downloads: 7
See more repository details: repos.ecosyste.ms
Last synced: about 23 hours ago
github.com/alioth-center/ceobebot-core v0.0.1
2 versions - Latest release: over 1 year ago - 0 stars on GitHubgithub.com/starim00/animeapi v1.0.2
二次元相关API3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/starim00/AnimeAPI v1.0.2
二次元相关API3 versions - Latest release: over 1 year ago - 0 stars on GitHub
github.com/floattech/zbputils v1.7.1
ZeroBot-Plugin 的工具库57 versions - Latest release: over 1 year ago - 16 stars on GitHub
github.com/FloatTech/zbputils v1.7.1
ZeroBot-Plugin 的工具库57 versions - Latest release: over 1 year ago - 90 dependent packages - 53 dependent repositories - 16 stars on GitHub
github.com/NoahCodeGG/RelinkRobot-Plugin v1.0.0
Package main ZeroBot-Plugin main file1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/noahcodegg/relinkrobot v1.0.0
用于加/解密链接的 QQ 机器人,暂仅支持熊曰。1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/noahcodegg/relinkrobot-plugin v1.0.0
用于加/解密链接的 QQ 机器人,暂仅支持熊曰。1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/NoahCodeGG/RelinkRobot v1.0.0
用于加/解密链接的 QQ 机器人,暂仅支持熊曰。1 version - Latest release: over 1 year ago - 0 stars on GitHub
github.com/vatebur/AnimeAPI v1.7.2
二次元相关API89 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/vatebur/animeapi v1.7.2
二次元相关API89 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/vatebur/zerobot-plugin v1.7.10
基于 ZeroBot 的 OneBot 插件22 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/vatebur/ZeroBot-Plugin v1.7.9
基于 ZeroBot 的 OneBot 插件21 versions - Latest release: almost 2 years ago - 0 stars on GitHub
github.com/lianhong2758/RosmBot-MUL v0.0.0-20231207095927-fb05cf546623
RosmBot的全平台版本,目前已实现米游社适配,正在进行QQ接口的适配2 versions - Latest release: almost 2 years ago - 3 stars on GitHub
github.com/fr0stltek/MeiBot v0.0.0-20231203042404-06bd593c20a3
Package rei ReiBot created in 2022.5.314 versions - Latest release: almost 2 years ago
github.com/FloatTech/NanoBot-Plugin v0.1.7
Package main NanoBot-Plugin main file14 versions - Latest release: almost 2 years ago - 1 dependent package - 15 stars on GitHub
github.com/floattech/nanobot-plugin v0.1.7
基于 NanoBot 的 QQ 机器人插件合集14 versions - Latest release: almost 2 years ago - 15 stars on GitHub
github.com/fumiama/NanoBot v0.0.0-20231122134259-c22d8183efca
类ZeroBot的官方QQ频道/群聊全域机器人框架, 简单易用31 versions - Latest release: almost 2 years ago - 3 dependent packages - 1 dependent repositories - 55 stars on GitHub
github.com/yiwen-chan/groupmanager v1.7.6 removed
基于 ZeroBot 的 OneBot 插件167 versions - Latest release: about 2 years ago - 2,063 stars on GitHub
github.com/FloatTech/floatbox v0.0.0-20231107124407-e38535efa2a2
框架无关的 go 工具库25 versions - Latest release: about 2 years ago - 71 dependent packages - 44 dependent repositories - 3 stars on GitHub
github.com/floattech/animeapi v1.7.0
二次元相关API87 versions - Latest release: about 2 years ago - 65 stars on GitHub
github.com/FloatTech/AnimeAPI v1.7.0
二次元相关API87 versions - Latest release: about 2 years ago - 66 dependent packages - 50 dependent repositories - 66 stars on GitHub
github.com/ctcticxh/ZeroBot-Plugin v0.0.0-20231010094513-6f4fb1452a3a
Package main ZeroBot-Plugin main file3 versions - Latest release: about 2 years ago - 0 stars on GitHub
github.com/bincooo/llm-plugin v1.0.0
32 versions - Latest release: about 2 years agogithub.com/lianhong2758/RosmBot v0.0.0-20230925161121-bdb3d105b099
米游社VillaBot的Golang-SDK实现2 versions - Latest release: about 2 years ago - 8 stars on GitHub
github.com/FloatTech/ZeroBot-Plugin-Playground v0.0.0-20230903012520-3319f4f35db9
Package main ZeroBot-Plugin-Playground main file73 versions - Latest release: about 2 years ago - 87 stars on GitHub
github.com/aimerneige/yukichan-bot v1.0.0
ゆき酱是使用 ZeroBot 构建的国际象棋聊天机器人。1 version - Latest release: about 2 years ago - 7 stars on GitHub
github.com/floattech/gocqzbp v1.7.3
go-cqhttp与ZeroBot-Plugin的合体92 versions - Latest release: about 2 years ago - 165 stars on GitHub
github.com/FloatTech/gocqzbp v1.7.3
go-cqhttp与ZeroBot-Plugin的合体92 versions - Latest release: about 2 years ago - 165 stars on GitHub
github.com/MoYoez/ReiBot v0.0.0-20230820155045-df7275097c3d
Package rei ReiBot created in 2022.5.311 version - Latest release: about 2 years ago - 1 dependent repositories - 0 stars on GitHub
github.com/Ns2Kracy/dbutils v0.0.0-20230714014410-20e20225af53
Darling-Bot 的工具库1 version - Latest release: over 2 years ago - 0 stars on GitHub
github.com/Ns2Kracy/dbbox v0.0.0-20230713142415-0b239883f0cf
框架无关的 go 工具库1 version - Latest release: over 2 years ago - 1 dependent package - 0 stars on GitHub
github.com/Ns2Kracy/darlingbox v0.0.0-20230713094938-707b7f1b4d6c
框架无关的 go 工具库1 version - Latest release: over 2 years ago - 0 stars on GitHub
github.com/jiang-red/zerobot-plugin v1.7.0
基于 ZeroBot 的 OneBot 插件228 versions - Latest release: over 2 years ago - 28 stars on GitHub
github.com/Jiang-Red/ZeroBot-Plugin v1.7.0
基于 ZeroBot 的 OneBot 插件228 versions - Latest release: over 2 years ago - 28 stars on GitHub
github.com/KomeiDiSanXian/zbputils v0.0.0-20230322060420-3678f6fdd3c7
1 version - Latest release: over 2 years ago - 1 dependent repositoriesgithub.com/lxlxw/go-wxbot v0.0.0-20230321013912-7a2efd27daf3
2 versions - Latest release: over 2 years ago - 1 stars on GitHubgithub.com/floattech/zerobot-plugin-dynamic v0.3.1
ZeroBot-Plugin 的模块化,不支持 Windows,需要 CGO7 versions - Latest release: over 2 years ago - 12 stars on GitHub
github.com/FloatTech/ZeroBot-Plugin-Dynamic v0.3.1
ZeroBot-Plugin 的模块化,不支持 Windows,需要 CGO7 versions - Latest release: over 2 years ago - 12 stars on GitHub
github.com/fumiama/ReiBot v0.0.0-20230310143242-a495e0027fa6
Package rei ReiBot created in 2022.5.314 versions - Latest release: over 2 years ago - 1 dependent package - 1 dependent repositories - 10 stars on GitHub
github.com/imakisa/zbputils v0.0.2
ZeroBot-Plugin 的工具库2 versions - Latest release: over 2 years ago - 0 stars on GitHub
github.com/imAkisa/zbputils v0.0.2
ZeroBot-Plugin 的工具库2 versions - Latest release: over 2 years ago - 0 stars on GitHub
github.com/cha0sidl/zerobot-plugin v1.6.2
基于 ZeroBot 的 OneBot 插件150 versions - Latest release: over 2 years ago - 2 stars on GitHub
github.com/Cha0sIDL/ZeroBot-Plugin v1.6.2
基于 ZeroBot 的 OneBot 插件150 versions - Latest release: over 2 years ago - 2 stars on GitHub
github.com/blueleigong/zerobot-plugin-playground v1.0.0
快来这里上传你的奇思妙想吧!1 version - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/blueleigong/ZeroBot-Plugin-Playground v1.0.0
快来这里上传你的奇思妙想吧!1 version - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/FloatTech/ReiBot-Plugin v0.0.0-20230218123116-591b1ad819e7
基于 ReiBot 的 Telegram 插件1 version - Latest release: almost 3 years ago - 10 stars on GitHub
github.com/xgy1102/zbputils v1.0.2
ZeroBot-Plugin 的工具库2 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/huaixwuyu/ZeroBot-Plugin v1.2.0
基于 ZeroBot 的 OneBot 插件10 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/huaixwuyu/zerobot-plugin v1.2.0
基于 ZeroBot 的 OneBot 插件10 versions - Latest release: almost 3 years ago - 0 stars on GitHub
github.com/MoYoez/ZeroBot-Plugin v1.5.1
131 versions - Latest release: about 3 years agogithub.com/moyoez/zerobot-plugin v1.5.1
131 versions - Latest release: about 3 years agogithub.com/ASAKURA-TOORU/BOT-Plugins v0.0.0-20221009143257-486e90e38b39
1 version - Latest release: about 3 years agogithub.com/moyoez/animeapi v1.5.1 removed
85 versions - Latest release: about 3 years agogithub.com/Suika99/AsoulBot v0.0.0-20220914091520-935c1739717c
asoul相关的qq机器人1 version - Latest release: about 3 years ago - 6 stars on GitHub
github.com/coloured-glaze/zbputils v1.5.2
ZeroBot-Plugin 的工具库1 version - Latest release: over 3 years ago - 0 stars on GitHub
github.com/Coloured-glaze/zbputils v1.5.2
ZeroBot-Plugin 的工具库1 version - Latest release: over 3 years ago - 0 stars on GitHub
github.com/tang-guo-guo/ZeroBot-Plugin v1.2.3
基于 ZeroBot 的 OneBot 插件25 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/tang-guo-guo/zerobot-plugin v1.2.3
基于 ZeroBot 的 OneBot 插件25 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/MoYoez/AnimeAPI v1.5.0 removed
84 versions - Latest release: over 3 years agogithub.com/5i03/zbputils v1.5.0
53 versions - Latest release: over 3 years agogit.5i03.cn/cnyue/zbputils v1.5.0
9 versions - Latest release: over 3 years agogithub.com/kittengarten/kittencore v0.0.0-c
基于 ZeroBot 开发的 QQ 群机器人程序1 version - Latest release: over 3 years ago - 8 stars on GitHub
github.com/Kittengarten/KittenCore v0.0.0-c
KittenCore 的主函数所在包1 version - Latest release: over 3 years ago - 8 stars on GitHub
github.com/haorwen/animeapi v1.4.2
二次元相关API85 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/Haorwen/AnimeAPI v1.4.2
二次元相关API85 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/guohuiyuan/midi v0.0.0-20220627150934-ac73e2231279
自定义的一套文字midi互相转化规则的库1 version - Latest release: over 3 years ago - 0 stars on GitHub
github.com/hmc-wzy/ZeroBot-Plugin v1.4.1
my zbp plugin121 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/Jiangtianyii/ZeroBot-Plugin v1.4.1
基于 ZeroBot 的 OneBot 插件120 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/jiangtianyii/zerobot-plugin v1.4.1
基于 ZeroBot 的 OneBot 插件120 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/mikun5/ZeroBot-Plugin v1.4.1
12 versions - Latest release: over 3 years agogithub.com/ASUKAHUI/ZeroBot-Plugin v1.4.1
基于 ZeroBot 的 OneBot 插件21 versions - Latest release: over 3 years ago - 0 stars on
github.com/hmc-wzy/zerobot-plugin v1.4.1
my zbp plugin121 versions - Latest release: over 3 years ago - 0 stars on GitHub
gitcode.net/Canread/ZeroBot-Plugin v1.4.1 removed
121 versions - Latest release: over 3 years agogithub.com/tdf1939/zerobot-plugin v1.4.0
基于 ZeroBot 的 OneBot 插件114 versions - Latest release: over 3 years ago - 1 stars on GitHub
github.com/Parrthu/ZeroBot-Plugin-SIKADI- v1.4.0
基于 ZeroBot 的 OneBot 插件,更改部分内容更符合斯卡蒂109 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/parrthu/zerobot-plugin-sikadi- v1.4.0
基于 ZeroBot 的 OneBot 插件,更改部分内容更符合斯卡蒂109 versions - Latest release: over 3 years ago - 0 stars on GitHub
github.com/tdf1939/ZeroBot-Plugin v1.4.0 removed
114 versions - Latest release: over 3 years agogithub.com/guohuiyuan/maofly-spider v1.0.2
Package main 漫画猫漫画3 versions - Latest release: over 3 years ago - 2 stars on GitHub
gitcode.net/Canread/zbputils v1.4.0
52 versions - Latest release: over 3 years agogithub.com/tlogn/plugin_random_setu v0.0.0-20220506063903-e3d329b7bf23
ZeroBot-Plugin的插件,相关扩展1 version - Latest release: over 3 years ago - 2 stars on GitHub
github.com/asinbot/bot v1.3.3
基于 ZeroBot 的 OneBot 插件101 versions - Latest release: over 3 years ago - 2 stars on GitHub
github.com/zyxdtk/zerobot-plugin v1.3.2 removed
22 versions - Latest release: over 3 years agogithub.com/phishinqi/ZeroBot-Plugin v1.2.6 removed
56 versions - Latest release: almost 4 years agogithub.com/phishinqi/zerobot-plugin v1.2.6
56 versions - Latest release: almost 4 years agogithub.com/xhemj/ZeroBot-Plugin v1.2.4
58 versions - Latest release: almost 4 years agogithub.com/xhemj/zerobot-plugin v1.2.4
58 versions - Latest release: almost 4 years agogithub.com/moyoez/skadibot v0.0.1
1 version - Latest release: almost 4 years agogithub.com/moyoez/SkadiBot v0.0.1
1 version - Latest release: almost 4 years agogithub.com/MoYoez/SkadiBot v0.0.1
1 version - Latest release: almost 4 years agogithub.com/yuanyan3060/skadibot v1.2.4 removed
5 versions - Latest release: almost 4 years agogithub.com/orziz/phbot v0.0.0-20211201120556-d31937b0761e
1 version - Latest release: almost 4 years agogithub.com/llxlr/ZeroBot-Plugin v1.2.0
17 versions - Latest release: about 4 years agogithub.com/llxlr/zerobot-plugin v1.2.0
17 versions - Latest release: about 4 years agogithub.com/zhizicq/ZeroBot-Plugin v1.2.0 removed
28 versions - Latest release: about 4 years agogithub.com/zhizicq/zerobot-plugin v1.2.0
28 versions - Latest release: about 4 years agoCheck this option to include packages that no longer depend on this package in their latest version but previously did.