Language | Packaging | IDE | Types | ORM | Admin | Advantages over Python |
---|---|---|---|---|---|---|
Python | ✅ Poetry | ❤️ PyCharm | ❤️ Django | ❤️ Django | ||
TypeScript | ✅ npm | ❤️ WebStorm | ✅ OOP | ✅ TypeORM / Sequelize + Umzug | Types, developer base | |
C# | ✅ nuget | ❤️ Rider | ✅ OOP + 🤢 | ✅ Entity Framework | Types, LINQ, speed | |
Rust | ❤️ Cargo | ✅ RustRover | ❤️ ML | ✅ diesel + barrel | SeaORM | |
Haskell | ❤️ stack | ❤️ HaskForce | ❤️ ML | ✅ |
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 json | |
import re | |
from base64 import b64encode | |
from enum import Enum, auto | |
from pathlib import Path | |
# pulumi config --json --show-secrets > pulumi_config.json | |
CONFIG = json.loads(Path("pulumi_config.json").read_text()) | |
INPUT_FILE = Path("profiling/moneymeets-github.txt") |