apify 0.1.1

Apify SDK is a scraping and automation framework that can run on Apify platform or independently
Documentation
1
2
3
4
5
6
pub fn is_on_apify() -> bool {
    match std::env::var("APIFY_IS_AT_HOME") {
        Ok(ref x) if x == "1"  => true,
        _ => false
    }
}