This file contains 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] | |
name = "mapactix" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
actix-web = "4.9.0" | |
futures = "0.3.31" | |
phf = {version = "0.11.2", features = ["macros"]} |
This file contains 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
#!/usr/bin/env python3 | |
import csv | |
import sys | |
# Check if an input file is provided | |
if len(sys.argv) < 2: | |
print("Usage: python convert_to_gitlab.py <input_csv_file>") | |
sys.exit(1) |
OlderNewer