-
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
File details
Details for the file moduleknife-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: moduleknife-0.2.1-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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d6698d73d14eb7845b98cf2d0e4dc108b64d5f90287bfa3b612e3e8df146775 |
|
MD5 | dc1e5a9a880436ca024b93fc250ce8aa |
|
BLAKE2b-256 | 9a8884d547f37a13268bb9cc3541d7fc5518d302c56bd7d9375aaed0efacf728 |