mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
removed debugger stuff
This commit is contained in:
parent
18712a08df
commit
e39644ce60
5 changed files with 7 additions and 28 deletions
|
|
@ -10,9 +10,5 @@
|
|||
"ms-azuretools.vscode-docker"
|
||||
]
|
||||
}
|
||||
},
|
||||
// temporary mount local file from local computer. DELETE ME if you are not Jun-te Kim
|
||||
"runArgs": [
|
||||
"--mount", "type=bind,source=/home/kimjunte/data,target=/workspaces/survey-extraction/data"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
18
.vscode/launch.json
vendored
18
.vscode/launch.json
vendored
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Python: Current File",
|
||||
"type": "python",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"console": "integratedTerminal",
|
||||
"justMyCode": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
|
@ -19,9 +19,9 @@ def main():
|
|||
# pprint(list_)
|
||||
|
||||
# POC Scraper -> This part of the code get ths names of wrong format
|
||||
south_coast_scraper = SharePointScraper(SharePointInstaller.SOUTH_COAST_INSULATION_SERVICE)
|
||||
list_of_names = south_coast_scraper.list_of_names_that_has_the_wrong_date_format()
|
||||
logger.info(pformat(list_of_names))
|
||||
#south_coast_scraper = SharePointScraper(SharePointInstaller.SOUTH_COAST_INSULATION_SERVICE)
|
||||
#list_of_names = south_coast_scraper.list_of_names_that_has_the_wrong_date_format()
|
||||
#logger.info(pformat(list_of_names))
|
||||
|
||||
# POC Scraper -> This part of the code gets every variation of housing_assocation names
|
||||
# south_coast_scraper = SharePointScraper(SharePointInstaller.SOUTH_COAST_INSULATION_SERVICE)
|
||||
|
|
@ -38,6 +38,7 @@ def main():
|
|||
import sys
|
||||
print(sys.executable)
|
||||
print("Current working directory:", os.getcwd())
|
||||
raise RuntimeError("hello world")
|
||||
|
||||
|
||||
# def create_temp_file(dict_content):
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ readme = "README.md"
|
|||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"pymupdf (>=1.25.3,<2.0.0)",
|
||||
"msal (>=1.31.1,<2.0.0)"
|
||||
"msal (>=1.31.1,<2.0.0)",
|
||||
]
|
||||
|
||||
[tool.poetry]
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
poetry run python etl/main.py
|
||||
poetry run python etl/main.py --debug
|
||||
Loading…
Add table
Reference in a new issue