Skip to content

Instantly share code, notes, and snippets.

@urish
Created January 6, 2020 15:36
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save urish/9c5b4aea6362da086541be14acdf0f72 to your computer and use it in GitHub Desktop.
Save urish/9c5b4aea6362da086541be14acdf0f72 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
# coding=utf8
#
# Simple script to scale a KiCad footprint
# Usage:
# python kicad-resize-footprint.py <input.kicad_mod> <output.kicad_mod> <scale>
#
# Where scale is how much to scale (1 = 100%)
#
# Copyright (C) 2020, Uri Shaked.
import sys
import re
scale = float(sys.argv[3])
def scalexy(val):
x = float(val.group(1)) * scale
y = float(val.group(2)) * scale
return '(xy {} {})'.format(x, y)
with open(sys.argv[1], 'r') as in_file, open(sys.argv[2], 'w', newline='') as out_file:
for line in in_file:
line = re.sub(r'\(xy ([0-9-.]+) ([0-9-.]+)\)', scalexy, line)
out_file.write(line)
@InputBlackBoxOutput
Copy link

InputBlackBoxOutput commented Dec 5, 2022

I have also modified the Streamlit web application hosted at the following URL:

https://kicad-footprint-resizer.streamlit.app/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment