Code Monkey home page Code Monkey logo

ask's Introduction

Ask

Ask

A backend programming language. Ask makes it incredibly easy to create REST APIs. Ask directly transpiles to Flask so no new deployment procedures are needed. Ask focuses on clear readable code and reduces a lot of boilerplate code when working with ex. databases and JWT authentication.

Feature Highlights

  • Built in JWT (json web token) authentication.
  • Simple database management.
  • Syntax heavily inspired by Python.
  • Transpiles to plain Flask with no extra modules, libraries, etc. needed.

Example (Ask vs Flask)

Here is the same basic app with one GET route written in Ask and in Python with Flask.

Ask

products = [
  {
    name: 'Product 1',
    price: 30.0,
    qty: 300
  },
  {
    name: 'Product 2',
    price: 15.5,
    qty: 20
  }
]

@get('/api/v1/products'):
  respond {products: products}

Flask

from flask import Flask, jsonify

app = Flask(__name__)

products = [
  {
    'name': 'Product 1',
    'price': 30.0,
    'qty': 300
  },
  {
    'name': 'Product 2',
    'price': 15.5,
    'qty': 20
  }
]

@app.route('/api/v1/products', methods=['GET'])
def get_products():
  return jsonify({'products': products})
  
if __name__ == '__main__':
  app.run()

Get started

  • Download the ask.py file. You can also download ask-watcher.py if you want to use live transpilation.
  • Write your code in a .ask file
  • Download requirements.txt, and install the requirements (pip3 install -r requirements.txt)
  • Transpile your code to Flask (Python) with python3 ask.py [your file].ask
  • (Optional) If you want to use the watcher: python3 ask-watcher.py [your file].ask, the watcher by default uses a 5 second time out between checking your file, you can change this with an optional argument: python3 flask-watcher.py [your file].ask [number of seconds, ex. 3]

Documentation

You can find the full documentation on ask.edvard.dev

Contributing

Read more in the CONTRIBUTING file.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.