Utility to access the EAGLE public database using python. Based on the original verison by John Helly. Modified to support Python 3 as well as Python 2.
- Simply run
pip install eaglesqltools. - Launch
python; you should be able to doimport eagleSqlTools.
- Download via web UI, or
git clone https://github.com/kyleaoman/eagleSqlTools.git - Install dependencies if necessary (see
setup.py). - Global install (Linux):
cdto directory withsetup.py- run
sudo pip install -e .(-einstalls via symlink, so pulling repository will do a 'live' update of the installation)
- User install (Linux):
cdto directory withsetup.py- ensure
~/lib/python3.6/site-packagesor similar is on yourPYTHONPATH(e.g.echo $PYTHONPATH), if not, add it (perhaps in.bash_profileor similar) - run
pip install --prefix ~ -e .(-einstalls via symlink, so pulling repository will do a 'live' update of the installation)
- cd to a directory outside the module and launch
python; you should be able to doimport eagleSqlTools
See examples in the database release paper. Some examples seem to need some slight modification to work under Python 3.