Skip to content

Commit

Permalink
rearrange of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Dainius committed Mar 10, 2024
1 parent 0b4d6bc commit d46448b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions data_collection/tools.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
"""Module providing a functionality to collect data from various sources."""

import os

import glob
import logging
import os

import requests
from requests import RequestException

import time

import pandas as pd
import selenium.common
from pandas import DataFrame
from requests import RequestException

import selenium.common
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import time
import glob

from constants import LOVD_VARIABLES_DATA_TYPES
from constants import (LOVD_FILE_URL_EYS,
GNOMAD_URL_EYS,
Expand Down

0 comments on commit d46448b

Please sign in to comment.