forked from nhs-pycom/nhs_time_of_travel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
908 lines (880 loc) · 47.4 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
#Data
movement-speeds-quarterly-by-hod-london-2020-Q1.csv
cache/
.DS_Store
.jetbrains
nhs_venv/CHANGELOG.md
nhs_venv/CMakeLists.txt
nhs_venv/LICENSE
nhs_venv/makefile
nhs_venv/pyproject.toml
nhs_venv/pyvenv.cfg
nhs_venv/readme.md
nhs_venv/requirements.in
nhs_venv/setup.py
nhs_venv/bin/activate
nhs_venv/bin/activate.csh
nhs_venv/bin/activate.fish
nhs_venv/bin/Activate.ps1
nhs_venv/bin/big_query.py
nhs_venv/bin/bokeh
nhs_venv/bin/build_arctic_dem_mosaics_index.py
nhs_venv/bin/build_arctic_dem_mosaics_vrt_list.py
nhs_venv/bin/build_arctic_dem_strips_vrt.py
nhs_venv/bin/build_interface.py
nhs_venv/bin/cmark
nhs_venv/bin/colorcet
nhs_venv/bin/cygdb
nhs_venv/bin/cython
nhs_venv/bin/cythonize
nhs_venv/bin/dask
nhs_venv/bin/dask-scheduler
nhs_venv/bin/dask-ssh
nhs_venv/bin/dask-worker
nhs_venv/bin/datashader
nhs_venv/bin/dotenv
nhs_venv/bin/earthengine
nhs_venv/bin/extract_h5_dataset.py
nhs_venv/bin/f2py
nhs_venv/bin/f2py3
nhs_venv/bin/f2py3.9
nhs_venv/bin/fetch_tles.py
nhs_venv/bin/fio
nhs_venv/bin/flask
nhs_venv/bin/fonttools
nhs_venv/bin/futurize
nhs_venv/bin/gdal_calc.py
nhs_venv/bin/gdal_edit.py
nhs_venv/bin/gdal_fillnodata.py
nhs_venv/bin/gdal_merge.py
nhs_venv/bin/gdal_pansharpen.py
nhs_venv/bin/gdal_polygonize.py
nhs_venv/bin/gdal_proximity.py
nhs_venv/bin/gdal_retile.py
nhs_venv/bin/gdal_sieve.py
nhs_venv/bin/gdal2tiles.py
nhs_venv/bin/gdal2xyz.py
nhs_venv/bin/gdalattachpct.py
nhs_venv/bin/gdalcompare.py
nhs_venv/bin/gdalmove.py
nhs_venv/bin/gdown
nhs_venv/bin/geeadd
nhs_venv/bin/geedim
nhs_venv/bin/geemap
nhs_venv/bin/geocode
nhs_venv/bin/geocube
nhs_venv/bin/geomet
nhs_venv/bin/get_objgraph
nhs_venv/bin/hls.py
nhs_venv/bin/holoviews
nhs_venv/bin/html2text
nhs_venv/bin/icepyx_region.py
nhs_venv/bin/imageio_download_bin
nhs_venv/bin/imageio_remove_bin
nhs_venv/bin/ipynb-py-convert
nhs_venv/bin/ipython
nhs_venv/bin/ipython3
nhs_venv/bin/isympy
nhs_venv/bin/jp.py
nhs_venv/bin/jsonpointer
nhs_venv/bin/jsonschema
nhs_venv/bin/jupyter
nhs_venv/bin/jupyter-bundlerextension
nhs_venv/bin/jupyter-dejavu
nhs_venv/bin/jupyter-events
nhs_venv/bin/jupyter-execute
nhs_venv/bin/jupyter-kernel
nhs_venv/bin/jupyter-kernelspec
nhs_venv/bin/jupyter-migrate
nhs_venv/bin/jupyter-nbclassic
nhs_venv/bin/jupyter-nbclassic-bundlerextension
nhs_venv/bin/jupyter-nbclassic-extension
nhs_venv/bin/jupyter-nbclassic-serverextension
nhs_venv/bin/jupyter-nbconvert
nhs_venv/bin/jupyter-nbextension
nhs_venv/bin/jupyter-notebook
nhs_venv/bin/jupyter-run
nhs_venv/bin/jupyter-server
nhs_venv/bin/jupyter-serverextension
nhs_venv/bin/jupyter-troubleshoot
nhs_venv/bin/jupyter-trust
nhs_venv/bin/landsat.py
nhs_venv/bin/localtileserver
nhs_venv/bin/lsm2bin
nhs_venv/bin/markdown_py
nhs_venv/bin/mercantile
nhs_venv/bin/mlhub
nhs_venv/bin/monitor.py
nhs_venv/bin/morecantile
nhs_venv/bin/mss
nhs_venv/bin/nc3tonc4
nhs_venv/bin/nc4tonc3
nhs_venv/bin/ncinfo
nhs_venv/bin/normalizer
nhs_venv/bin/numba
nhs_venv/bin/ogr_layer_algebra.py
nhs_venv/bin/ogrmerge.py
nhs_venv/bin/panel
nhs_venv/bin/pasteurize
nhs_venv/bin/pct2rgb.py
nhs_venv/bin/pip
nhs_venv/bin/pip3
nhs_venv/bin/pip3.9
nhs_venv/bin/pip3.10
nhs_venv/bin/planetarycomputer
nhs_venv/bin/plasma_store
nhs_venv/bin/pt2to3
nhs_venv/bin/ptdump
nhs_venv/bin/ptrepack
nhs_venv/bin/pttree
nhs_venv/bin/publish.py
nhs_venv/bin/pulptest
nhs_venv/bin/py.test
nhs_venv/bin/pycc
nhs_venv/bin/pyct
nhs_venv/bin/pyftmerge
nhs_venv/bin/pyftsubset
nhs_venv/bin/pygmentize
nhs_venv/bin/pyproj
nhs_venv/bin/pyrsa-decrypt
nhs_venv/bin/pyrsa-encrypt
nhs_venv/bin/pyrsa-keygen
nhs_venv/bin/pyrsa-priv2pub
nhs_venv/bin/pyrsa-sign
nhs_venv/bin/pyrsa-verify
nhs_venv/bin/pysemver
nhs_venv/bin/pytest
nhs_venv/bin/python
nhs_venv/bin/python3
nhs_venv/bin/python3.9
nhs_venv/bin/query_cmr.py
nhs_venv/bin/query_elevations.py
nhs_venv/bin/query_metrics.py
nhs_venv/bin/query_photons.py
nhs_venv/bin/query_version.py
nhs_venv/bin/quilt3
nhs_venv/bin/region_of_interest.py
nhs_venv/bin/rgb2pct.py
nhs_venv/bin/rio
nhs_venv/bin/runxlrd.py
nhs_venv/bin/satpy_retrieve_all_aux_data
nhs_venv/bin/scooby
nhs_venv/bin/send2trash
nhs_venv/bin/sentinelhub
nhs_venv/bin/sentinelhub.aws
nhs_venv/bin/sentinelhub.config
nhs_venv/bin/sentinelhub.download
nhs_venv/bin/sentinelsat
nhs_venv/bin/skivi
nhs_venv/bin/stac-client
nhs_venv/bin/stream_events.py
nhs_venv/bin/streamlit
nhs_venv/bin/streamlit.cmd
nhs_venv/bin/tabulate
nhs_venv/bin/tail_events.py
nhs_venv/bin/tiff2fsspec
nhs_venv/bin/tiffcomment
nhs_venv/bin/tifffile
nhs_venv/bin/tqdm
nhs_venv/bin/ttx
nhs_venv/bin/undill
nhs_venv/bin/utils.py
nhs_venv/bin/utm-converter
nhs_venv/bin/uvicorn
nhs_venv/bin/versioneer
nhs_venv/bin/wheel
nhs_venv/bin/whitebox
nhs_venv/bin/wsdump
nhs_venv/bin/xrspatial
nhs_venv/etc/jupyter/jupyter_notebook_config.d/panel-client-jupyter.json
nhs_venv/etc/jupyter/jupyter_server_config.d/jupyter_server_terminals.json
nhs_venv/etc/jupyter/jupyter_server_config.d/nbclassic.json
nhs_venv/etc/jupyter/jupyter_server_config.d/notebook_shim.json
nhs_venv/etc/jupyter/jupyter_server_config.d/panel-client-jupyter.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/bqplot.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/ipycanvas.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/ipyevents.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/ipygany.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/ipytree.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/jupyter-leaflet.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/jupyterlab-plotly.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/keplergl-jupyter.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/map-widget-for-jupyter.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/pydeck.json
nhs_venv/etc/jupyter/nbconfig/notebook.d/widgetsnbextension.json
nhs_venv/include/h3/h3api.h
nhs_venv/include/site/python3.9/greenlet/greenlet.h
nhs_venv/share/applications/jupyter-nbclassic.desktop
nhs_venv/share/applications/jupyter-notebook.desktop
nhs_venv/share/doc/networkx-2.8.8/LICENSE.txt
nhs_venv/share/doc/networkx-2.8.8/examples/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/3d_drawing/mayavi2_spring.py
nhs_venv/share/doc/networkx-2.8.8/examples/3d_drawing/plot_basic.py
nhs_venv/share/doc/networkx-2.8.8/examples/3d_drawing/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/hartford_drug.edgelist
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_beam_search.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_betweenness_centrality.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_blockmodel.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_circuits.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_davis_club.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_dedensification.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_iterated_dynamical_systems.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_krackhardt_centrality.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_parallel_betweenness.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_rcm.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_snap.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/plot_subgraphs.py
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/algorithms/WormNet.v3.benchmark.txt
nhs_venv/share/doc/networkx-2.8.8/examples/basic/plot_properties.py
nhs_venv/share/doc/networkx-2.8.8/examples/basic/plot_read_write.py
nhs_venv/share/doc/networkx-2.8.8/examples/basic/plot_simple_graph.py
nhs_venv/share/doc/networkx-2.8.8/examples/basic/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/chess_masters_WCC.pgn.bz2
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/knuth_miles.txt.gz
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_chess_masters.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_custom_node_icons.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_degree.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_directed.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_edge_colormap.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_ego_graph.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_eigenvalues.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_four_grids.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_house_with_colors.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_knuth_miles.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_labels_and_colors.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_multipartite_graph.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_node_colormap.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_rainbow_coloring.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_random_geometric_graph.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_sampson.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_selfloops.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_simple_path.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_spectral_grid.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_tsp.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_unix_email.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/plot_weighted_graph.py
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/drawing/unix_email.mbox
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_degree_sequence.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_erdos_renyi.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_expected_degree_sequence.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_football.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_karate_club.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_morse_trie.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_napoleon_russian_campaign.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_roget.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/plot_words.py
nhs_venv/share/doc/networkx-2.8.8/examples/graph/README.txt
nhs_venv/share/doc/networkx-2.8.8/examples/graph/roget_dat.txt.gz
nhs_venv/share/doc/networkx-2.8.8/examples/graph/words_dat.txt.gz
nhs_venv/share/doc/networkx-2.8.8/examples/subclass/plot_antigraph.py
nhs_venv/share/doc/networkx-2.8.8/examples/subclass/plot_printgraph.py
nhs_venv/share/doc/networkx-2.8.8/examples/subclass/README.txt
nhs_venv/share/icons/hicolor/scalable/apps/nbclassic.svg
nhs_venv/share/icons/hicolor/scalable/apps/notebook.svg
nhs_venv/share/jupyter/kernels/python3/kernel.json
nhs_venv/share/jupyter/kernels/python3/logo-32x32.png
nhs_venv/share/jupyter/kernels/python3/logo-64x64.png
nhs_venv/share/jupyter/kernels/python3/logo-svg.svg
nhs_venv/share/jupyter/lab/extensions/here-map-widget-for-jupyter-0.1.0.tgz
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/install.json
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/package.json
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/schemas/@jupyter-widgets/jupyterlab-manager/package.json.orig
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/schemas/@jupyter-widgets/jupyterlab-manager/plugin.json
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/1.6c3ab69171002cbfa04f.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/18.c756b86bf6ebd74dab7b.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/86.970ef07abcc86672015c.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/95.b5a5ff10000a6051fa99.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/95.b5a5ff10000a6051fa99.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/243.6c384ff2649ef572a18a.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/272.3fcd6d7045eecfb56da6.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/279.aa88a78c8bf62c65db54.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/466.f77b3df99f049604bce9.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/523.66fca84c7924f6f7676d.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/638.f3e5e34a28f3334d4f08.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/638.f3e5e34a28f3334d4f08.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/803.b7b75bd6e7977a648c67.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/remoteEntry.1bd01b57743def902f73.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/style.js
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/install.json
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/package.json
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/schemas/@pyviz/jupyterlab_pyviz/package.json.orig
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/schemas/@pyviz/jupyterlab_pyviz/plugin.json
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/static/445.e0d338852f1bcbe1aa57.js
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/static/747.872484f6c86b06b5c3f4.js
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/static/remoteEntry.df174daebca173550cf8.js
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/static/style.js
nhs_venv/share/jupyter/labextensions/@pyviz/jupyterlab_pyviz/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/bqplot/install.json
nhs_venv/share/jupyter/labextensions/bqplot/package.json
nhs_venv/share/jupyter/labextensions/bqplot/static/87.cc5d175e0ffc0d125bd5.js
nhs_venv/share/jupyter/labextensions/bqplot/static/133.2df0d387bef0b99e239a.js
nhs_venv/share/jupyter/labextensions/bqplot/static/212.898d3b3da016aa77edc1.js
nhs_venv/share/jupyter/labextensions/bqplot/static/212.898d3b3da016aa77edc1.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/bqplot/static/501.6c13f92ce49688bde790.js
nhs_venv/share/jupyter/labextensions/bqplot/static/568.829152b9fd5d5b1dc823.js
nhs_venv/share/jupyter/labextensions/bqplot/static/662.d928d9e888427c5996be.js
nhs_venv/share/jupyter/labextensions/bqplot/static/794.8d6261fd8a7307e156f7.js
nhs_venv/share/jupyter/labextensions/bqplot/static/815.4fcd9a1489787115f930.js
nhs_venv/share/jupyter/labextensions/bqplot/static/842.a94bbf6f3349e982fb8b.js
nhs_venv/share/jupyter/labextensions/bqplot/static/981.3f93685e278b785a3338.js
nhs_venv/share/jupyter/labextensions/bqplot/static/981.3f93685e278b785a3338.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/bqplot/static/remoteEntry.99c828c2ee313756f7dc.js
nhs_venv/share/jupyter/labextensions/bqplot/static/style.js
nhs_venv/share/jupyter/labextensions/bqplot/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/ipycanvas/package.json
nhs_venv/share/jupyter/labextensions/ipycanvas/static/136.bbff015346e37aebbdfe.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/480.763095568b9304d33539.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/568.76a60bec63f5f65e5ced.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/764.dc7b08f6512a8a28ecfe.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/764.dc7b08f6512a8a28ecfe.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/ipycanvas/static/901.17af8008fb5e02488406.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/remoteEntry.9693baf6fc7fc4c880d2.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/style.js
nhs_venv/share/jupyter/labextensions/ipycanvas/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/ipyevents/package.json
nhs_venv/share/jupyter/labextensions/ipyevents/static/480.9e7107b6592b73a6d60e.js
nhs_venv/share/jupyter/labextensions/ipyevents/static/568.58cb36d9661d72e99688.js
nhs_venv/share/jupyter/labextensions/ipyevents/static/remoteEntry.176149dcbfb677ea36fb.js
nhs_venv/share/jupyter/labextensions/ipyevents/static/style.js
nhs_venv/share/jupyter/labextensions/ipygany/package.json
nhs_venv/share/jupyter/labextensions/ipygany/static/153.731cf064a717b2eec68e.js
nhs_venv/share/jupyter/labextensions/ipygany/static/212.690d496fa9aec8e06518.js
nhs_venv/share/jupyter/labextensions/ipygany/static/272.0fad1645beca2ed49f5e.js
nhs_venv/share/jupyter/labextensions/ipygany/static/272.0fad1645beca2ed49f5e.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/ipygany/static/367.2d66e682401e2340a8d4.js
nhs_venv/share/jupyter/labextensions/ipygany/static/480.fd8a269df5f1e8d47180.js
nhs_venv/share/jupyter/labextensions/ipygany/static/539.f99c703890c957d631ec.js
nhs_venv/share/jupyter/labextensions/ipygany/static/568.2dac415045ba52492f12.js
nhs_venv/share/jupyter/labextensions/ipygany/static/remoteEntry.8d04f4bf19b3ea22cbf5.js
nhs_venv/share/jupyter/labextensions/ipygany/static/style.js
nhs_venv/share/jupyter/labextensions/ipytree/package.json
nhs_venv/share/jupyter/labextensions/ipytree/static/261.4efb75b6352af894acb4.js
nhs_venv/share/jupyter/labextensions/ipytree/static/287.fd063a1253f3266560f7.js
nhs_venv/share/jupyter/labextensions/ipytree/static/287.fd063a1253f3266560f7.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/ipytree/static/486.4c1ca47efc3790912711.js
nhs_venv/share/jupyter/labextensions/ipytree/static/486.4c1ca47efc3790912711.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/ipytree/static/568.c44c0ae4f70f7df0fe86.js
nhs_venv/share/jupyter/labextensions/ipytree/static/755.71bcc770291b01d6ebaa.js
nhs_venv/share/jupyter/labextensions/ipytree/static/755.71bcc770291b01d6ebaa.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/ipytree/static/remoteEntry.a322e5c11f9830cf62f6.js
nhs_venv/share/jupyter/labextensions/ipytree/static/style.js
nhs_venv/share/jupyter/labextensions/ipytree/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/package.json
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/0b50583aa1b8ff230b57b92263e47a3e.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/0f2c10250081cf1bd9a4d2250b80dba6.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/4f0283c6ce28e888000e978e537a6a56.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/6a1e950d14904d4b6fb5c9bdc3dfad06.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/6e8e462555c4b10dbfbc206e8276e6e2.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/07f16cd155661436fe27959eab15c820.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/9e9c77db241e8a58da99bf28694c907d.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/35.eb4b6d6bf1ffeee78ab0.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/35ae4b5f1bf198c6d955618b85710d05.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/44a526eed258222515aa21eaffd14a96.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/056dcd0b0dea7c78019243311551d64b.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/69fbc9c24b3665b801445c9bccc7017d.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/138.69ef2a39232f5de9d78a.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/243.de3283a4d6c29997826e.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/243.de3283a4d6c29997826e.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/292.4107fc80f490ac63e379.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/340.b813e0996b4847b4fa5f.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/366.525c72fb0fd4b0b7ed4e.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/401d815dc206b8dc1b17cd0e37695975.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/408.24489a1928f1ef461a23.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/473ee081160a469c95199d70e78f55fa.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/549b33bab7247b619c0292995f5a906b.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/550.8c25f64dcc710ad89f76.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/592b7360116d244f9dd932b0c0041982.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/665.61271d899ed18644eb02.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/687.6c0a27b7c659dcc31c14.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/732.755ed92c4bd1cc1f291b.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/738.3cb98a41cc77eed3dc2d.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/751.b6e17f5d4ce247b7937d.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/787.6c817ebd9f207c63c60f.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/790.66b55efd08da6313e94a.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/795.5a0b76ffe458129e8ed4.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/795.5a0b76ffe458129e8ed4.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/818.3d2be5bbcb6537a38633.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/860.24094fcdc2f045826bcd.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/874.28aceb3af2ca7bb62440.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/961.cf93e7085b1c412600d8.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/980.339fbd0abaf4e9f2af05.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/994ef255f2077b24b0d8975e90e37a33.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/2273e3d8ad9264b7daa5bdbf8e6b47f8.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/7910c667cb5ddcdcb4ee3278627c85e1.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/79148a43587cbe5c43d24fa894a78ba3.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/a6137456ed160d7606981aa57c559898.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/cfe6f6ffc5b2d6c482c36c68522f0282.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/d3a5d64a8534322988a4bed1b7dbc8b0.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/ddb8362e333c8f3225da9d578d00c14c.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/deac1d4aa2ccf7ed832e4db55bb64e63.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/e81afdf0b23bc88ea3e6ef3fc2fb65d6.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/f4b0c949877c5f94158208551a57e29d.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/f9b7a75b186911a1b04d08f8db305b7a.gif
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/fd48ced8485c638cadcea3eaab6d0937.png
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/remoteEntry.a397b41514ddde5db0df.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/style.js
nhs_venv/share/jupyter/labextensions/jupyter-leaflet/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/package.json
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/133.ef80d2c67625fb6b7809.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/423.ceb659cfaa00d1ce35cf.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/478.b84116fd218fb8df43ad.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/478.b84116fd218fb8df43ad.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/486.c0a76c73b64be10e5b0a.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/486.c0a76c73b64be10e5b0a.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/657.be7027e4d720dd844a49.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/879.bf4a58998a2611896aae.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/remoteEntry.8391480ec10f46a915ee.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/style.js
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/install.json
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/package.json
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/static/568.1e2faa2ba0bbe59c4780.js
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/static/747.8eb3ddccc7ec4987bff9.js
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/static/remoteEntry.aa1060b2d1221f8e5688.js
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/static/style.js
nhs_venv/share/jupyter/labextensions/jupyterlab_pygments/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/package.json
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/12.291c3b72861400466863.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/117.3c7dd9bfe56b83555212.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/196.cb61abdf4ca5d9ee3164.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/196.cb61abdf4ca5d9ee3164.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/216.389d48976b7a5f19e9ce.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/376.74bb337c99e16458ffc2.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/417.8d51533f0f496676d848.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/417.8d51533f0f496676d848.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/446.f06b94f93a0c55da217c.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/446.f06b94f93a0c55da217c.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/463.38a66385c2b963f35311.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/463.38a66385c2b963f35311.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/480.7e40d44fb20107bac575.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/482.abeeb6055cdcd396cc68.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/482.abeeb6055cdcd396cc68.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/594.d353b27afa0e1f0cd796.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/777.0a22622ea48c48a49c43.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/794.80b7b865e32b49d8ed13.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/855.558e4904f1ff7ed689e5.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/861.e08329113c6efd2c5c47.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/864.f05d69e0b17ecf69aa89.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/864.f05d69e0b17ecf69aa89.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/910.4136a86efcee665ddad9.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/910.4136a86efcee665ddad9.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/920.6784dd8cbae0b2da070c.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/979.8a76b70ef8f2ac204d15.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/remoteEntry.1ff4d2c58578c9133c61.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/style.js
nhs_venv/share/jupyter/labextensions/keplergl-jupyter/static/third-party-licenses.json
nhs_venv/share/jupyter/nbconvert/templates/asciidoc/conf.json
nhs_venv/share/jupyter/nbconvert/templates/asciidoc/index.asciidoc.j2
nhs_venv/share/jupyter/nbconvert/templates/base/celltags.j2
nhs_venv/share/jupyter/nbconvert/templates/base/display_priority.j2
nhs_venv/share/jupyter/nbconvert/templates/base/jupyter_widgets.html.j2
nhs_venv/share/jupyter/nbconvert/templates/base/mathjax.html.j2
nhs_venv/share/jupyter/nbconvert/templates/base/null.j2
nhs_venv/share/jupyter/nbconvert/templates/basic/conf.json
nhs_venv/share/jupyter/nbconvert/templates/basic/index.html.j2
nhs_venv/share/jupyter/nbconvert/templates/classic/base.html.j2
nhs_venv/share/jupyter/nbconvert/templates/classic/conf.json
nhs_venv/share/jupyter/nbconvert/templates/classic/index.html.j2
nhs_venv/share/jupyter/nbconvert/templates/classic/static/style.css
nhs_venv/share/jupyter/nbconvert/templates/compatibility/display_priority.tpl
nhs_venv/share/jupyter/nbconvert/templates/compatibility/full.tpl
nhs_venv/share/jupyter/nbconvert/templates/lab/base.html.j2
nhs_venv/share/jupyter/nbconvert/templates/lab/conf.json
nhs_venv/share/jupyter/nbconvert/templates/lab/index.html.j2
nhs_venv/share/jupyter/nbconvert/templates/lab/static/index.css
nhs_venv/share/jupyter/nbconvert/templates/lab/static/theme-dark.css
nhs_venv/share/jupyter/nbconvert/templates/lab/static/theme-light.css
nhs_venv/share/jupyter/nbconvert/templates/latex/base.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/conf.json
nhs_venv/share/jupyter/nbconvert/templates/latex/display_priority.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/document_contents.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/index.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/null.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/report.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/style_bw_ipython.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/style_bw_python.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/style_ipython.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/style_jupyter.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/latex/style_python.tex.j2
nhs_venv/share/jupyter/nbconvert/templates/markdown/conf.json
nhs_venv/share/jupyter/nbconvert/templates/markdown/index.md.j2
nhs_venv/share/jupyter/nbconvert/templates/python/conf.json
nhs_venv/share/jupyter/nbconvert/templates/python/index.py.j2
nhs_venv/share/jupyter/nbconvert/templates/reveal/base.html.j2
nhs_venv/share/jupyter/nbconvert/templates/reveal/cellslidedata.j2
nhs_venv/share/jupyter/nbconvert/templates/reveal/conf.json
nhs_venv/share/jupyter/nbconvert/templates/reveal/index.html.j2
nhs_venv/share/jupyter/nbconvert/templates/reveal/static/custom_reveal.css
nhs_venv/share/jupyter/nbconvert/templates/rst/conf.json
nhs_venv/share/jupyter/nbconvert/templates/rst/index.rst.j2
nhs_venv/share/jupyter/nbconvert/templates/script/conf.json
nhs_venv/share/jupyter/nbconvert/templates/script/script.j2
nhs_venv/share/jupyter/nbconvert/templates/webpdf/conf.json
nhs_venv/share/jupyter/nbconvert/templates/webpdf/index.pdf.j2
nhs_venv/share/jupyter/nbextensions/bqplot/extension.js
nhs_venv/share/jupyter/nbextensions/bqplot/index.js
nhs_venv/share/jupyter/nbextensions/ipycanvas/extension.js
nhs_venv/share/jupyter/nbextensions/ipycanvas/index.js
nhs_venv/share/jupyter/nbextensions/ipycanvas/index.js.LICENSE.txt
nhs_venv/share/jupyter/nbextensions/ipycanvas/index.js.map
nhs_venv/share/jupyter/nbextensions/ipyevents/extension.js
nhs_venv/share/jupyter/nbextensions/ipyevents/index.js
nhs_venv/share/jupyter/nbextensions/ipyevents/index.js.map
nhs_venv/share/jupyter/nbextensions/ipygany/extension.js
nhs_venv/share/jupyter/nbextensions/ipygany/index.js
nhs_venv/share/jupyter/nbextensions/ipygany/index.js.LICENSE.txt
nhs_venv/share/jupyter/nbextensions/ipygany/index.js.map
nhs_venv/share/jupyter/nbextensions/ipytree/extension.js
nhs_venv/share/jupyter/nbextensions/ipytree/index.js
nhs_venv/share/jupyter/nbextensions/ipytree/index.js.LICENSE.txt
nhs_venv/share/jupyter/nbextensions/ipytree/index.js.map
nhs_venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js
nhs_venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js.map
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/1f2cc17911c8d4a3fa01.png
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/e52214306ad12a5c837e.png
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/extension.js
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/index.js
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/index.js.LICENSE.txt
nhs_venv/share/jupyter/nbextensions/jupyter-leaflet/index.js.map
nhs_venv/share/jupyter/nbextensions/jupyterlab-plotly/extension.js
nhs_venv/share/jupyter/nbextensions/jupyterlab-plotly/index.js
nhs_venv/share/jupyter/nbextensions/jupyterlab-plotly/index.js.LICENSE.txt
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/extension.js
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/extension.js.map
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/index.js
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/index.js.map
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/keplergl.html
nhs_venv/share/jupyter/nbextensions/keplergl-jupyter/main.js
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/2f14248998e2ef09f48cf6ea50e4f16b.png
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/7c02df2f321f23af7d108dc4234f3f33.png
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/42e88a566f5f3c20f5563dc1dd6828da.gif
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/95f7f09ad111d72786f889982fa57f10.png
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/b110a6248f50f33e02d1774dad7019e6.png
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/extension.js
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/index.js
nhs_venv/share/jupyter/nbextensions/map-widget-for-jupyter/index.js.map
nhs_venv/share/jupyter/nbextensions/pydeck/extensionRequires.js
nhs_venv/share/jupyter/nbextensions/pydeck/index.js
nhs_venv/share/jupyter/nbextensions/pydeck/index.js.map
nhs_venv/share/man/man1/ipython.1
nhs_venv/share/man/man1/isympy.1
nhs_venv/share/man/man1/ttx.1
nhs_venv/share/xyzservices/providers.json
nhs_venv/src/h3lib/CMakeLists.txt
nhs_venv/src/h3lib/LICENSE
nhs_venv/src/h3lib/README.md
nhs_venv/src/h3lib/VERSION
nhs_venv/src/h3lib/cmake/Config.cmake.in
nhs_venv/src/h3lib/cmake/TestWrapValgrind.cmake
nhs_venv/src/h3lib/cmake/toolchain.cmake
nhs_venv/src/h3lib/examples/CMakeLists.txt
nhs_venv/src/h3lib/examples/compact.c
nhs_venv/src/h3lib/examples/distance.c
nhs_venv/src/h3lib/examples/edge.c
nhs_venv/src/h3lib/examples/index.c
nhs_venv/src/h3lib/examples/neighbors.c
nhs_venv/src/h3lib/scripts/binding_functions.ps1
nhs_venv/src/h3lib/scripts/binding_functions.sh
nhs_venv/src/h3lib/scripts/coverage.sh.in
nhs_venv/src/h3lib/scripts/publish_website.sh
nhs_venv/src/h3lib/scripts/update_version.sh
nhs_venv/src/h3lib/src/apps/applib/include/args.h
nhs_venv/src/h3lib/src/apps/applib/include/benchmark.h
nhs_venv/src/h3lib/src/apps/applib/include/kml.h
nhs_venv/src/h3lib/src/apps/applib/include/test.h
nhs_venv/src/h3lib/src/apps/applib/include/utility.h
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkH3Api.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkH3Line.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkH3SetToLinkedGeo.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkH3UniEdge.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkKRing.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkPolyfill.c
nhs_venv/src/h3lib/src/apps/benchmarks/benchmarkPolygon.c
nhs_venv/src/h3lib/src/apps/filters/geoToH3.c
nhs_venv/src/h3lib/src/apps/filters/h3ToComponents.c
nhs_venv/src/h3lib/src/apps/filters/h3ToGeo.c
nhs_venv/src/h3lib/src/apps/filters/h3ToGeoBoundary.c
nhs_venv/src/h3lib/src/apps/filters/h3ToLocalIj.c
nhs_venv/src/h3lib/src/apps/filters/hexRange.c
nhs_venv/src/h3lib/src/apps/filters/kRing.c
nhs_venv/src/h3lib/src/apps/filters/localIjToH3.c
nhs_venv/src/h3lib/src/apps/miscapps/generateBaseCellNeighbors.c
nhs_venv/src/h3lib/src/apps/miscapps/generateFaceCenterPoint.c
nhs_venv/src/h3lib/src/apps/miscapps/generateNumHexagons.c
nhs_venv/src/h3lib/src/apps/miscapps/generatePentagonDirectionFaces.c
nhs_venv/src/h3lib/src/apps/miscapps/h3ToGeoBoundaryHier.c
nhs_venv/src/h3lib/src/apps/miscapps/h3ToGeoHier.c
nhs_venv/src/h3lib/src/apps/miscapps/h3ToHier.c
nhs_venv/src/h3lib/src/apps/testapps/mkRandGeo.c
nhs_venv/src/h3lib/src/apps/testapps/mkRandGeoBoundary.c
nhs_venv/src/h3lib/src/apps/testapps/README.txt
nhs_venv/src/h3lib/src/apps/testapps/testBaseCells.c
nhs_venv/src/h3lib/src/apps/testapps/testBBox.c
nhs_venv/src/h3lib/src/apps/testapps/testCompact.c
nhs_venv/src/h3lib/src/apps/testapps/testCoordIj.c
nhs_venv/src/h3lib/src/apps/testapps/testCoordIjk.c
nhs_venv/src/h3lib/src/apps/testapps/testGeoCoord.c
nhs_venv/src/h3lib/src/apps/testapps/testGeoToH3.c
nhs_venv/src/h3lib/src/apps/testapps/testH3Api.c
nhs_venv/src/h3lib/src/apps/testapps/testH3CellArea.c
nhs_venv/src/h3lib/src/apps/testapps/testH3CellAreaExhaustive.c
nhs_venv/src/h3lib/src/apps/testapps/testH3Distance.c
nhs_venv/src/h3lib/src/apps/testapps/testH3DistanceExhaustive.c
nhs_venv/src/h3lib/src/apps/testapps/testH3GetFaces.c
nhs_venv/src/h3lib/src/apps/testapps/testH3Index.c
nhs_venv/src/h3lib/src/apps/testapps/testH3Line.c
nhs_venv/src/h3lib/src/apps/testapps/testH3LineExhaustive.c
nhs_venv/src/h3lib/src/apps/testapps/testH3Memory.c
nhs_venv/src/h3lib/src/apps/testapps/testH3NeighborRotations.c
nhs_venv/src/h3lib/src/apps/testapps/testH3SetToLinkedGeo.c
nhs_venv/src/h3lib/src/apps/testapps/testH3SetToVertexGraph.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToCenterChild.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToChildren.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToGeo.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToGeoBoundary.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToLocalIj.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToLocalIjExhaustive.c
nhs_venv/src/h3lib/src/apps/testapps/testH3ToParent.c
nhs_venv/src/h3lib/src/apps/testapps/testH3UniEdge.c
nhs_venv/src/h3lib/src/apps/testapps/testH3UniEdgeExhaustive.c
nhs_venv/src/h3lib/src/apps/testapps/testHexRanges.c
nhs_venv/src/h3lib/src/apps/testapps/testHexRing.c
nhs_venv/src/h3lib/src/apps/testapps/testKRing.c
nhs_venv/src/h3lib/src/apps/testapps/testLinkedGeo.c
nhs_venv/src/h3lib/src/apps/testapps/testMaxH3ToChildrenSize.c
nhs_venv/src/h3lib/src/apps/testapps/testPentagonIndexes.c
nhs_venv/src/h3lib/src/apps/testapps/testPolyfill.c
nhs_venv/src/h3lib/src/apps/testapps/testPolyfillReported.c
nhs_venv/src/h3lib/src/apps/testapps/testPolygon.c
nhs_venv/src/h3lib/src/apps/testapps/testVec2d.c
nhs_venv/src/h3lib/src/apps/testapps/testVec3d.c
nhs_venv/src/h3lib/src/apps/testapps/testVertex.c
nhs_venv/src/h3lib/src/apps/testapps/testVertexGraph.c
nhs_venv/src/h3lib/src/h3lib/include/algos.h
nhs_venv/src/h3lib/src/h3lib/include/alloc.h
nhs_venv/src/h3lib/src/h3lib/include/baseCells.h
nhs_venv/src/h3lib/src/h3lib/include/bbox.h
nhs_venv/src/h3lib/src/h3lib/include/constants.h
nhs_venv/src/h3lib/src/h3lib/include/coordijk.h
nhs_venv/src/h3lib/src/h3lib/include/faceijk.h
nhs_venv/src/h3lib/src/h3lib/include/geoCoord.h
nhs_venv/src/h3lib/src/h3lib/include/h3api.h.in
nhs_venv/src/h3lib/src/h3lib/include/h3Index.h
nhs_venv/src/h3lib/src/h3lib/include/h3UniEdge.h
nhs_venv/src/h3lib/src/h3lib/include/linkedGeo.h
nhs_venv/src/h3lib/src/h3lib/include/localij.h
nhs_venv/src/h3lib/src/h3lib/include/mathExtensions.h
nhs_venv/src/h3lib/src/h3lib/include/polygon.h
nhs_venv/src/h3lib/src/h3lib/include/polygonAlgos.h
nhs_venv/src/h3lib/src/h3lib/include/vec2d.h
nhs_venv/src/h3lib/src/h3lib/include/vec3d.h
nhs_venv/src/h3lib/src/h3lib/include/vertex.h
nhs_venv/src/h3lib/src/h3lib/include/vertexGraph.h
.DS_Store
nhs_venv/bin/f2py3.10
nhs_venv/bin/jupyter-console
nhs_venv/bin/jupyter-qtconsole
nhs_venv/bin/python3.10
nhs_venv/bin/qtpy
nhs_venv/share/doc/networkx-2.7.1/LICENSE.txt
nhs_venv/share/doc/networkx-2.7.1/examples/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/3d_drawing/mayavi2_spring.py
nhs_venv/share/doc/networkx-2.7.1/examples/3d_drawing/plot_basic.py
nhs_venv/share/doc/networkx-2.7.1/examples/3d_drawing/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/hartford_drug.edgelist
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_beam_search.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_betweenness_centrality.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_blockmodel.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_circuits.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_davis_club.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_dedensification.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_iterated_dynamical_systems.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_krackhardt_centrality.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_parallel_betweenness.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_rcm.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_snap.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/plot_subgraphs.py
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/algorithms/WormNet.v3.benchmark.txt
nhs_venv/share/doc/networkx-2.7.1/examples/basic/plot_properties.py
nhs_venv/share/doc/networkx-2.7.1/examples/basic/plot_read_write.py
nhs_venv/share/doc/networkx-2.7.1/examples/basic/plot_simple_graph.py
nhs_venv/share/doc/networkx-2.7.1/examples/basic/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/chess_masters_WCC.pgn.bz2
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/knuth_miles.txt.gz
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_chess_masters.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_custom_node_icons.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_degree.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_directed.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_edge_colormap.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_ego_graph.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_eigenvalues.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_four_grids.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_house_with_colors.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_knuth_miles.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_labels_and_colors.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_multipartite_graph.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_node_colormap.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_rainbow_coloring.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_random_geometric_graph.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_sampson.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_selfloops.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_simple_path.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_spectral_grid.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_tsp.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_unix_email.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/plot_weighted_graph.py
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/drawing/unix_email.mbox
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_degree_sequence.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_erdos_renyi.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_expected_degree_sequence.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_football.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_karate_club.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_napoleon_russian_campaign.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_roget.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/plot_words.py
nhs_venv/share/doc/networkx-2.7.1/examples/graph/README.txt
nhs_venv/share/doc/networkx-2.7.1/examples/graph/roget_dat.txt.gz
nhs_venv/share/doc/networkx-2.7.1/examples/graph/words_dat.txt.gz
nhs_venv/share/doc/networkx-2.7.1/examples/subclass/plot_antigraph.py
nhs_venv/share/doc/networkx-2.7.1/examples/subclass/plot_printgraph.py
nhs_venv/share/doc/networkx-2.7.1/examples/subclass/README.txt
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/61.21f571face17e35076c2.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/113.dd66397047ecb9a605cf.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/113.dd66397047ecb9a605cf.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/134.40eaa5b8e976096d50b2.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/150.b0e841b75317744a7595.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/291.f707f721e4b3a5489ee0.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/291.f707f721e4b3a5489ee0.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/345.03be96cd091aac4797a5.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/495.5805e8bf9dd8851289a1.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/595.e3c9c115ecf5763f080b.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/596.5d35bd634ac768ff6d16.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/644.11f638668109f1562dd1.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/699.563670613eea7b633a22.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/965.7ea93aa594250a988d2a.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/remoteEntry.d6df56cd69f4640706bc.js
nhs_venv/share/jupyter/labextensions/@jupyter-widgets/jupyterlab-manager/static/third-party-licenses.json
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/133.0099ada2d4521140e754.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/423.8409ad662b0daea3de31.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/478.8d7dac7cd42ef2fc1360.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/478.8d7dac7cd42ef2fc1360.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/486.52aa9063b291ec574154.js.LICENSE.txt
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/657.1d0f2334e566f6677fe2.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/879.f9562768266c9160e2f2.js
nhs_venv/share/jupyter/labextensions/jupyterlab-plotly/static/remoteEntry.f372bf1de02fb50ae6e0.js
nhs_venv/share/jupyter/nbextensions/jupyter-js-widgets/extension.js.LICENSE.txt
nhs_venv/bin/cartopy_feature_download.py
.DS_Store
.DS_Store
.DS_Store
.DS_Store
.DS_Store