{"id":23231411,"url":"https://github.com/memoryleak07/GFS_NET","last_synced_at":"2025-08-19T16:33:47.002Z","repository":{"id":204197406,"uuid":"710395888","full_name":"memoryleak07/GoogleFlightScraper_NET","owner":"memoryleak07","description":"GoogleFlight scraper","archived":false,"fork":false,"pushed_at":"2024-05-06T12:09:07.000Z","size":10751,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-06T23:28:20.323Z","etag":null,"topics":["csharp","dotnet","dotnetcore","flight","flight-prices","net8","price","scrape-flights-data","scraper"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/memoryleak07.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-26T15:54:31.000Z","updated_at":"2024-05-06T12:09:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"6c5d72b0-152d-4b03-8421-0562a1cc3696","html_url":"https://github.com/memoryleak07/GoogleFlightScraper_NET","commit_stats":null,"previous_names":["memoryleak07/googleflightscraper_net"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memoryleak07%2FGoogleFlightScraper_NET","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memoryleak07%2FGoogleFlightScraper_NET/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memoryleak07%2FGoogleFlightScraper_NET/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/memoryleak07%2FGoogleFlightScraper_NET/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/memoryleak07","download_url":"https://codeload.github.com/memoryleak07/GoogleFlightScraper_NET/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230363941,"owners_count":18214717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","dotnetcore","flight","flight-prices","net8","price","scrape-flights-data","scraper"],"created_at":"2024-12-19T02:14:46.844Z","updated_at":"2025-08-19T16:33:46.985Z","avatar_url":"https://github.com/memoryleak07.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GFS in .NET8\n\n### AVOLOAVOLO.it TRIBUTE\n\nGiven a list of airport codes as departure flights option, a list of airport codes as destinations and the search date range, this simple script will scrape all combination one by one and save the information to a CSV file about the first flight sorted.\n\nSearch parameters are configured in appSettings.json file.\n\n## appSettings.json \n\n```json\n{\n  \"FromAirports\": [ \"NAP\" ],\n  \"ToAirports\": [ \"VIE\", \"IST\" ],\n  \"FirstDepartureDate\": \"2023-12-01\",\n  \"LastDepartureDate\": \"2023-12-11\",\n  \"HowManyDays\": 3,\n  \"FlexDays\": 2,\n  \"OnlyWeekend\": false\n}\n```\n\n- FromAirports: **(list)** Departure airport codes;\n- ToAirports: **(list)** Destination airport codes;\n- FirstDepartureDate: **(string)** First available date for departure flight;\n- LastDepartureDate: **(string)** Last available date for departure flight; \n- HowManyDays: **(integer)** The number of days between departure and return flights;\n- FlexDays: **(integer)** Adds flexible days on the return flight date;\n- OnlyWeekend: **(boolean)** The departure date is only on weekend days.\n\n## Output\n\n```cmd\nWriting results in: 20231029223149.csv\nScraperLoop start.\n2023-12-01 | 2023-12-04 | NAP-VIE | 219 € | Austrian | Diretto | 1 h 40 min\n2023-12-01 | 2023-12-05 | NAP-VIE | 174 € | Biglietti separati prenotati insieme | 1 scalo | 4 h\n2023-12-01 | 2023-12-06 | NAP-VIE | 156 € | Lufthansa, Austrian | 1 scalo | 4 h 25 min\n2023-12-02 | 2023-12-05 | NAP-VIE | 133 € | Biglietti separati prenotati insieme | Diretto | 1 h 45 min\n2023-12-02 | 2023-12-06 | NAP-VIE | 182 € | LufthansaAustrian | 1 scalo | 5 h 30 min\n2023-12-02 | 2023-12-07 | NAP-VIE | 187 € | Lufthansa | 1 scalo | 5 h 30 min\n2023-12-03 | 2023-12-06 | NAP-VIE | 156 € | Lufthansa, Austrian | 1 scalo | 4 h 25 min\n2023-12-03 | 2023-12-07 | NAP-VIE | 161 € | Lufthansa, Austrian | 1 scalo | 4 h 25 min\n2023-12-03 | 2023-12-08 | NAP-VIE | 161 € | Lufthansa, Austrian | 1 scalo | 4 h 25 min\n2023-12-04 | 2023-12-07 | NAP-VIE | 155 € | Austrian | Diretto | 1 h 40 min\n2023-12-04 | 2023-12-08 | NAP-VIE | 147 € | RyanairOperato da Lauda Europe | Diretto | 1 h 45 min\n2023-12-04 | 2023-12-09 | NAP-VIE | 171 € | RyanairOperato da Lauda Europe | Diretto | 1 h 45 min\n2023-12-05 | 2023-12-08 | NAP-VIE | 116 € | Wizz Air | Diretto | 1 h 45 min\n2023-12-05 | 2023-12-09 | NAP-VIE | 138 € | Biglietti separati prenotati insieme | Diretto | 1 h 45 min\n...\n```\n\nOther scraper settings such as Xpaths, Urls, etc. are in the other json files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmemoryleak07%2FGFS_NET","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmemoryleak07%2FGFS_NET","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmemoryleak07%2FGFS_NET/lists"}