Skip to content

Instantly share code, notes, and snippets.

@AIwasabi
AIwasabi / poetry-convert.py
Created October 30, 2023 19:10 — forked from tigerhawkvok/poetry-convert.py
Convert a requirements.txt file to a Poetry project
#!python3
"""
Convert a requirements.txt file to a Poetry project.
Just place in the root of your working directory and run!
"""
sourceFile = "./requirements.txt"
import re
import os