Skip to main content

Ask is a modern open-source transpiled programming language, designed for building backend services and APIs. Ask reduces the amount of needed boilerplate code for setting up things like database connections and authentication to virtually zero lines.

Project description

Ask

Ask

CircleCI

Introduction.

Ask is an open source, dynamic, and transpiled programming language built for building backends and APIs. Ask directly transpiles to Python, more specifically Flask.

Feature Highlights

  • Built-in JWT Authentication.
  • Super Simple Database Management.
  • Syntax Inspired by Python.
  • Built-in CORS Support.
  • Reduces Boilerplate.
  • Compatible with Python*

* = You can import external Python modules and call them from you Ask code.

Easy to Learn

Ask's syntax is heavily inspired by Python, and can almost be considered to be a superset of Python. This means that picking up Ask is super easy if you’re already familiar with Python.

The main idea behind Ask is to simplify common backend actions (e.g. working with databases). Building a full database CRUD REST API with JWT authentication in Ask is very straight forward and simple and requires virtually zero lines of boilerplate code and no setup whatsoever.

Extendable.

Ask is a transpiled language (kind of like TypeScript) which means that it compiles the source code to another language that has a similar level of abstraction. In Ask's case, the target language is Python, more specifically a Flask app.

Flask is a very popular and well-established web framework for Python, so there's already a lot of tools, and services for deploying Flask apps.

The transpiled app is completely standalone and doesn't require Ask in any way.

Installation

  • You can install Ask from the PyPI. You can use pip but we recommend that you use pipx.
  • $ pipx install ask-lang.
  • Then run your apps with: $ ask [your file].ask.

Run locally

  1. Clone this repo: https://github.com/Buscedv/Ask.git.
  2. Install Poetry.
  3. Create a new virtual environment: python3 venv venv.
  4. Activate it: source venv/bin/activate.
  5. Install dependencies: poetry install.
  6. (Optional but helpful in some cases) Run Ask in development mode: Docs.

If you want to contribute please read the CONTRIBUTING.md file for code style, standards, etc.

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

This is what the same application would look like in 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()

As you can see Ask hides away all the clutter and boilerplate.

Documentation

You can find the full documentation on docs.ask-lang.org.

Contact

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

ask_lang-1.4.1.tar.gz (38.2 kB view details)

Uploaded Source

Built Distribution

ask_lang-1.4.1-py3-none-any.whl (58.1 kB view details)

Uploaded Python 3

File details

Details for the file ask_lang-1.4.1.tar.gz.

File metadata

  • Download URL: ask_lang-1.4.1.tar.gz
  • Upload date:
  • Size: 38.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.1 Darwin/19.6.0

File hashes

Hashes for ask_lang-1.4.1.tar.gz
Algorithm Hash digest
SHA256 57d27f5a0c3c9e0b23fac36ca5a7e4da03a5353e689750a9fafd8c24fc61dc0b
MD5 c47857b552070b1b3337c57f08a3d8cc
BLAKE2b-256 ea0baab6f5310f0a683fa61b62441f304271e32cbc0f9c7927b7feabbbde2f3c

See more details on using hashes here.

File details

Details for the file ask_lang-1.4.1-py3-none-any.whl.

File metadata

  • Download URL: ask_lang-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 58.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.1 Darwin/19.6.0

File hashes

Hashes for ask_lang-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1d619c75ee32bbac038d7efbc22e7eaa42fd33824cbccb5881f9f58b221b8091
MD5 91bb6073d5c249908fd9dcf28e22f0ed
BLAKE2b-256 f11887d6db23bc3f4f3ba0606873b60130b7da88c04059ce2009f123ff343822

See more details on using hashes here.

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