Skip to main content

Stores and/or retrieves data of a markdown file in and out of a Postgresql database

Project description

  • Team: WikiWiki

  • Group members: Ryan Guard, Elizabeth Gieske, Ronnie Hoover, Christopher Groppe, Liam Tiemon

### Features:

  • Sequentially store data of markdown files into postgres database

  • Retrieve stored data to save an old version of markdown file or overwrite old one

  • View previous stored/archived versions

  • Look into individual contents of commits

### Setup:

  • You will need to setup a postgresql database of the schema:

CREATE TABLE wiki.page

(

page_id integer NOT NULL,

page_name text NOT NULL,

commit_id integer NOT NULL,

date_update date NOT NULL,

page_file text NOT NULL,

CONSTRAINT page_pkey PRIMARY KEY (page_id, commit_id)

)

WITH (

OIDS=FALSE

);

  • Download requirements.txt

  • You will have to run the MDArchiveSetup.py command to do initial setup of Database credentials

  • After Setup: Interface with the program using MDArchive.py

Platform: UNKNOWN Classifier: Development Status :: 3 - Alpha Classifier: Intended Audience :: Developers Classifier: Programming Language :: Python :: 2.7

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

MarkdownPostgresArchive-0.1.4.tar.gz (5.3 kB view hashes)

Uploaded Source

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