Skip to main content

A brute-force shortcut to fix python import hell. Acronym, standing for, um, Fix Up Python Imports. Sure, let's go with that.

Project description

fupi

A brute-force shortcut to fix python import hell. Acronym standing for... um, Fixing-Up Python Imports. Sure, let's go with that.

Usage

Simply import fupi in your project:

import fupi

This automatically detects and adds relevant directories (src, test, app) and their children to your Python path, making imports work seamlessly across your project structure regardless of how bad you screw it up. This allow you to run components independently, run tests from anywhere, etc.

This can be a bit dangerous in larger projects, as you have no idea what you're actually importing. You can create local fupi.env files to limit the scope to what you care about, which will help. This is a "move fast and break things" type of project.

Also, you may consider commenting out import fupi once you get deployment and testing automated / located to a centralized starting point, again to make sure you're not hiding import bugs - by that point you won't likely need this brute-force tool. Fupi is really a tool to speed up rapid-deploy tests / POCs / etc., where you're coding fast and loose, and especially for one-person projects (of which AI is increasing the number and velocity).

Configuration

No configuration is needed if you use the defaults:

  • Adds src, test, app folders and subfolders to sys.path...
  • Skipping most common non-application file folders, like .git, venv*, __pycache__, setup, etc.

.ENV File Config

To use different / more folder names, simply add the following to an existing .env file, or create a new *.env or fupi.env file:

FUPI_ADD_DIRS="src,test"
FUPI_SKIP_DIRS="setup,venv*,*egg*"

The program will evaluate every *.env file it finds in the current working directory, it's parent, and all it's children. It then picks the best one that contains the two envars below:

The FUPI_ADD_DIRS will be string-matched against folders in your project, and on exact match, will include that folder and all subfolders into your sys.path.

The FUPI_SKIP_DIRS is a collection of regex patterns to skip, with string begin and end tags added (^value$). Thus you can simply add a list of folder names, or use basic wildcard * characters. If you want to get crazy with regex, be my guest - but understand the value will be wrapped (^value$).

The FUPI_SKIP_DIRS will also always append patters to disqualify any path starting with a period('.') or an underscore('_') (i.e., '\.*' and '\_*'), which should catch most common skipped folders like .git, __pycache__, etc.

Environment Variable Config

Alternatively, you can add the above to os.envars before you import fupi. Note, this process does NOT use dotenv, which would also load into os.envars, although the behavior is similar, just restricted to only FUPI_* configs. Similar to the .env approach above, simply add a comma-delimited list of all folder names / regex patterns.

Manual Setting

You can also manually call the functions in the fupi libary with whatever settings you'd like. To take advantage of this option, you'll have to escape the default behavior of running all logic on import fupi, automatically. Or, you can reset the sys.path using the roll-back ability, below.

To escape the auto-run, add a single .env or envvar as per below:

FUPI_ADD_DIRS="disable"

Then you can configure manually, with:

from fupi import fupi
fupi.add_dirs_and_children_to_syspath(
    add_dirs=['my','app','folders'], 
    skip_dirs=['not','*these*'])

Rollback

Finally, if you want to roll-back to a previous state, sys.path contents are logged in the object sys_path_history which captures the pre-import snapshot at index[0], and subsequent snapshots every time a change is made. This would allow you to 'roll-back' to a pre-exexution state by simply:

sys.path = fupi.sys_path_history['history'][0]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fupi-1.1.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fupi-1.1-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file fupi-1.1.tar.gz.

File metadata

  • Download URL: fupi-1.1.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.5

File hashes

Hashes for fupi-1.1.tar.gz
Algorithm Hash digest
SHA256 66eedde470ed3bcefebcd9ef8906495a76590b757ab5c9ecf2fd7f997407f20f
MD5 0fb9f1a72b8dff3ca607a5c2efb696a6
BLAKE2b-256 157cb295d8dc4b7f3b9bf56b6804949ade73acc71a305a4e07677392797b1c56

See more details on using hashes here.

File details

Details for the file fupi-1.1-py3-none-any.whl.

File metadata

  • Download URL: fupi-1.1-py3-none-any.whl
  • Upload date:
  • Size: 7.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.5

File hashes

Hashes for fupi-1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9d6f33cbc0ab2eef51609d387de7d5bdad3c3e528f35214c065f7442d24b7c38
MD5 60023789d26b1f340b04025c0bdfab46
BLAKE2b-256 0a16e660780027225ec359f12a448a23ed1795e06fb537baf06ccb606c7898f7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page