Giter Club home page Giter Club logo

Comments (4)

rj919 avatar rj919 commented on July 18, 2024

I have found that a GET request to /scheduler produces this helpful document:
[
{
"description": "get_scheduler_info",
"endpoint": "/scheduler",
"method": "GET"
},
{
"description": "add_job",
"endpoint": "/scheduler/jobs",
"method": "POST"
},
{
"description": "get_jobs",
"endpoint": "/scheduler/jobs",
"method": "GET"
},
{
"description": "get_job",
"endpoint": "/scheduler/jobs/<job_id>",
"method": "GET"
},
{
"description": "delete_job",
"endpoint": "/scheduler/jobs/<job_id>",
"method": "DELETE"
},
{
"description": "update_job",
"endpoint": "/scheduler/jobs/<job_id>",
"method": "PATCH"
},
{
"description": "pause_job",
"endpoint": "/scheduler/jobs/<job_id>/pause",
"method": "POST"
},
{
"description": "resume_job",
"endpoint": "/scheduler/jobs/<job_id>/resume",
"method": "POST"
},
{
"description": "run_job",
"endpoint": "/scheduler/jobs/<job_id>/run",
"method": "POST"
}
]

from flask-apscheduler.

disenQF avatar disenQF commented on July 18, 2024

add job request:

{
"error_message": "A setup function was called after the first request was handled. This usually indicates a bug in the application where a module was not imported and decorators or other functionality was called too late.\nTo fix this make sure to import all your view modules, database models and everything related at a central place before the application starts serving requests."
}

from flask-apscheduler.

christopherpickering avatar christopherpickering commented on July 18, 2024

@viniciuschiele what do you think about turning on GitHub Pages for the repo and using sphinx docs? If you add a workflow to publish to pages, I can give a stab at adding some more docs :)

name: CI

on:
  push:
    branches: [ master ]

  workflow_dispatch:

jobs:
  docs:
    runs-on: ubuntu-latest
    container: python:3
    steps:
      - name: get code
        uses: actions/checkout@v1

      - name: build docs
        run: |
          pip install sphinx Pygments furo sphinx-copybutton sphinx-inline-tabs myst-parser colorama sphinx-panels
          cd docs
          sphinx-build -E -b html . _build
      - name: publish
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./docs/_build

from flask-apscheduler.

christopherpickering avatar christopherpickering commented on July 18, 2024

Docs are now linked in the readme: https://viniciuschiele.github.io/flask-apscheduler/. PR's to improve them are welcome.

from flask-apscheduler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.