Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
一个基于 asyncio
, 设计简洁, 代码简单的计划任务库, 使用 loop.create_task
创建计划任务;
同时使用生成器特性与 croniter
的定时设计, 轻盈而强大.
pip install graia-scheduler
# or use pdm
pdm add graia-scheduler
0.1以前的版本:
import asyncio
from graia.broadcast import Broadcast
from graia.scheduler import GraiaScheduler
from graia.scheduler.timers import crontabify
loop = asyncio.new_event_loop()
bcc = Broadcast(loop=loop)
scheduler = GraiaScheduler(loop, bcc)
@scheduler.schedule(crontabify("* * * * * *"))
def something_scheduled():
print("print every second.")
loop.run_forever()
0.1及后续的版本:
import asyncio
from graia.broadcast import Broadcast
from graia.scheduler import GraiaScheduler
from graia.scheduler.timers import crontabify
loop = asyncio.new_event_loop()
bcc = Broadcast(loop=loop)
scheduler = GraiaScheduler(loop, bcc)
@scheduler.schedule(crontabify("* * * * * *"))
def something_scheduled():
print("print every second.")
loop.run_until_complete(scheduler.run())
因为基于 BroadcastControl
, 你可以享受使用 Dispatcher
, Interrupt
, Decorator
的开发体验.
FAQs
a scheduler for graia framework
We found that graia-scheduler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.