Difference between revisions of "PyWikiCMS"

From BITPlan Wiki
Jump to navigation Jump to search
Line 22: Line 22:
 
= Structure =
 
= Structure =
 
<uml>
 
<uml>
 +
package backend {
 +
  package remote {
 +
      class Tool {}
 +
      class Tools {}
 +
      class Stats {}
 +
      class Remote {}
 +
  }
 +
  package server {
 +
      class Server {}
 +
      class Servers {}
 +
  }
 +
 +
}
 +
 
package frontend {
 
package frontend {
   package app {
+
   package webserver {
 +
    class CmsWebServer {}
 +
    class CmsSolution {}
 
   }
 
   }
 
}
 
}
 
</uml>
 
</uml>

Revision as of 11:21, 30 July 2025

OsProject

OsProject
edit
id  pyWikiCMS
state  active
owner  BITPlan
title  python implementation of a Mediawiki based Content Management System
url  https://github.com/BITPlan/pyWikiCMS
version  0.4.3
description  
date  2025-07-30
since  2020-01-06
until  

What is it?

pyWikiCMS is a content management system based on Semantic MediaWiki. It uses a Semantic Media Wiki as a content management system and presents the content via a configurable frontend.

Installation

via pip

pip install pyWikiCMS

Structure