This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This script was generated by the ERD tool in pgAdmin 4. | |
-- Please log an issue at https://github.com/pgadmin-org/pgadmin4/issues/new/choose if you find any bugs, including reproduction steps. | |
BEGIN; | |
CREATE TABLE IF NOT EXISTS public.auto_compress | |
( | |
id serial NOT NULL, | |
secure_id character varying(50) COLLATE pg_catalog."default" NOT NULL, | |
source_path text COLLATE pg_catalog."default" NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.3 | |
info: | |
title: Sigma API (Kecilin Kloud) | |
version: 1.0.0 | |
contact: {} | |
servers: | |
- url: '{{url}}' | |
paths: | |
/api/v1/users/create: | |
post: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 align="center">Hi ๐, I'm Teguh Atma</h1> | |
<h3 align="center">Software Engineer on learning journey</h3> | |
<p align="left"> <img src="https://komarev.com/ghpvc/?username=guhkun13&label=Profile%20views&color=0e75b6&style=flat" alt="guhkun13" /> </p> | |
<p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=guhkun13" alt="guhkun13" /></a> </p> | |
<p align="left"> <a href="https://twitter.com/guhkun13" target="blank"><img src="https://img.shields.io/twitter/follow/guhkun13?logo=twitter&style=for-the-badge" alt="guhkun13" /></a> </p> | |
- ๐ญ Iโm currently working as **freelancer** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import zeep | |
import simplejson | |
import os | |
# import jsonify | |
from flask import Flask | |
from zeep.transports import Transport | |
app_env = os.getenv('APP_ENV') | |
app = Flask(__name__) |