Skip to content

Instantly share code, notes, and snippets.

@korniichuk
Last active December 11, 2020 18:55
Show Gist options
  • Save korniichuk/adc15c929fba27e3a23af67cafbd801e to your computer and use it in GitHub Desktop.
Save korniichuk/adc15c929fba27e3a23af67cafbd801e to your computer and use it in GitHub Desktop.
PyCode 2020 conference. DataOps 3.0 workshop
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Python Schedule\n",
"### Install and import `schedule` Python library:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pip3 install --upgrade --user --quiet schedule"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"**Note:** Select `Kernel` menu above. Click `Restart & Clear Output`."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import time\n",
"\n",
"import schedule"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Define task as Python `task()` function:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"def task():\n",
" print('PyCode 2020')"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Initialize the task:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"schedule.every(2).seconds.do(task)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Execute the task with infinity loop:"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"while True:\n",
" schedule.run_pending()\n",
" time.sleep(1)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment