AttributeError:模块'requests'没有属性'get'

时间:2016-04-09 20:35:10

标签: python

mongoose.Schema(...)

1 个答案:

答案 0 :(得分:1)

您有另一个名为" requests"的文件。您需要更改它并重试。

此外,您可以尝试使用 pip 重新安装请求

    {
        string pattern = @"\-*\d+";
        string value="Mitchell, -10";
        Match oMatch=Regex.Match(value,pattern);

        if (int.Parse(oMatch.Value) < 0)
        {
            Console.WriteLine(oMatch.Value);
            Console.ReadKey(true);
        }
        else
        {
            Console.WriteLine(oMatch.Value);
            Console.ReadKey(true);
        }
    }