Releases: fact-project/smart_fact_crawler
Releases · fact-project/smart_fact_crawler
v0.7.0
v0.6.4
v0.6.3
v0.6.2
Fix `None` has no `lower` in case main page looks wrong
Merge pull request #38 from fact-project/fix_rain Set default to empty string for rain
Add rainsensor status on status page, check humidity if rain
Merge pull request #36 from fact-project/rainsensor Update smartfact for rainsensor
Add Bias Temp on status page
Merge pull request #26 from fact-project/biastemp Add bias temp to status page
less features
quick fix, by removing some broken features.
Add observations
This release adds parsing of the smartfact observations.data
page.
from smart_fact_crawler import observations
obs = observations()
print(obs.runs)
Also, the main page now contains the trigger rate and currents info.
Add fallback option
The crawler now has a fallback option for every function, which results in a suitable
value if no value was found at the expected position.
For most values this will be None
or float('nan')
or Quantity(float('nan'), unit)