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 markdownPostgresArchive.MDArchiveSetup command to do initial setup of Database credentials
After Setup: Interface with the program using markdownPostgresArchive.MDArchive
Platform: UNKNOWN Classifier: Development Status :: 3 - Alpha Classifier: Intended Audience :: Developers Classifier: Programming Language :: Python :: 2.7
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file MarkdownPostgresArchive-0.1.14.tar.gz.
File metadata
- Download URL: MarkdownPostgresArchive-0.1.14.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
846dfeee2fdf865f9ef3458c00740852122939f122ae5890bbf99297e51ebb76
|
|
| MD5 |
cd6092c2b07d68ca305986fddbd1bd88
|
|
| BLAKE2b-256 |
9c097d9a034c18c7abbb0f522afe655bf14862560b8b025e20d47677a4889379
|