import falcon
api = application = falcon.API()
class HelloWorld:
def on_get(self, req, resp):
resp.body = 'Hello, world!'
api.add_route('/', HelloWorld())
import falcon
api = application = falcon.API()
class HelloWorld:
def on_get(self, req, resp):
resp.body = 'Hello, world!'
api.add_route('/', HelloWorld())
import falcon
class ThingsResource:
def on_get(self, req, resp):
resp.media = {'message': 'Hello, Things!'}
api = falcon.API()
api.add_route('/things', ThingsResource())
import falcon
class ItemsResource:
def on_get(self, req, resp):
items = ['item1', 'item2', 'item3']
resp.media = {'items': items}
api = falcon.API()
api.add_route('/items', ItemsResource())
import falcon
from concurrent.futures import ThreadPoolExecutor
executor = ThreadPoolExecutor(max_workers=2)
class ThreadResource:
def on_get(self, req, resp):
future = executor.submit(self.long_running_task)
resp.media = {'status': 'Task started'}
def long_running_task(self):
# Long running task here
pass
api = falcon.API()
api.add_route('/thread', ThreadResource())
Back-end App Developer
Front-end Web Developer
Full Stack Developer (Java)
Full Stack Developer (.Net)
Full Stack Developer (MEAN)
Full Stack Developer (MERN)
DevOps Engineer
Database Engineer (AzureSQL)
Database Engineer (Oracle)
Database Engineer (General)
Solution Architect (.NET)
Solution Architect (Java)
Solution Architect (Ruby)
Solution Architect (Python)
AI Engineer (Python)
Sr. AI Engineer (Python)
AI Strategist (Python)
Business Intelligence Engineer
Systems Analyst
Mainframe Developer (COBOL)
Mainframe Developer (General)