wikipediaGATN 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wikipediagatn-0.1.2/.gitignore +152 -0
- wikipediagatn-0.1.2/LICENSE +674 -0
- wikipediagatn-0.1.2/PKG-INFO +161 -0
- wikipediagatn-0.1.2/README.md +109 -0
- wikipediagatn-0.1.2/data/public/README.md +5 -0
- wikipediagatn-0.1.2/pyproject.toml +176 -0
- wikipediagatn-0.1.2/scripts/README.md +39 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/__init__.py +44 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/adjacency.py +339 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/airport_level_functions.py +1949 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/connections.py +209 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/extract_iata_from_wikipedia.py +519 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/paths.py +67 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/refresh_airport_data.py +525 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/result_processing_airports.py +556 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/result_processing_network.py +199 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/visualise_gatn.py +360 -0
- wikipediagatn-0.1.2/src/wikipediaGATN/wikipedia_network_level.py +503 -0
- wikipediagatn-0.1.2/tests/__init__.py +4 -0
- wikipediagatn-0.1.2/tests/conftest.py +33 -0
- wikipediagatn-0.1.2/tests/test_adjacency.py +312 -0
- wikipediagatn-0.1.2/tests/test_airport_level.py +192 -0
- wikipediagatn-0.1.2/tests/test_airport_level_functions.py +96 -0
- wikipediagatn-0.1.2/tests/test_connections.py +142 -0
- wikipediagatn-0.1.2/tests/test_extract_iata.py +362 -0
- wikipediagatn-0.1.2/tests/test_real_data.py +168 -0
- wikipediagatn-0.1.2/tests/test_result_processing_airports.py +73 -0
- wikipediagatn-0.1.2/tests/test_wikipedia_network_level.py +390 -0
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
# Python environment files
|
|
2
|
+
venv/
|
|
3
|
+
__pycache__/
|
|
4
|
+
|
|
5
|
+
# Byte-compiled / optimized / DLL files
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.py[cod]
|
|
8
|
+
*$py.class
|
|
9
|
+
|
|
10
|
+
# C extensions
|
|
11
|
+
*.so
|
|
12
|
+
|
|
13
|
+
# Distribution / packaging
|
|
14
|
+
.Python
|
|
15
|
+
build/
|
|
16
|
+
develop-eggs/
|
|
17
|
+
dist/
|
|
18
|
+
downloads/
|
|
19
|
+
eggs/
|
|
20
|
+
.eggs/
|
|
21
|
+
lib/
|
|
22
|
+
lib64/
|
|
23
|
+
parts/
|
|
24
|
+
sdist/
|
|
25
|
+
var/
|
|
26
|
+
wheels/
|
|
27
|
+
pip-wheel-metadata/
|
|
28
|
+
share/python-wheels/
|
|
29
|
+
*.egg-info/
|
|
30
|
+
.installed.cfg
|
|
31
|
+
*.egg
|
|
32
|
+
MANIFEST
|
|
33
|
+
|
|
34
|
+
# PyInstaller
|
|
35
|
+
*.manifest
|
|
36
|
+
*.spec
|
|
37
|
+
|
|
38
|
+
# Installer logs
|
|
39
|
+
pip-log.txt
|
|
40
|
+
pip-delete-this-directory.txt
|
|
41
|
+
|
|
42
|
+
# Unit test / coverage reports
|
|
43
|
+
htmlcov/
|
|
44
|
+
.tox/
|
|
45
|
+
.nox/
|
|
46
|
+
.coverage
|
|
47
|
+
.coverage.*
|
|
48
|
+
.cache
|
|
49
|
+
nosetests.xml
|
|
50
|
+
coverage.xml
|
|
51
|
+
*.cover
|
|
52
|
+
*.py,cover
|
|
53
|
+
.hypothesis/
|
|
54
|
+
.pytest_cache/
|
|
55
|
+
|
|
56
|
+
# Translations
|
|
57
|
+
*.mo
|
|
58
|
+
*.pot
|
|
59
|
+
|
|
60
|
+
# Django stuff:
|
|
61
|
+
*.log
|
|
62
|
+
local_settings.py
|
|
63
|
+
db.sqlite3
|
|
64
|
+
db.sqlite3-journal
|
|
65
|
+
|
|
66
|
+
# Flask stuff:
|
|
67
|
+
instance/
|
|
68
|
+
.webassets-cache
|
|
69
|
+
|
|
70
|
+
# Scrapy stuff:
|
|
71
|
+
.scrapy
|
|
72
|
+
|
|
73
|
+
# Sphinx documentation
|
|
74
|
+
docs/_build/
|
|
75
|
+
docs/_static/
|
|
76
|
+
docs/_templates/
|
|
77
|
+
|
|
78
|
+
# PyBuilder
|
|
79
|
+
target/
|
|
80
|
+
|
|
81
|
+
# Jupyter Notebook
|
|
82
|
+
.ipynb_checkpoints
|
|
83
|
+
|
|
84
|
+
# IPython
|
|
85
|
+
profile_default/
|
|
86
|
+
ipython_config.py
|
|
87
|
+
|
|
88
|
+
# pyenv
|
|
89
|
+
.python-version
|
|
90
|
+
|
|
91
|
+
# pipenv
|
|
92
|
+
Pipfile.lock
|
|
93
|
+
|
|
94
|
+
# PEP 582
|
|
95
|
+
__pypackages__/
|
|
96
|
+
|
|
97
|
+
# Celery stuff
|
|
98
|
+
celerybeat-schedule
|
|
99
|
+
celerybeat.pid
|
|
100
|
+
|
|
101
|
+
# SageMath parsed files
|
|
102
|
+
*.sage.py
|
|
103
|
+
|
|
104
|
+
# Environments
|
|
105
|
+
.env
|
|
106
|
+
.venv
|
|
107
|
+
env/
|
|
108
|
+
venv/
|
|
109
|
+
ENV/
|
|
110
|
+
env.bak/
|
|
111
|
+
venv.bak/
|
|
112
|
+
|
|
113
|
+
# Spyder project settings
|
|
114
|
+
.spyderproject
|
|
115
|
+
.spyproject
|
|
116
|
+
|
|
117
|
+
# Rope project settings
|
|
118
|
+
.ropeproject
|
|
119
|
+
|
|
120
|
+
# mkdocs documentation
|
|
121
|
+
/site
|
|
122
|
+
|
|
123
|
+
# mypy
|
|
124
|
+
.mypy_cache/
|
|
125
|
+
.dmypy.json
|
|
126
|
+
dmypy.json
|
|
127
|
+
|
|
128
|
+
# Pyre type checker
|
|
129
|
+
.pyre/
|
|
130
|
+
|
|
131
|
+
# macOS
|
|
132
|
+
.DS_Store
|
|
133
|
+
.AppleDouble
|
|
134
|
+
.LSOverride
|
|
135
|
+
*.swp
|
|
136
|
+
*.swo
|
|
137
|
+
*~
|
|
138
|
+
|
|
139
|
+
# Windows
|
|
140
|
+
Thumbs.db
|
|
141
|
+
ehthumbs.db
|
|
142
|
+
*.lnk
|
|
143
|
+
|
|
144
|
+
# IDE
|
|
145
|
+
.vscode/
|
|
146
|
+
.idea/
|
|
147
|
+
*.sublime-workspace
|
|
148
|
+
*.sublime-project
|
|
149
|
+
.vim/
|
|
150
|
+
|
|
151
|
+
# Project specific (wikipediaGATN)
|
|
152
|
+
data/tmp_results/
|