From f9d5de90245bc9cad8baf237c332323a0be61527 Mon Sep 17 00:00:00 2001 From: Lewis Cowles Date: Tue, 9 Apr 2024 08:18:29 +0100 Subject: [PATCH 1/2] Update main docs page --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3dd60a2..08608a9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Welcome! Python Call Graph is a [Python](http://www.python.org) module that creates [call graph](http://en.wikipedia.org/wiki/Call_graph) visualizations for Python applications. -This repo used to be `pycallgraph` which is still hosted at pypi [link](https://pypi.org/project/pycallgraph/). +This repo used to be `pycallgraph` which is still hosted at pypi [link](https://pypi.org/project/python-call-graph/). The uploader makes no representations of their contribution, and merely wanted this to work in python 3.5; with a goal to porting it to 3.11 and 3.12 @@ -45,7 +45,7 @@ pip install python-call-graph ``` -You can either use the [command-line interface](https://pycallgraph.readthedocs.io/en/develop/guide/command_line_usage.html) for a quick visualization of your Python script, or the [pycallgraph module](https://pycallgraph.readthedocs.io/en/develop/api/pycallgraph.html) for more fine-grained settings. +You can either use the [command-line interface](https://lewiscowles1986.github.io/py-call-graph/guide/command_line_usage.html) for a quick visualization of your Python script, or the [pycallgraph module](https://lewiscowles1986.github.io/py-call-graph/api/pycallgraph.html) for more fine-grained settings. The following examples specify graphviz as the outputter, so it's required to be installed. They will generate a file called `pycallgraph.png`. @@ -69,4 +69,4 @@ with PyCallGraph(output=GraphvizOutput()): ## Documentation -Feel free to browse the [documentation of pycallgraph](https://pycallgraph.readthedocs.io/en/develop/) for the [usage guide](https://pycallgraph.readthedocs.io/en/develop/guide/index.html) and [API reference](https://pycallgraph.readthedocs.io/en/develop/api/api.html). +Feel free to browse the [documentation of pycallgraph](https://lewiscowles1986.github.io/py-call-graph/) for the [usage guide](https://lewiscowles1986.github.io/py-call-graph/guide/index.html) and [API reference](https://lewiscowles1986.github.io/py-call-graph/api/api.html). From d21a1d851c9a2fadff88ddd06946de6314995cde Mon Sep 17 00:00:00 2001 From: Lewis Cowles Date: Tue, 9 Apr 2024 08:23:15 +0100 Subject: [PATCH 2/2] docs: update module docstring --- pycallgraph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycallgraph/__init__.py b/pycallgraph/__init__.py index aa0eb4d..4e23c5c 100644 --- a/pycallgraph/__init__.py +++ b/pycallgraph/__init__.py @@ -4,7 +4,7 @@ This is a fork of the original, updated to work with Python 3.5 - 3.11 and from 2.1.0 3.8 - 3.12 -See https://pycallgraph.readthedocs.io/en/develop/ for more information. +See https://lewiscowles1986.github.io/py-call-graph/ for more information. ''' from .metadata import __version__ from .metadata import __copyright__