Skip to content

Instantly share code, notes, and snippets.

View chrnmaxim's full-sized avatar
🐍

Maxim Chernyshov chrnmaxim

🐍
View GitHub Profile
@chrnmaxim
chrnmaxim / convert-poetry.py
Created September 13, 2024 12:55
Convert a requirements.txt file to a Poetry project. This is enhanced version of tigerhawkvok/poetry-convert.py
#!python3
"""
Convert a requirements.txt file to a Poetry project.
Place in the directory with `requirements.txt` file and run.
"""
import os
import re
import subprocess