Max
Max
Hello - is the num-parameters still working? according to the documentation the num is default 500 - but when i see it right i only get 200 apis when reading...
Hello - is there any way to get the (weekly) EMA-values for a stock? The information i need can be seen with the link below - Its the weekly EMA...
Hello - i would like to retrieve the "Total Equity Gross Minority Interest" from the balance-sheet eg. for the stock JPM This should be 294,127,000 in 2021  But i...
Hello - i try to detect a language from a word with this code: ``` from textblob import TextBlob b = TextBlob("bonjour") print(b.detect_language()) ``` But unfortunately i get this error:...
Hello - i tried the basic example with the following code - ``` from linkedin_scraper import Person, actions from selenium import webdriver from dotenv import load_dotenv, find_dotenv import os from...
Hello - i try to get the profile-information with the following code: ``` from facebook_scraper import get_profile get_profile("zuck") ``` But i only get this error message: ``` $ python exmplFBScraper.py...
Hello - i run the following code and likeing the post works fine - But even tough i set `session.set_do_comment(True, percentage=100) ` to 100 percent it doesn´t make any comments...
Hello - i have the following script which works fine on the one win10 client - but fails on another win10 client - ``` import os from instapy import InstaPy...
I try to read an excel-sheet with the following code: ``` import os import sys import xlwings as xw if __name__ == '__main__': SAVE_INTERVAL = 10 path = os.path.abspath(os.path.dirname(sys.argv[0])) fn...
Hello - i try to run the module using the following code: ``` from seleniumwire import webdriver # Import from seleniumwire driver = webdriver.Chrome() driver.get('https://www.google.com') ``` But i get this...