bndr
pycycle
Python

Tool for pinpointing circular imports in Python. Find cyclic imports in any project

Last updated May 16, 2026
362
Stars
24
Forks
22
Issues
0
Stars/day
Attention Score
39
Language breakdown
No language data available.
โ–ธ Files click to expand
README

Pycycle: Find and fix circular imports in python projects =========================================================

.. image:: https://img.shields.io/pypi/v/pycycle.svg :target: https://pypi.python.org/pypi/pycycle

.. image:: https://img.shields.io/pypi/l/pycycle.svg :target: https://pypi.python.org/pypi/pycycle

.. image:: https://img.shields.io/pypi/wheel/pycycle.svg :target: https://pypi.python.org/pypi/pycycle

.. image:: https://img.shields.io/pypi/pyversions/pipenv.svg :target: https://pypi.python.org/pypi/pycycle

.. image:: https://api.travis-ci.org/bndr/pycycle.svg?branch=master :target: https://travis-ci.org/bndr/pycycle


Pycycle is an experimental project that aims to help python developers fix their circular dependencies problems.

ImportError: Cannot import name X is a python exception that is related to the circular imports, but the exception tells nothing about where or what.

This tool automatically analyzes the imports of your projects, and looks for imports that may cause a circular dependency problem.

.. image:: https://i.imgur.com/8JeLQxu.gif

Features


  • Shows you the whole chain of the circular imports.
  • Gives you lines of code where each import is, for you to easily find and fix the problem.
  • Visualizes your imports in a graph (Not Yet Implemented)

Usage


::

$ pycycle Usage: pycycle [OPTIONS] COMMAND [ARGS]...

Examples: Get the circular imports in current project: $ pycycle --here Look for circular imports in another project $ pycycle --source /home/user/workspace/awesome_project Ignore specific directories when looking for circular import $ pycycle --source /home/user/workspace/awesomeproject --ignore somedir,some_dir2 Get verbose output $ pycycle --source /home/user/workspace/awesome_project --verbose

Options: --verbose Verbose output. --here Try to find cycles in the current project. --source TEXT Try to find cycles in the path provided. --ignore TEXT Comma separated directories that will be ignored during analysis. --encoding TEXT Change enconding with which the project is read. --help Show this message then exit. --version Show the version and exit.

::

$ pycycle --here Project successfully transformed to AST, checking imports for cycles.. Cycle Found :( amodule.afile: Line 1 -> amodule.bmodule.bfile: Line 1 -> cmodule.cfile: Line 1 -> dmodule.dfile: Line 1 =>> amodule.a_file Finished.

::

$ pycycle --source /Users/vkravcenko/workspace/awesome_project Target source provided:/Users/vkravcenko/workspace/awesome_project Project successfully transformed to AST, checking imports for cycles.. No worries, no cycles here! If you think some cycle was missed, please open an Issue on Github. Finished.

Installation


::

$ pip install pycycle

๐Ÿ”— More in this category

ยฉ 2026 GitRepoTrend ยท bndr/pycycle ยท Updated daily from GitHub