From 0435b0e85609b84709acedda6993c249f2dd3069 Mon Sep 17 00:00:00 2001 From: David Todd Date: Sun, 18 Aug 2019 00:45:24 -0500 Subject: [PATCH] Initial Commit --- .editorconfig | 36 ++++++++++++++++++++++++++++++++++++ .gitignore | 2 ++ LICENSE | 21 +++++++++++++++++++++ Readme.md | 8 ++++++++ 4 files changed, 67 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 Readme.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7c0e9b0 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,36 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +# Use 4 spaces for the Python files +[*.py] +indent_size = 4 +max_line_length = 80 + +# The JSON files contain newlines inconsistently +[*.json] +insert_final_newline = ignore + +# Minified JavaScript files shouldn't be changed +[**.min.js] +indent_style = ignore +insert_final_newline = ignore + +# Makefiles always use tabs for indentation +[Makefile] +indent_style = tab + +# Batch files use tabs for indentation +[*.bat] +indent_style = tab + +[*.md] +trim_trailing_whitespace = false + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33c2117 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +venv/* +.vscode* diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..586d647 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 David Todd (c0de@c0defox.es) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..5d1592d --- /dev/null +++ b/Readme.md @@ -0,0 +1,8 @@ +# lob.li API - Link Objectively + +A few years ago I created [lob.li](https://lob.li). It was designed in PHP 5 and was switched from a MySQL database to Redis realitively easily. The service is still functional today, running on PHP 7, but it's significantly outdated, and API features that were promised to come never did. This is an attempt to create a new version of the API, coded in Python 3 as that's the language I'm most comfortable with currently. + +## Requirements +* [Bottle](https://bottlepy.org/docs/dev/) - This handles the Routes and Jinja2 templates +* [CherryPy](https://cherrypy.org/) - This is responsible for handling the WGSI processes +* [Beaker](https://beaker.readthedocs.io/en/latest/configuration.html#) - Responsible for handling user sessions