Skip to main content

Flask extension to integrate discourse content generated to docs to your website.

Project description

# canonicalwebteam.discourse_docs

Flask extension to integrate discourse content generated to docs to your website.

## Install

Install the project with pip: `pip install canonicalwebteam.discourse_docs`

You can add the extension on your project:

```
from canonicalwebteam.discourse_docs import DiscourseDocs, DiscourseAPI

discourse_api = DiscourseAPI(
base_url="https://forum.snapcraft.io/",
frontpage_id=3781, # The "Snap Documentation" topic
category_id=15, # The "doc" category
)

# From constructor
DiscourseDocs(
app=app,
model=discourse_api,
url_prefix="/",
document_template="document.html",
)

# or from init_app
discourse_docs = DiscourseDocs()
discourse_docs.init_app(
app=app,
model=discourse_api,
url_prefix="/",
document_template="document.html",
)
```

Once this is added you will need to add the file `document.html` to your template folder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

canonicalwebteam.discourse_docs-0.1.1.tar.gz (47.1 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page