markmap | ||||||
---|---|---|---|---|---|---|
|
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
package main | |
import "fmt" | |
type Animal interface { | |
FazerSom() string | |
} | |
type Cachorro struct{} |
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
deb [by-hash=force] http://deepin.c3sl.ufpr.br/deepin stable main contrib non-free |
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
TOKEN = 123123 |
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
from functools import wraps | |
from src.models import Adminstrator | |
from graphql.execution.base import ResolveInfo | |
from graphql_jwt.exceptions import PermissionDenied | |
def context(f): | |
def decorator(func): | |
def wrapper(*args, **kwargs): | |
info = next(arg for arg in args if isinstance(arg, ResolveInfo)) |
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
from src.services.bucket_s3 import BucketS3 | |
def use_service(): | |
files = BucketS3().get_read_bucket('<NOME_DO_BUCKET>') | |
print(files) | |
return files |
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
from server import db, app, jsonify, Blueprint, request,\ | |
datetime, os, func, wkt, json,\ | |
secure_filename, shapefile, zipfile, glob | |
ALLOWED_EXTENSIONS = set(['zip']) | |
def allowed_file(filename): | |
return '.' in filename and \ | |
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS |
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
while True: | |
def questao01(): | |
alcool=3.75 | |
gasolina=4.79 | |
x = ((3.75*100)/4.79) | |
if x >= 70: print('Viável') | |
else: print('Não é viável') | |
def questao02(): | |
n1=input('Digite N1:') |
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
{ | |
"estados": [ | |
{ | |
"sigla": "AC", | |
"nome": "Acre", | |
"cidades": [ | |
"Acrelândia", | |
"Assis Brasil", | |
"Brasiléia", | |
"Bujari", |