simonmcnair

Results 28 comments of simonmcnair

I have got this working, I think by modifying /usr/local/lib/python3.9/site-packages/lexicon/providers/namecheap.py ( https://github.com/AnalogJ/lexicon/blob/master/lexicon/providers/namecheap.py) I added: import tldextract and then replacing all the occurrences of: sld, tld = domain.split(".") with: extracted =...

I would still like a debug flag though :-) I added print("--- Request ---") print(response.url) print(extra_payload) print("--- Response ---") print(response.text) prior to if not 200

hi @mr-smithers-excellent . No. I used action secrets. My issue was that when you create a github secret, without telling you, assigns it to a 'production' environment. This means that...

In my opinion only api keys should be in env vars as they can be echo'd out i believe/suspect (guessing).  Username and pw are proper secrets.  This means that you...

I just noticed the topic may be incorrect in healthcheck.sh. Shall I change HEALTHCHECK_TOPIC="${HEALTHCHECK_TOPIC:-iotstack/mosquitto/healthcheck}" to HEALTHCHECK_TOPIC="${HEALTHCHECK_TOPIC:-mosquitto/healthcheck}" ? Cheers

> Thank you for doing this!! > > I was going to suggest that "iotstack" in the default topic might be inappropriate. If it were me submitting this, I'd change...

This would be a valuable addition for those on the free tier. Thanks for looking at it.

It's still not working for me.

is an example of how to do this as follows ? ``` baidu_crawler = BaiduImageCrawler(storage={'root_dir': folder2}) baidu_crawler.session.headers= { 'Accept-Language': 'zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2', 'User-Agent': ('Mozilla/5.0 (Windows NT 10.0; Win64; x64)' 'AppleWebKit/537.36 (KHTML, like...

I am coming across this problem too. Perhaps just wait until all the information is collated before outputting it to stdout so you do know the size ? or figure...