Skip to main content

-

Project description

$ moduelgraph 02dump_json.py
{
   "age": 20,
   "name": "foo"
}
digraph g {
    g0 [label="json"]
    g1 [label="json.encoder"]
    g2 [label="json.decoder"]
    g3 [label="argparse"]
    g4 [label="copy"]
    g5 [label="gettext"]
    g6 [label="textwrap"]
    g7 [label="json.scanner"]
    g8 [label="02dump_json"]
    g9 [label="locale"]
    g10 [label="struct"]
    g0 -> g1
    g0 -> g2
    g3 -> g4
    g3 -> g5
    g3 -> g6
    g2 -> g7
    g8 -> g0
    g8 -> g3
    g5 -> g9
    g5 -> g10
}
$ moduelgraph 02dump_json.py --outfile=02dump_json.dot
{
  "age": 20,
  "name": "foo"
}
write 02dump_json.dot...
$ moduelgraph 02dump_json.py --driver=ToplevelOnlyDriver --outfile=02dump_json2.dot
{
  "age": 20,
  "name": "foo"
}
write 02dump_json2.dot...

02dump_json.py

import json
import sys
import argparse


def main():
    parser = argparse.ArgumentParser()
    parser.add_argument("--name", default="foo")

    args = parser.parse_args()

    person = {"name": args.name, "age": 20}
    json.dump(person, sys.stdout, indent=2)


if __name__ == "__main__":
    main()
else:
    print("hmm")

02dump_json.svg 02dump_json2.svg

0.2.0

  • modulegraph, add –browse option

  • modulegraph, fix bug that modulegraph’s __file__ is used when calling as main

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

moduleknife-0.2.0-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file moduleknife-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: moduleknife-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.2

File hashes

Hashes for moduleknife-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e12fced5f7481e4f6df5316ec136bd656d747c220e219c6b99f30f4bef6fa4b1
MD5 696cf7ef0f97b25afddbe5d1fb8e2339
BLAKE2b-256 a209812bc5d5aa5fd341ae47d525aa2ae2d127c014787cf3b93529f8b65dda56

See more details on using hashes here.

Provenance

Supported by

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