This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import shutil | |
| import glob | |
| import os | |
| from pathlib import Path | |
| class FileManager: | |
| def __init__(self): | |
| self.downloadsPath = str(os.path.join(Path.home(), "Downloads")) | |
| self.destinationPath = os.path.dirname(os.path.abspath(__file__)) + '/downloadedFiles/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from selenium import webdriver | |
| from selenium.webdriver.common.action_chains import ActionChains | |
| from selenium.webdriver.common.keys import Keys | |
| import time | |
| class PolyScrapper: | |
| def __init__(self, driverPath): | |
| self.driver = webdriver.Chrome(driverPath) | |
| self.driver.maximize_window() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import poly_scrapper as ps | |
| import file_manager as fm | |
| import time | |
| import datetime | |
| import re | |
| import os | |
| def replace_non_ascii(unicode_string): | |
| real = re.sub('[\W_]+', '', unicode_string) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| using System.Threading; | |
| public class UDPTransmitter : MonoBehaviour | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System; | |
| using System.Net; | |
| using System.Net.Sockets; | |
| using System.Threading; | |
| public class UDPReceiver : MonoBehaviour | |
| { |