Table of Contents - shmolyneaux/SquareJam GitHub Wiki

This is a very incomplete table of contents. Go to Pages to get the full list.

1. Introduction

2. Tutorials

  • Getting Form Data
  • Exploring the Database
  • Creating New Users
  • Giving Permissions

3. Tools

4. Beginner Topics

  • Dicts/Lists/Objects Basics
  • Users
  • Permissions
  • Files
  • Database Management
  • Forms
  • Unusable Simple Python Data Types
  • Getting User Information

5. Intermediate Topics

def test(self, req):
  for key in req.form.keys():
    print("Key: " + key + "\nValue: " + req.form[key]);