Skip to content

Commit

Permalink
refactor: change package name to flight_analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
esalonico committed Aug 3, 2023
1 parent b491f6f commit e7b7d82
Show file tree
Hide file tree
Showing 7 changed files with 118 additions and 171 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The whole project is written has been created with Python 3.11 and is based on t

A very simple example of the main scraping functionality could be the following (get all flight from Munich (MUC) to Los Angeles (LAX) on May 28th, 2023):
```
from google_flight_analysis.scrape import *
from flight_analysis.scrape import *
flights = Scrape("MUC", "LAX", "2023-05-28")
flights.data
Expand Down
283 changes: 115 additions & 168 deletions flight_analysis.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions flight_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from datetime import timedelta, datetime
import configparser

from src.google_flight_analysis.scrape import Scrape
from src.google_flight_analysis.database import Database
from src.flight_analysis.scrape import Scrape
from src.flight_analysis.database import Database
import private.private as private

# config
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e7b7d82

Please sign in to comment.