Commit eb557e44 by Bjorn Neergaard

fix: format json files in repo

parent 008282b0
{ {
"$schema": "http://json-schema.org/draft-04/schema#", "$schema": "http://json-schema.org/draft-04/schema#",
"name": "Package", "name": "Package",
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"required": [ "required": [
"name", "name",
"version", "version",
"description" "description"
], ],
"properties": { "properties": {
"name": { "name": {
"type": "string", "type": "string",
"description": "Package name." "description": "Package name."
}, },
"version": { "version": {
"type": "string",
"description": "Package version."
},
"description": {
"type": "string",
"description": "Short package description."
},
"keywords": {
"type": "array",
"items": {
"type": "string",
"description": "A tag/keyword that this package relates to."
}
},
"homepage": {
"type": "string",
"description": "Homepage URL for the project.",
"format": "uri"
},
"repository": {
"type": "string",
"description": "Repository URL for the project.",
"format": "uri"
},
"documentation": {
"type": "string",
"description": "Documentation URL for the project.",
"format": "uri"
},
"license": {
"type": "string",
"description": "License name."
},
"authors": {
"$ref": "#/definitions/authors"
},
"maintainers": {
"$ref": "#/definitions/maintainers"
},
"readme": {
"type": "string",
"description": "The path to the README file"
},
"classifiers": {
"type": "array",
"description": "A list of trove classifiers."
},
"packages": {
"type": "array",
"description": "A list of packages to include in the final distribution.",
"items": {
"type": "object",
"description": "Information about where the package resides.",
"additionalProperties": false,
"required": [
"include"
],
"properties": {
"include": {
"type": "string", "type": "string",
"description": "Package version." "description": "What to include in the package."
}, },
"description": { "from": {
"type": "string", "type": "string",
"description": "Short package description." "description": "Where the source directory of the package resides."
}, },
"keywords": { "format": {
"type": "array", "oneOf": [
"items": { {
"type": "string", "type": "string"
"description": "A tag/keyword that this package relates to." },
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "The format(s) for which the package must be included."
}
}
}
},
"include": {
"type": "array",
"description": "A list of files and folders to include."
},
"exclude": {
"type": "array",
"description": "A list of files and folders to exclude."
},
"dependencies": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.",
"required": [
"python"
],
"properties": {
"python": {
"type": "string",
"description": "The Python versions the package is compatible with."
}
},
"$ref": "#/definitions/dependencies",
"additionalProperties": false
},
"dev-dependencies": {
"type": "object",
"description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).",
"$ref": "#/definitions/dependencies",
"additionalProperties": false
},
"extras": {
"type": "object",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"build": {
"type": "string",
"description": "The file used to build extensions."
},
"source": {
"type": "array",
"description": "A set of additional repositories where packages can be found.",
"additionalProperties": {
"$ref": "#/definitions/repository"
},
"items": {
"$ref": "#/definitions/repository"
}
},
"scripts": {
"type": "object",
"description": "A hash of scripts to be installed.",
"items": {
"type": "string"
}
},
"plugins": {
"type": "object",
"description": "A hash of hashes representing plugins",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"type": "object",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"type": "string"
} }
}
}
}
},
"urls": {
"type": "object",
"patternProperties": {
"^.+$": {
"type": "string",
"description": "The full url of the custom url."
}
}
}
},
"definitions": {
"authors": {
"type": "array",
"description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.",
"items": {
"type": "string"
}
},
"maintainers": {
"type": "array",
"description": "List of maintainers, other than the original author(s), that upkeep the package.",
"items": {
"type": "string"
}
},
"dependencies": {
"type": "object",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"oneOf": [
{
"$ref": "#/definitions/dependency"
},
{
"$ref": "#/definitions/long-dependency"
},
{
"$ref": "#/definitions/git-dependency"
},
{
"$ref": "#/definitions/file-dependency"
},
{
"$ref": "#/definitions/path-dependency"
},
{
"$ref": "#/definitions/url-dependency"
},
{
"$ref": "#/definitions/multiple-constraints-dependency"
}
]
}
}
},
"dependency": {
"type": "string",
"description": "The constraint of the dependency."
},
"long-dependency": {
"type": "object",
"required": [
"version"
],
"additionalProperties": false,
"properties": {
"version": {
"type": "string",
"description": "The constraint of the dependency."
}, },
"homepage": { "python": {
"type": "string", "type": "string",
"description": "Homepage URL for the project.", "description": "The python versions for which the dependency should be installed."
"format": "uri"
},
"repository": {
"type": "string",
"description": "Repository URL for the project.",
"format": "uri"
},
"documentation": {
"type": "string",
"description": "Documentation URL for the project.",
"format": "uri"
},
"license": {
"type": "string",
"description": "License name."
},
"authors": {
"$ref": "#/definitions/authors"
},
"maintainers": {
"$ref": "#/definitions/maintainers"
}, },
"readme": { "platform": {
"type": "string", "type": "string",
"description": "The path to the README file" "description": "The platform(s) for which the dependency should be installed."
},
"classifiers": {
"type": "array",
"description": "A list of trove classifiers."
},
"packages": {
"type": "array",
"description": "A list of packages to include in the final distribution.",
"items": {
"type": "object",
"description": "Information about where the package resides.",
"additionalProperties": false,
"required": [
"include"
],
"properties": {
"include": {
"type": "string",
"description": "What to include in the package."
},
"from": {
"type": "string",
"description": "Where the source directory of the package resides."
},
"format": {
"oneOf": [
{"type": "string"},
{"type": "array", "items": {"type": "string"}}
],
"description": "The format(s) for which the package must be included."
}
}
}
}, },
"include": { "markers": {
"type": "array", "type": "string",
"description": "A list of files and folders to include." "description": "The PEP 508 compliant environment markers for which the dependency should be installed."
}, },
"exclude": { "allow-prereleases": {
"type": "array", "type": "boolean",
"description": "A list of files and folders to exclude." "description": "Whether the dependency allows prereleases or not."
}, },
"dependencies": { "allows-prereleases": {
"type": "object", "type": "boolean",
"description": "This is a hash of package name (keys) and version constraints (values) that are required to run this package.", "description": "Whether the dependency allows prereleases or not."
"required": [
"python"
],
"properties": {
"python": {
"type": "string",
"description": "The Python versions the package is compatible with."
}
},
"$ref": "#/definitions/dependencies",
"additionalProperties": false
}, },
"dev-dependencies": { "optional": {
"type": "object", "type": "boolean",
"description": "This is a hash of package name (keys) and version constraints (values) that this package requires for developing it (testing tools and such).", "description": "Whether the dependency is optional or not."
"$ref": "#/definitions/dependencies",
"additionalProperties": false
}, },
"extras": { "extras": {
"type": "object", "type": "array",
"patternProperties": { "description": "The required extras for this dependency.",
"^[a-zA-Z-_.0-9]+$": { "items": {
"type": "array", "type": "string"
"items": { }
"type": "string"
}
}
}
},
"build": {
"type": "string",
"description": "The file used to build extensions."
}, },
"source": { "source": {
"type": "array", "type": "string",
"description": "A set of additional repositories where packages can be found.", "description": "The exclusive source used to search for this dependency."
"additionalProperties": {
"$ref": "#/definitions/repository"
},
"items": {
"$ref": "#/definitions/repository"
}
},
"scripts": {
"type": "object",
"description": "A hash of scripts to be installed.",
"items": {
"type": "string"
}
},
"plugins": {
"type": "object",
"description": "A hash of hashes representing plugins",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"type": "object",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"type": "string"
}
}
}
}
},
"urls": {
"type": "object",
"patternProperties": {
"^.+$": {
"type": "string",
"description": "The full url of the custom url."
}
}
} }
}
}, },
"definitions": { "git-dependency": {
"authors": { "type": "object",
"type": "array", "required": [
"description": "List of authors that contributed to the package. This is typically the main maintainers, not the full list.", "git"
"items": { ],
"type": "string" "additionalProperties": false,
} "properties": {
}, "git": {
"maintainers": { "type": "string",
"type": "array", "description": "The url of the git repository.",
"description": "List of maintainers, other than the original author(s), that upkeep the package.", "format": "uri"
"items": { },
"type": "string" "branch": {
} "type": "string",
"description": "The branch to checkout."
},
"tag": {
"type": "string",
"description": "The tag to checkout."
},
"rev": {
"type": "string",
"description": "The revision to checkout."
},
"python": {
"type": "string",
"description": "The python versions for which the dependency should be installed."
},
"platform": {
"type": "string",
"description": "The platform(s) for which the dependency should be installed."
},
"markers": {
"type": "string",
"description": "The PEP 508 compliant environment markers for which the dependency should be installed."
},
"allow-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"allows-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"optional": {
"type": "boolean",
"description": "Whether the dependency is optional or not."
}, },
"dependencies": { "extras": {
"type": "object", "type": "array",
"patternProperties": { "description": "The required extras for this dependency.",
"^[a-zA-Z-_.0-9]+$": { "items": {
"oneOf": [ "type": "string"
{ }
"$ref": "#/definitions/dependency" }
}, }
{ },
"$ref": "#/definitions/long-dependency" "file-dependency": {
}, "type": "object",
{ "required": [
"$ref": "#/definitions/git-dependency" "file"
}, ],
{ "additionalProperties": false,
"$ref": "#/definitions/file-dependency" "properties": {
}, "file": {
{ "type": "string",
"$ref": "#/definitions/path-dependency" "description": "The path to the file."
}, },
{ "python": {
"$ref": "#/definitions/url-dependency" "type": "string",
}, "description": "The python versions for which the dependency should be installed."
{ },
"$ref": "#/definitions/multiple-constraints-dependency" "platform": {
} "type": "string",
] "description": "The platform(s) for which the dependency should be installed."
} },
} "markers": {
}, "type": "string",
"dependency": { "description": "The PEP 508 compliant environment markers for which the dependency should be installed."
"type": "string", },
"description": "The constraint of the dependency." "optional": {
}, "type": "boolean",
"long-dependency": { "description": "Whether the dependency is optional or not."
"type": "object",
"required": [
"version"
],
"additionalProperties": false,
"properties": {
"version": {
"type": "string",
"description": "The constraint of the dependency."
},
"python": {
"type": "string",
"description": "The python versions for which the dependency should be installed."
},
"platform": {
"type": "string",
"description": "The platform(s) for which the dependency should be installed."
},
"markers": {
"type": "string",
"description": "The PEP 508 compliant environment markers for which the dependency should be installed."
},
"allow-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"allows-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"optional": {
"type": "boolean",
"description": "Whether the dependency is optional or not."
},
"extras": {
"type": "array",
"description": "The required extras for this dependency.",
"items": {
"type": "string"
}
},
"source": {
"type": "string",
"description": "The exclusive source used to search for this dependency."
}
}
},
"git-dependency": {
"type": "object",
"required": [
"git"
],
"additionalProperties": false,
"properties": {
"git": {
"type": "string",
"description": "The url of the git repository.",
"format": "uri"
},
"branch": {
"type": "string",
"description": "The branch to checkout."
},
"tag": {
"type": "string",
"description": "The tag to checkout."
},
"rev": {
"type": "string",
"description": "The revision to checkout."
},
"python": {
"type": "string",
"description": "The python versions for which the dependency should be installed."
},
"platform": {
"type": "string",
"description": "The platform(s) for which the dependency should be installed."
},
"markers": {
"type": "string",
"description": "The PEP 508 compliant environment markers for which the dependency should be installed."
},
"allow-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"allows-prereleases": {
"type": "boolean",
"description": "Whether the dependency allows prereleases or not."
},
"optional": {
"type": "boolean",
"description": "Whether the dependency is optional or not."
},
"extras": {
"type": "array",
"description": "The required extras for this dependency.",
"items": {
"type": "string"
}
}
}
}, },
"file-dependency": { "extras": {
"type": "object", "type": "array",
"required": [ "description": "The required extras for this dependency.",
"file" "items": {
], "type": "string"
"additionalProperties": false, }
"properties": { }
"file": { }
"type": "string", },
"description": "The path to the file." "path-dependency": {
}, "type": "object",
"python": { "required": [
"type": "string", "path"
"description": "The python versions for which the dependency should be installed." ],
}, "additionalProperties": false,
"platform": { "properties": {
"type": "string", "path": {
"description": "The platform(s) for which the dependency should be installed." "type": "string",
}, "description": "The path to the dependency."
"markers": { },
"type": "string", "python": {
"description": "The PEP 508 compliant environment markers for which the dependency should be installed." "type": "string",
}, "description": "The python versions for which the dependency should be installed."
"optional": { },
"type": "boolean", "platform": {
"description": "Whether the dependency is optional or not." "type": "string",
}, "description": "The platform(s) for which the dependency should be installed."
"extras": { },
"type": "array", "markers": {
"description": "The required extras for this dependency.", "type": "string",
"items": { "description": "The PEP 508 compliant environment markers for which the dependency should be installed."
"type": "string" },
} "optional": {
} "type": "boolean",
} "description": "Whether the dependency is optional or not."
}, },
"path-dependency": { "extras": {
"type": "object", "type": "array",
"required": [ "description": "The required extras for this dependency.",
"path" "items": {
], "type": "string"
"additionalProperties": false, }
"properties": { },
"path": { "develop": {
"type": "string", "type": "boolean",
"description": "The path to the dependency." "description": "Whether to install the dependency in development mode."
}, }
"python": { }
"type": "string", },
"description": "The python versions for which the dependency should be installed." "url-dependency": {
}, "type": "object",
"platform": { "required": [
"type": "string", "url"
"description": "The platform(s) for which the dependency should be installed." ],
}, "additionalProperties": false,
"markers": { "properties": {
"type": "string", "url": {
"description": "The PEP 508 compliant environment markers for which the dependency should be installed." "type": "string",
}, "description": "The url to the file."
"optional": { },
"type": "boolean", "python": {
"description": "Whether the dependency is optional or not." "type": "string",
}, "description": "The python versions for which the dependency should be installed."
"extras": { },
"type": "array", "platform": {
"description": "The required extras for this dependency.", "type": "string",
"items": { "description": "The platform(s) for which the dependency should be installed."
"type": "string" },
} "markers": {
}, "type": "string",
"develop": { "description": "The PEP 508 compliant environment markers for which the dependency should be installed."
"type": "boolean", },
"description": "Whether to install the dependency in development mode." "optional": {
} "type": "boolean",
} "description": "Whether the dependency is optional or not."
}, },
"url-dependency": { "extras": {
"type": "object", "type": "array",
"required": [ "description": "The required extras for this dependency.",
"url" "items": {
], "type": "string"
"additionalProperties": false, }
"properties": { }
"url": { }
"type": "string", },
"description": "The url to the file." "multiple-constraints-dependency": {
}, "type": "array",
"python": { "minItems": 1,
"type": "string", "items": {
"description": "The python versions for which the dependency should be installed." "oneOf": [
}, {
"platform": { "$ref": "#/definitions/dependency"
"type": "string", },
"description": "The platform(s) for which the dependency should be installed." {
}, "$ref": "#/definitions/long-dependency"
"markers": { },
"type": "string", {
"description": "The PEP 508 compliant environment markers for which the dependency should be installed." "$ref": "#/definitions/git-dependency"
}, },
"optional": { {
"type": "boolean", "$ref": "#/definitions/file-dependency"
"description": "Whether the dependency is optional or not." },
}, {
"extras": { "$ref": "#/definitions/path-dependency"
"type": "array", },
"description": "The required extras for this dependency.", {
"items": { "$ref": "#/definitions/url-dependency"
"type": "string" }
} ]
} }
},
"scripts": {
"type": "object",
"patternProperties": {
"^[a-zA-Z-_.0-9]+$": {
"oneOf": [
{
"$ref": "#/definitions/script"
},
{
"$ref": "#/definitions/extra-script"
} }
]
}
}
},
"script": {
"type": "string",
"description": "A simple script pointing to a callable object."
},
"extra-script": {
"type": "object",
"description": "A script that should be installed only if extras are activated.",
"additionalProperties": false,
"properties": {
"callable": {
"$ref": "#/definitions/script"
}, },
"multiple-constraints-dependency": { "extras": {
"type": "array", "type": "array",
"minItems": 1, "description": "The required extras for this script.",
"items": { "items": {
"oneOf": [ "type": "string"
{ }
"$ref": "#/definitions/dependency" }
}, }
{ },
"$ref": "#/definitions/long-dependency" "repository": {
}, "type": "object",
{ "additionalProperties": false,
"$ref": "#/definitions/git-dependency" "properties": {
}, "name": {
{ "type": "string",
"$ref": "#/definitions/file-dependency" "description": "The name of the repository"
},
{
"$ref": "#/definitions/path-dependency"
},
{
"$ref": "#/definitions/url-dependency"
}
]
}
}, },
"scripts": { "url": {
"type": "object", "type": "string",
"patternProperties": { "description": "The url of the repository",
"^[a-zA-Z-_.0-9]+$": { "format": "uri"
"oneOf": [
{
"$ref": "#/definitions/script"
},
{
"$ref": "#/definitions/extra-script"
}
]
}
}
}, },
"script": { "default": {
"type": "string", "type": "boolean",
"description": "A simple script pointing to a callable object." "description": "Make this repository the default (disable PyPI)"
},
"extra-script": {
"type": "object",
"description": "A script that should be installed only if extras are activated.",
"additionalProperties": false,
"properties": {
"callable": {
"$ref": "#/definitions/script"
},
"extras": {
"type": "array",
"description": "The required extras for this script.",
"items": {
"type": "string"
}
}
}
}, },
"repository": { "secondary": {
"type": "object", "type": "boolean",
"additionalProperties": false, "description": "Declare this repository as secondary, i.e. it will only be looked up last for packages."
"properties": {
"name": {
"type": "string",
"description": "The name of the repository"
},
"url": {
"type": "string",
"description": "The url of the repository",
"format": "uri"
},
"default": {
"type": "boolean",
"description": "Make this repository the default (disable PyPI)"
},
"secondary": {
"type": "boolean",
"description": "Declare this repository as secondary, i.e. it will only be looked up last for packages."
}
}
} }
}
} }
}
} }
{ {
"info": { "info": {
"author": "Hynek Schlawack", "author": "Hynek Schlawack",
"author_email": "hs@ox.cx", "author_email": "hs@ox.cx",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules" "Topic :: Software Development :: Libraries :: Python Modules"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://www.attrs.org/",
"keywords": "class,attribute,boilerplate",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "attrs",
"package_url": "https://pypi.org/project/attrs/",
"platform": "",
"project_url": "https://pypi.org/project/attrs/",
"release_url": "https://pypi.org/project/attrs/17.4.0/",
"requires_dist": [
"coverage; extra == 'dev'",
"hypothesis; extra == 'dev'",
"pympler; extra == 'dev'",
"pytest; extra == 'dev'",
"six; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'docs'",
"zope.interface; extra == 'docs'",
"coverage; extra == 'tests'",
"hypothesis; extra == 'tests'",
"pympler; extra == 'tests'",
"pytest; extra == 'tests'",
"six; extra == 'tests'",
"zope.interface; extra == 'tests'"
],
"requires_python": "",
"summary": "Classes Without Boilerplate",
"version": "17.4.0"
},
"last_serial": 3451237,
"releases": {
"17.4.0": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
},
"downloads": -1,
"filename": "attrs-17.4.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 31658,
"upload_time": "2017-12-30T08:20:05",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d7a89063b2e0fd36bd82389c4d82821d",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
},
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://www.attrs.org/",
{ "keywords": "class,attribute,boilerplate",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "5835a573b3f0316e1602dac3fd9c1daf", "maintainer_email": "",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450" "name": "attrs",
}, "package_url": "https://pypi.org/project/attrs/",
"downloads": -1, "platform": "",
"filename": "attrs-17.4.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/attrs/",
"has_sig": true, "release_url": "https://pypi.org/project/attrs/17.4.0/",
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf", "requires_dist": [
"packagetype": "bdist_wheel", "coverage; extra == 'dev'",
"python_version": "py2.py3", "hypothesis; extra == 'dev'",
"size": 31658, "pympler; extra == 'dev'",
"upload_time": "2017-12-30T08:20:05", "pytest; extra == 'dev'",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl" "six; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'docs'",
"zope.interface; extra == 'docs'",
"coverage; extra == 'tests'",
"hypothesis; extra == 'tests'",
"pympler; extra == 'tests'",
"pytest; extra == 'tests'",
"six; extra == 'tests'",
"zope.interface; extra == 'tests'"
],
"requires_python": "",
"summary": "Classes Without Boilerplate",
"version": "17.4.0"
},
"last_serial": 3451237,
"releases": {
"17.4.0": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "attrs-17.4.0-py2.py3-none-any.whl",
"digests": { "has_sig": true,
"md5": "d7a89063b2e0fd36bd82389c4d82821d", "md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 31658,
"filename": "attrs-17.4.0.tar.gz", "upload_time": "2017-12-30T08:20:05",
"has_sig": true, "url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 97071, "digests": {
"upload_time": "2017-12-30T08:20:08", "md5": "d7a89063b2e0fd36bd82389c4d82821d",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz" "sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
} },
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
},
"downloads": -1,
"filename": "attrs-17.4.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 31658,
"upload_time": "2017-12-30T08:20:05",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d7a89063b2e0fd36bd82389c4d82821d",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
},
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Hynek Schlawack", "author": "Hynek Schlawack",
"author_email": "hs@ox.cx", "author_email": "hs@ox.cx",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules" "Topic :: Software Development :: Libraries :: Python Modules"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://www.attrs.org/",
"keywords": "class,attribute,boilerplate",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "attrs",
"package_url": "https://pypi.org/project/attrs/",
"platform": "",
"project_url": "https://pypi.org/project/attrs/",
"release_url": "https://pypi.org/project/attrs/17.4.0/",
"requires_dist": [
"coverage; extra == 'dev'",
"hypothesis; extra == 'dev'",
"pympler; extra == 'dev'",
"pytest; extra == 'dev'",
"six; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'docs'",
"zope.interface; extra == 'docs'",
"coverage; extra == 'tests'",
"hypothesis; extra == 'tests'",
"pympler; extra == 'tests'",
"pytest; extra == 'tests'",
"six; extra == 'tests'",
"zope.interface; extra == 'tests'"
],
"requires_python": "",
"summary": "Classes Without Boilerplate",
"version": "17.4.0"
},
"last_serial": 3451237,
"releases": {
"17.4.0": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
},
"downloads": -1,
"filename": "attrs-17.4.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 31658,
"upload_time": "2017-12-30T08:20:05",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d7a89063b2e0fd36bd82389c4d82821d",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
},
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://www.attrs.org/",
{ "keywords": "class,attribute,boilerplate",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "5835a573b3f0316e1602dac3fd9c1daf", "maintainer_email": "",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450" "name": "attrs",
}, "package_url": "https://pypi.org/project/attrs/",
"downloads": -1, "platform": "",
"filename": "attrs-17.4.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/attrs/",
"has_sig": true, "release_url": "https://pypi.org/project/attrs/17.4.0/",
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf", "requires_dist": [
"packagetype": "bdist_wheel", "coverage; extra == 'dev'",
"python_version": "py2.py3", "hypothesis; extra == 'dev'",
"size": 31658, "pympler; extra == 'dev'",
"upload_time": "2017-12-30T08:20:05", "pytest; extra == 'dev'",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl" "six; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'dev'",
"zope.interface; extra == 'dev'",
"sphinx; extra == 'docs'",
"zope.interface; extra == 'docs'",
"coverage; extra == 'tests'",
"hypothesis; extra == 'tests'",
"pympler; extra == 'tests'",
"pytest; extra == 'tests'",
"six; extra == 'tests'",
"zope.interface; extra == 'tests'"
],
"requires_python": "",
"summary": "Classes Without Boilerplate",
"version": "17.4.0"
},
"last_serial": 3451237,
"releases": {
"17.4.0": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "attrs-17.4.0-py2.py3-none-any.whl",
"digests": { "has_sig": true,
"md5": "d7a89063b2e0fd36bd82389c4d82821d", "md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 31658,
"filename": "attrs-17.4.0.tar.gz", "upload_time": "2017-12-30T08:20:05",
"has_sig": true, "url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 97071, "digests": {
"upload_time": "2017-12-30T08:20:08", "md5": "d7a89063b2e0fd36bd82389c4d82821d",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz" "sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
} },
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "5835a573b3f0316e1602dac3fd9c1daf",
"sha256": "a17a9573a6f475c99b551c0e0a812707ddda1ec9653bed04c13841404ed6f450"
},
"downloads": -1,
"filename": "attrs-17.4.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5835a573b3f0316e1602dac3fd9c1daf",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 31658,
"upload_time": "2017-12-30T08:20:05",
"url": "https://files.pythonhosted.org/packages/b5/60/4e178c1e790fd60f1229a9b3cb2f8bc2f4cc6ff2c8838054c142c70b5adc/attrs-17.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d7a89063b2e0fd36bd82389c4d82821d",
"sha256": "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9"
},
"downloads": -1,
"filename": "attrs-17.4.0.tar.gz",
"has_sig": true,
"md5_digest": "d7a89063b2e0fd36bd82389c4d82821d",
"packagetype": "sdist",
"python_version": "source",
"size": 97071,
"upload_time": "2017-12-30T08:20:08",
"url": "https://files.pythonhosted.org/packages/8b/0b/a06cfcb69d0cb004fde8bc6f0fd192d96d565d1b8aa2829f0f20adb796e5/attrs-17.4.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "\u0141ukasz Langa", "author": "Łukasz Langa",
"author_email": "lukasz@langa.pl", "author_email": "lukasz@langa.pl",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
......
{ {
"info": { "info": {
"author": "Arnon Yaari", "author": "Arnon Yaari",
"author_email": "tartley@tartley.com", "author_email": "tartley@tartley.com",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: Console", "Environment :: Console",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Topic :: Terminals" "Topic :: Terminals"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "UNKNOWN", "download_url": "UNKNOWN",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/tartley/colorama",
"keywords": "color colour terminal text ansi windows crossplatform xplatform",
"license": "BSD",
"maintainer": null,
"maintainer_email": null,
"name": "colorama",
"package_url": "https://pypi.org/project/colorama/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/colorama/",
"release_url": "https://pypi.org/project/colorama/0.3.9/",
"requires_dist": null,
"requires_python": null,
"summary": "Cross-platform colored terminal text.",
"version": "0.3.9"
},
"last_serial": 2833818,
"releases": {
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
},
"downloads": -1,
"filename": "colorama-0.3.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 20181,
"upload_time": "2017-04-27T07:12:36",
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3a0e415259690f4dd7455c2683ee5850",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
},
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/tartley/colorama",
{ "keywords": "color colour terminal text ansi windows crossplatform xplatform",
"comment_text": "", "license": "BSD",
"digests": { "maintainer": null,
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3", "maintainer_email": null,
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda" "name": "colorama",
}, "package_url": "https://pypi.org/project/colorama/",
"downloads": -1, "platform": "UNKNOWN",
"filename": "colorama-0.3.9-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/colorama/",
"has_sig": false, "release_url": "https://pypi.org/project/colorama/0.3.9/",
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": null,
"python_version": "2.7", "summary": "Cross-platform colored terminal text.",
"size": 20181, "version": "0.3.9"
"upload_time": "2017-04-27T07:12:36", },
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl" "last_serial": 2833818,
"releases": {
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "colorama-0.3.9-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "3a0e415259690f4dd7455c2683ee5850", "md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1" "packagetype": "bdist_wheel",
}, "python_version": "2.7",
"downloads": -1, "size": 20181,
"filename": "colorama-0.3.9.tar.gz", "upload_time": "2017-04-27T07:12:36",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
"md5_digest": "3a0e415259690f4dd7455c2683ee5850", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 25053, "digests": {
"upload_time": "2017-04-27T07:12:12", "md5": "3a0e415259690f4dd7455c2683ee5850",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz" "sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
} },
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
},
"downloads": -1,
"filename": "colorama-0.3.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 20181,
"upload_time": "2017-04-27T07:12:36",
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3a0e415259690f4dd7455c2683ee5850",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
},
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Arnon Yaari", "author": "Arnon Yaari",
"author_email": "tartley@tartley.com", "author_email": "tartley@tartley.com",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Environment :: Console", "Environment :: Console",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Topic :: Terminals" "Topic :: Terminals"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "UNKNOWN", "download_url": "UNKNOWN",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/tartley/colorama",
"keywords": "color colour terminal text ansi windows crossplatform xplatform",
"license": "BSD",
"maintainer": null,
"maintainer_email": null,
"name": "colorama",
"package_url": "https://pypi.org/project/colorama/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/colorama/",
"release_url": "https://pypi.org/project/colorama/0.3.9/",
"requires_dist": null,
"requires_python": null,
"summary": "Cross-platform colored terminal text.",
"version": "0.3.9"
},
"last_serial": 2833818,
"releases": {
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
},
"downloads": -1,
"filename": "colorama-0.3.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 20181,
"upload_time": "2017-04-27T07:12:36",
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3a0e415259690f4dd7455c2683ee5850",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
},
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/tartley/colorama",
{ "keywords": "color colour terminal text ansi windows crossplatform xplatform",
"comment_text": "", "license": "BSD",
"digests": { "maintainer": null,
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3", "maintainer_email": null,
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda" "name": "colorama",
}, "package_url": "https://pypi.org/project/colorama/",
"downloads": -1, "platform": "UNKNOWN",
"filename": "colorama-0.3.9-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/colorama/",
"has_sig": false, "release_url": "https://pypi.org/project/colorama/0.3.9/",
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": null,
"python_version": "2.7", "summary": "Cross-platform colored terminal text.",
"size": 20181, "version": "0.3.9"
"upload_time": "2017-04-27T07:12:36", },
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl" "last_serial": 2833818,
"releases": {
"0.3.9": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "colorama-0.3.9-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "3a0e415259690f4dd7455c2683ee5850", "md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1" "packagetype": "bdist_wheel",
}, "python_version": "2.7",
"downloads": -1, "size": 20181,
"filename": "colorama-0.3.9.tar.gz", "upload_time": "2017-04-27T07:12:36",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
"md5_digest": "3a0e415259690f4dd7455c2683ee5850", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 25053, "digests": {
"upload_time": "2017-04-27T07:12:12", "md5": "3a0e415259690f4dd7455c2683ee5850",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz" "sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
} },
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "cc0c01c7b3b34d0354d813e9ab26aca3",
"sha256": "463f8483208e921368c9f306094eb6f725c6ca42b0f97e313cb5d5512459feda"
},
"downloads": -1,
"filename": "colorama-0.3.9-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cc0c01c7b3b34d0354d813e9ab26aca3",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 20181,
"upload_time": "2017-04-27T07:12:36",
"url": "https://files.pythonhosted.org/packages/db/c8/7dcf9dbcb22429512708fe3a547f8b6101c0d02137acbd892505aee57adf/colorama-0.3.9-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3a0e415259690f4dd7455c2683ee5850",
"sha256": "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"
},
"downloads": -1,
"filename": "colorama-0.3.9.tar.gz",
"has_sig": false,
"md5_digest": "3a0e415259690f4dd7455c2683ee5850",
"packagetype": "sdist",
"python_version": "source",
"size": 25053,
"upload_time": "2017-04-27T07:12:12",
"url": "https://files.pythonhosted.org/packages/e6/76/257b53926889e2835355d74fec73d82662100135293e17d382e2b74d1669/colorama-0.3.9.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Testing Cabal", "author": "Testing Cabal",
"author_email": "testing-in-python@lists.idyll.org", "author_email": "testing-in-python@lists.idyll.org",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules" "Topic :: Software Development :: Libraries :: Python Modules"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "UNKNOWN", "download_url": "UNKNOWN",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://funcsigs.readthedocs.org",
"keywords": null,
"license": "ASL",
"maintainer": null,
"maintainer_email": null,
"name": "funcsigs",
"package_url": "https://pypi.org/project/funcsigs/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/funcsigs/",
"release_url": "https://pypi.org/project/funcsigs/1.0.2/",
"requires_dist": null,
"requires_python": null,
"summary": "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+",
"version": "1.0.2"
},
"last_serial": 2083703,
"releases": {
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
},
"downloads": -1,
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "701d58358171f34b6d1197de2923a35a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 17697,
"upload_time": "2016-04-25T22:22:05",
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
},
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://funcsigs.readthedocs.org",
{ "keywords": null,
"comment_text": "", "license": "ASL",
"digests": { "maintainer": null,
"md5": "701d58358171f34b6d1197de2923a35a", "maintainer_email": null,
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca" "name": "funcsigs",
}, "package_url": "https://pypi.org/project/funcsigs/",
"downloads": -1, "platform": "UNKNOWN",
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/funcsigs/",
"has_sig": true, "release_url": "https://pypi.org/project/funcsigs/1.0.2/",
"md5_digest": "701d58358171f34b6d1197de2923a35a", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": null,
"python_version": "2.7", "summary": "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+",
"size": 17697, "version": "1.0.2"
"upload_time": "2016-04-25T22:22:05", },
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl" "last_serial": 2083703,
"releases": {
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"digests": { "has_sig": true,
"md5": "7e583285b1fb8a76305d6d68f4ccc14e", "md5_digest": "701d58358171f34b6d1197de2923a35a",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50" "packagetype": "bdist_wheel",
}, "python_version": "2.7",
"downloads": -1, "size": 17697,
"filename": "funcsigs-1.0.2.tar.gz", "upload_time": "2016-04-25T22:22:05",
"has_sig": true, "url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 27947, "digests": {
"upload_time": "2016-04-25T22:22:33", "md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz" "sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
} },
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
},
"downloads": -1,
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "701d58358171f34b6d1197de2923a35a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 17697,
"upload_time": "2016-04-25T22:22:05",
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
},
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Testing Cabal", "author": "Testing Cabal",
"author_email": "testing-in-python@lists.idyll.org", "author_email": "testing-in-python@lists.idyll.org",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules" "Topic :: Software Development :: Libraries :: Python Modules"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "UNKNOWN", "download_url": "UNKNOWN",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://funcsigs.readthedocs.org",
"keywords": null,
"license": "ASL",
"maintainer": null,
"maintainer_email": null,
"name": "funcsigs",
"package_url": "https://pypi.org/project/funcsigs/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/funcsigs/",
"release_url": "https://pypi.org/project/funcsigs/1.0.2/",
"requires_dist": null,
"requires_python": null,
"summary": "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+",
"version": "1.0.2"
},
"last_serial": 2083703,
"releases": {
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
},
"downloads": -1,
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "701d58358171f34b6d1197de2923a35a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 17697,
"upload_time": "2016-04-25T22:22:05",
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
},
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://funcsigs.readthedocs.org",
{ "keywords": null,
"comment_text": "", "license": "ASL",
"digests": { "maintainer": null,
"md5": "701d58358171f34b6d1197de2923a35a", "maintainer_email": null,
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca" "name": "funcsigs",
}, "package_url": "https://pypi.org/project/funcsigs/",
"downloads": -1, "platform": "UNKNOWN",
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/funcsigs/",
"has_sig": true, "release_url": "https://pypi.org/project/funcsigs/1.0.2/",
"md5_digest": "701d58358171f34b6d1197de2923a35a", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": null,
"python_version": "2.7", "summary": "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+",
"size": 17697, "version": "1.0.2"
"upload_time": "2016-04-25T22:22:05", },
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl" "last_serial": 2083703,
"releases": {
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"digests": { "has_sig": true,
"md5": "7e583285b1fb8a76305d6d68f4ccc14e", "md5_digest": "701d58358171f34b6d1197de2923a35a",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50" "packagetype": "bdist_wheel",
}, "python_version": "2.7",
"downloads": -1, "size": 17697,
"filename": "funcsigs-1.0.2.tar.gz", "upload_time": "2016-04-25T22:22:05",
"has_sig": true, "url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 27947, "digests": {
"upload_time": "2016-04-25T22:22:33", "md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz" "sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
} },
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "701d58358171f34b6d1197de2923a35a",
"sha256": "330cc27ccbf7f1e992e69fef78261dc7c6569012cf397db8d3de0234e6c937ca"
},
"downloads": -1,
"filename": "funcsigs-1.0.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "701d58358171f34b6d1197de2923a35a",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"size": 17697,
"upload_time": "2016-04-25T22:22:05",
"url": "https://files.pythonhosted.org/packages/69/cb/f5be453359271714c01b9bd06126eaf2e368f1fddfff30818754b5ac2328/funcsigs-1.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7e583285b1fb8a76305d6d68f4ccc14e",
"sha256": "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
},
"downloads": -1,
"filename": "funcsigs-1.0.2.tar.gz",
"has_sig": true,
"md5_digest": "7e583285b1fb8a76305d6d68f4ccc14e",
"packagetype": "sdist",
"python_version": "source",
"size": 27947,
"upload_time": "2016-04-25T22:22:33",
"url": "https://files.pythonhosted.org/packages/94/4a/db842e7a0545de1cdb0439bb80e6e42dfe82aaeaadd4072f2263a4fbed23/funcsigs-1.0.2.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Timothy Crosley", "author": "Timothy Crosley",
"author_email": "timothy.crosley@gmail.com", "author_email": "timothy.crosley@gmail.com",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Environment :: Console", "Environment :: Console",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"description_content_type": null, "description_content_type": null,
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/timothycrosley/isort",
"keywords": "Refactor",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "isort",
"package_url": "https://pypi.org/project/isort/",
"platform": "",
"project_url": "https://pypi.org/project/isort/",
"project_urls": {
"Homepage": "https://github.com/timothycrosley/isort"
},
"release_url": "https://pypi.org/project/isort/4.3.4/",
"requires_dist": null,
"requires_python": "",
"summary": "A Python utility / library to sort Python imports.",
"version": "4.3.4"
}, },
"last_serial": 3575149, "home_page": "https://github.com/timothycrosley/isort",
"releases": { "keywords": "Refactor",
"4.3.4": [ "license": "MIT",
{ "maintainer": "",
"comment_text": "", "maintainer_email": "",
"digests": { "name": "isort",
"md5": "f0ad7704b6dc947073398ba290c3517f", "package_url": "https://pypi.org/project/isort/",
"sha256": "ec9ef8f4a9bc6f71eec99e1806bfa2de401650d996c59330782b89a5555c1497" "platform": "",
}, "project_url": "https://pypi.org/project/isort/",
"downloads": -1, "project_urls": {
"filename": "isort-4.3.4-py2-none-any.whl", "Homepage": "https://github.com/timothycrosley/isort"
"has_sig": false,
"md5_digest": "f0ad7704b6dc947073398ba290c3517f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 45393,
"upload_time": "2018-02-12T15:06:38",
"url": "https://files.pythonhosted.org/packages/41/d8/a945da414f2adc1d9e2f7d6e7445b27f2be42766879062a2e63616ad4199/isort-4.3.4-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fbaac4cd669ac21ea9e21ab1ea3180db",
"sha256": "1153601da39a25b14ddc54955dbbacbb6b2d19135386699e2ad58517953b34af"
},
"downloads": -1,
"filename": "isort-4.3.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fbaac4cd669ac21ea9e21ab1ea3180db",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 45352,
"upload_time": "2018-02-12T15:06:20",
"url": "https://files.pythonhosted.org/packages/1f/2c/22eee714d7199ae0464beda6ad5fedec8fee6a2f7ffd1e8f1840928fe318/isort-4.3.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fb554e9c8f9aa76e333a03d470a5cf52",
"sha256": "b9c40e9750f3d77e6e4d441d8b0266cf555e7cdabdcff33c4fd06366ca761ef8"
},
"downloads": -1,
"filename": "isort-4.3.4.tar.gz",
"has_sig": false,
"md5_digest": "fb554e9c8f9aa76e333a03d470a5cf52",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56070,
"upload_time": "2018-02-12T15:06:16",
"url": "https://files.pythonhosted.org/packages/b1/de/a628d16fdba0d38cafb3d7e34d4830f2c9cb3881384ce5c08c44762e1846/isort-4.3.4.tar.gz"
}
]
}, },
"urls": [ "release_url": "https://pypi.org/project/isort/4.3.4/",
{ "requires_dist": null,
"comment_text": "", "requires_python": "",
"digests": { "summary": "A Python utility / library to sort Python imports.",
"md5": "f0ad7704b6dc947073398ba290c3517f", "version": "4.3.4"
"sha256": "ec9ef8f4a9bc6f71eec99e1806bfa2de401650d996c59330782b89a5555c1497" },
}, "last_serial": 3575149,
"downloads": -1, "releases": {
"filename": "isort-4.3.4-py2-none-any.whl", "4.3.4": [
"has_sig": false, {
"md5_digest": "f0ad7704b6dc947073398ba290c3517f", "comment_text": "",
"packagetype": "bdist_wheel", "digests": {
"python_version": "2.7", "md5": "f0ad7704b6dc947073398ba290c3517f",
"requires_python": null, "sha256": "ec9ef8f4a9bc6f71eec99e1806bfa2de401650d996c59330782b89a5555c1497"
"size": 45393, },
"upload_time": "2018-02-12T15:06:38", "downloads": -1,
"url": "https://files.pythonhosted.org/packages/41/d8/a945da414f2adc1d9e2f7d6e7445b27f2be42766879062a2e63616ad4199/isort-4.3.4-py2-none-any.whl" "filename": "isort-4.3.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f0ad7704b6dc947073398ba290c3517f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 45393,
"upload_time": "2018-02-12T15:06:38",
"url": "https://files.pythonhosted.org/packages/41/d8/a945da414f2adc1d9e2f7d6e7445b27f2be42766879062a2e63616ad4199/isort-4.3.4-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fbaac4cd669ac21ea9e21ab1ea3180db",
"sha256": "1153601da39a25b14ddc54955dbbacbb6b2d19135386699e2ad58517953b34af"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "isort-4.3.4-py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "fbaac4cd669ac21ea9e21ab1ea3180db", "md5_digest": "fbaac4cd669ac21ea9e21ab1ea3180db",
"sha256": "1153601da39a25b14ddc54955dbbacbb6b2d19135386699e2ad58517953b34af" "packagetype": "bdist_wheel",
}, "python_version": "3.6",
"downloads": -1, "requires_python": null,
"filename": "isort-4.3.4-py3-none-any.whl", "size": 45352,
"has_sig": false, "upload_time": "2018-02-12T15:06:20",
"md5_digest": "fbaac4cd669ac21ea9e21ab1ea3180db", "url": "https://files.pythonhosted.org/packages/1f/2c/22eee714d7199ae0464beda6ad5fedec8fee6a2f7ffd1e8f1840928fe318/isort-4.3.4-py3-none-any.whl"
"packagetype": "bdist_wheel", },
"python_version": "3.6", {
"requires_python": null, "comment_text": "",
"size": 45352, "digests": {
"upload_time": "2018-02-12T15:06:20", "md5": "fb554e9c8f9aa76e333a03d470a5cf52",
"url": "https://files.pythonhosted.org/packages/1f/2c/22eee714d7199ae0464beda6ad5fedec8fee6a2f7ffd1e8f1840928fe318/isort-4.3.4-py3-none-any.whl" "sha256": "b9c40e9750f3d77e6e4d441d8b0266cf555e7cdabdcff33c4fd06366ca761ef8"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "isort-4.3.4.tar.gz",
"digests": { "has_sig": false,
"md5": "fb554e9c8f9aa76e333a03d470a5cf52", "md5_digest": "fb554e9c8f9aa76e333a03d470a5cf52",
"sha256": "b9c40e9750f3d77e6e4d441d8b0266cf555e7cdabdcff33c4fd06366ca761ef8" "packagetype": "sdist",
}, "python_version": "source",
"downloads": -1, "requires_python": null,
"filename": "isort-4.3.4.tar.gz", "size": 56070,
"has_sig": false, "upload_time": "2018-02-12T15:06:16",
"md5_digest": "fb554e9c8f9aa76e333a03d470a5cf52", "url": "https://files.pythonhosted.org/packages/b1/de/a628d16fdba0d38cafb3d7e34d4830f2c9cb3881384ce5c08c44762e1846/isort-4.3.4.tar.gz"
"packagetype": "sdist", }
"python_version": "source",
"requires_python": null,
"size": 56070,
"upload_time": "2018-02-12T15:06:16",
"url": "https://files.pythonhosted.org/packages/b1/de/a628d16fdba0d38cafb3d7e34d4830f2c9cb3881384ce5c08c44762e1846/isort-4.3.4.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f0ad7704b6dc947073398ba290c3517f",
"sha256": "ec9ef8f4a9bc6f71eec99e1806bfa2de401650d996c59330782b89a5555c1497"
},
"downloads": -1,
"filename": "isort-4.3.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f0ad7704b6dc947073398ba290c3517f",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 45393,
"upload_time": "2018-02-12T15:06:38",
"url": "https://files.pythonhosted.org/packages/41/d8/a945da414f2adc1d9e2f7d6e7445b27f2be42766879062a2e63616ad4199/isort-4.3.4-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fbaac4cd669ac21ea9e21ab1ea3180db",
"sha256": "1153601da39a25b14ddc54955dbbacbb6b2d19135386699e2ad58517953b34af"
},
"downloads": -1,
"filename": "isort-4.3.4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fbaac4cd669ac21ea9e21ab1ea3180db",
"packagetype": "bdist_wheel",
"python_version": "3.6",
"requires_python": null,
"size": 45352,
"upload_time": "2018-02-12T15:06:20",
"url": "https://files.pythonhosted.org/packages/1f/2c/22eee714d7199ae0464beda6ad5fedec8fee6a2f7ffd1e8f1840928fe318/isort-4.3.4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fb554e9c8f9aa76e333a03d470a5cf52",
"sha256": "b9c40e9750f3d77e6e4d441d8b0266cf555e7cdabdcff33c4fd06366ca761ef8"
},
"downloads": -1,
"filename": "isort-4.3.4.tar.gz",
"has_sig": false,
"md5_digest": "fb554e9c8f9aa76e333a03d470a5cf52",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 56070,
"upload_time": "2018-02-12T15:06:16",
"url": "https://files.pythonhosted.org/packages/b1/de/a628d16fdba0d38cafb3d7e34d4830f2c9cb3881384ce5c08c44762e1846/isort-4.3.4.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Jupyter Development Team", "author": "Jupyter Development Team",
"author_email": "jupyter@googlegroups.org", "author_email": "jupyter@googlegroups.org",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Intended Audience :: Science/Research", "Intended Audience :: Science/Research",
"Intended Audience :: System Administrators", "Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4" "Programming Language :: Python :: 3.4"
], ],
"description": "Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel.", "description": "Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel.",
"description_content_type": null, "description_content_type": null,
"docs_url": null, "docs_url": null,
"download_url": "UNKNOWN", "download_url": "UNKNOWN",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://jupyter.org",
"keywords": null,
"license": "BSD",
"maintainer": null,
"maintainer_email": null,
"name": "jupyter",
"package_url": "https://pypi.org/project/jupyter/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/jupyter/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "http://jupyter.org"
},
"release_url": "https://pypi.org/project/jupyter/1.0.0/",
"requires_dist": null,
"requires_python": null,
"summary": "Jupyter metapackage. Install all the Jupyter components in one go.",
"version": "1.0.0"
}, },
"last_serial": 1673841, "home_page": "http://jupyter.org",
"releases": { "keywords": null,
"0.0.0": [], "license": "BSD",
"1.0.0": [ "maintainer": null,
{ "maintainer_email": null,
"comment_text": "", "name": "jupyter",
"digests": { "package_url": "https://pypi.org/project/jupyter/",
"md5": "f81d039e084c2c0c4da9e4a86446b863", "platform": "UNKNOWN",
"sha256": "5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78" "project_url": "https://pypi.org/project/jupyter/",
}, "project_urls": {
"downloads": -1, "Download": "UNKNOWN",
"filename": "jupyter-1.0.0-py2.py3-none-any.whl", "Homepage": "http://jupyter.org"
"has_sig": false,
"md5_digest": "f81d039e084c2c0c4da9e4a86446b863",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 2736,
"upload_time": "2015-08-12T00:42:58",
"url": "https://files.pythonhosted.org/packages/83/df/0f5dd132200728a86190397e1ea87cd76244e42d39ec5e88efd25b2abd7e/jupyter-1.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c6030444c7eb6c05a4d7b1768c72aed7",
"sha256": "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"
},
"downloads": -1,
"filename": "jupyter-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "c6030444c7eb6c05a4d7b1768c72aed7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12916,
"upload_time": "2015-08-12T00:43:08",
"url": "https://files.pythonhosted.org/packages/c9/a9/371d0b8fe37dd231cf4b2cff0a9f0f25e98f3a73c3771742444be27f2944/jupyter-1.0.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "25142b08e2ad7142b6f920bc8cc8dfeb",
"sha256": "3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"
},
"downloads": -1,
"filename": "jupyter-1.0.0.zip",
"has_sig": false,
"md5_digest": "25142b08e2ad7142b6f920bc8cc8dfeb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16690,
"upload_time": "2015-08-12T00:43:12",
"url": "https://files.pythonhosted.org/packages/fc/21/a372b73e3a498b41b92ed915ada7de2ad5e16631546329c03e484c3bf4e9/jupyter-1.0.0.zip"
}
]
}, },
"urls": [ "release_url": "https://pypi.org/project/jupyter/1.0.0/",
{ "requires_dist": null,
"comment_text": "", "requires_python": null,
"digests": { "summary": "Jupyter metapackage. Install all the Jupyter components in one go.",
"md5": "f81d039e084c2c0c4da9e4a86446b863", "version": "1.0.0"
"sha256": "5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78" },
}, "last_serial": 1673841,
"downloads": -1, "releases": {
"filename": "jupyter-1.0.0-py2.py3-none-any.whl", "0.0.0": [],
"has_sig": false, "1.0.0": [
"md5_digest": "f81d039e084c2c0c4da9e4a86446b863", {
"packagetype": "bdist_wheel", "comment_text": "",
"python_version": "3.4", "digests": {
"requires_python": null, "md5": "f81d039e084c2c0c4da9e4a86446b863",
"size": 2736, "sha256": "5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"
"upload_time": "2015-08-12T00:42:58",
"url": "https://files.pythonhosted.org/packages/83/df/0f5dd132200728a86190397e1ea87cd76244e42d39ec5e88efd25b2abd7e/jupyter-1.0.0-py2.py3-none-any.whl"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "jupyter-1.0.0-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "c6030444c7eb6c05a4d7b1768c72aed7", "md5_digest": "f81d039e084c2c0c4da9e4a86446b863",
"sha256": "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f" "packagetype": "bdist_wheel",
}, "python_version": "3.4",
"downloads": -1, "requires_python": null,
"filename": "jupyter-1.0.0.tar.gz", "size": 2736,
"has_sig": false, "upload_time": "2015-08-12T00:42:58",
"md5_digest": "c6030444c7eb6c05a4d7b1768c72aed7", "url": "https://files.pythonhosted.org/packages/83/df/0f5dd132200728a86190397e1ea87cd76244e42d39ec5e88efd25b2abd7e/jupyter-1.0.0-py2.py3-none-any.whl"
"packagetype": "sdist", },
"python_version": "source", {
"requires_python": null, "comment_text": "",
"size": 12916, "digests": {
"upload_time": "2015-08-12T00:43:08", "md5": "c6030444c7eb6c05a4d7b1768c72aed7",
"url": "https://files.pythonhosted.org/packages/c9/a9/371d0b8fe37dd231cf4b2cff0a9f0f25e98f3a73c3771742444be27f2944/jupyter-1.0.0.tar.gz" "sha256": "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "jupyter-1.0.0.tar.gz",
"digests": { "has_sig": false,
"md5": "25142b08e2ad7142b6f920bc8cc8dfeb", "md5_digest": "c6030444c7eb6c05a4d7b1768c72aed7",
"sha256": "3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7" "packagetype": "sdist",
}, "python_version": "source",
"downloads": -1, "requires_python": null,
"filename": "jupyter-1.0.0.zip", "size": 12916,
"has_sig": false, "upload_time": "2015-08-12T00:43:08",
"md5_digest": "25142b08e2ad7142b6f920bc8cc8dfeb", "url": "https://files.pythonhosted.org/packages/c9/a9/371d0b8fe37dd231cf4b2cff0a9f0f25e98f3a73c3771742444be27f2944/jupyter-1.0.0.tar.gz"
"packagetype": "sdist", },
"python_version": "source", {
"requires_python": null, "comment_text": "",
"size": 16690, "digests": {
"upload_time": "2015-08-12T00:43:12", "md5": "25142b08e2ad7142b6f920bc8cc8dfeb",
"url": "https://files.pythonhosted.org/packages/fc/21/a372b73e3a498b41b92ed915ada7de2ad5e16631546329c03e484c3bf4e9/jupyter-1.0.0.zip" "sha256": "3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"
} },
"downloads": -1,
"filename": "jupyter-1.0.0.zip",
"has_sig": false,
"md5_digest": "25142b08e2ad7142b6f920bc8cc8dfeb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16690,
"upload_time": "2015-08-12T00:43:12",
"url": "https://files.pythonhosted.org/packages/fc/21/a372b73e3a498b41b92ed915ada7de2ad5e16631546329c03e484c3bf4e9/jupyter-1.0.0.zip"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f81d039e084c2c0c4da9e4a86446b863",
"sha256": "5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"
},
"downloads": -1,
"filename": "jupyter-1.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f81d039e084c2c0c4da9e4a86446b863",
"packagetype": "bdist_wheel",
"python_version": "3.4",
"requires_python": null,
"size": 2736,
"upload_time": "2015-08-12T00:42:58",
"url": "https://files.pythonhosted.org/packages/83/df/0f5dd132200728a86190397e1ea87cd76244e42d39ec5e88efd25b2abd7e/jupyter-1.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c6030444c7eb6c05a4d7b1768c72aed7",
"sha256": "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"
},
"downloads": -1,
"filename": "jupyter-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "c6030444c7eb6c05a4d7b1768c72aed7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12916,
"upload_time": "2015-08-12T00:43:08",
"url": "https://files.pythonhosted.org/packages/c9/a9/371d0b8fe37dd231cf4b2cff0a9f0f25e98f3a73c3771742444be27f2944/jupyter-1.0.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "25142b08e2ad7142b6f920bc8cc8dfeb",
"sha256": "3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"
},
"downloads": -1,
"filename": "jupyter-1.0.0.zip",
"has_sig": false,
"md5_digest": "25142b08e2ad7142b6f920bc8cc8dfeb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16690,
"upload_time": "2015-08-12T00:43:12",
"url": "https://files.pythonhosted.org/packages/fc/21/a372b73e3a498b41b92ed915ada7de2ad5e16631546329c03e484c3bf4e9/jupyter-1.0.0.zip"
}
]
} }
{ {
"info": { "info": {
"author": "Erik Rose", "author": "Erik Rose",
"author_email": "erikrose@grinchcentral.com", "author_email": "erikrose@grinchcentral.com",
"bugtrack_url": "", "bugtrack_url": "",
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries" "Topic :: Software Development :: Libraries"
], ],
"description": "", "description": "",
"docs_url": "https://pythonhosted.org/more-itertools/", "docs_url": "https://pythonhosted.org/more-itertools/",
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/erikrose/more-itertools",
"keywords": "itertools,iterator,iteration,filter,peek,peekable,collate,chunk,chunked",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "more-itertools",
"package_url": "https://pypi.org/project/more-itertools/",
"platform": "",
"project_url": "https://pypi.org/project/more-itertools/",
"release_url": "https://pypi.org/project/more-itertools/4.1.0/",
"requires_dist": [
"six (<2.0.0,>=1.0.0)"
],
"requires_python": "",
"summary": "More routines for operating on iterables, beyond itertools",
"version": "4.1.0"
},
"last_serial": 3508946,
"releases": {
"4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"packagetype": "bdist_wheel",
"python_version": "py3",
"size": 47988,
"upload_time": "2018-01-21T15:34:20",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
},
"downloads": -1,
"filename": "more-itertools-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "246f46686d95879fbad37855c115dc52",
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/erikrose/more-itertools",
{ "keywords": "itertools,iterator,iteration,filter,peek,peekable,collate,chunk,chunked",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "2a6a4b9abf941edf6d190fc995c0c935", "maintainer_email": "",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e" "name": "more-itertools",
}, "package_url": "https://pypi.org/project/more-itertools/",
"downloads": -1, "platform": "",
"filename": "more_itertools-4.1.0-py2-none-any.whl", "project_url": "https://pypi.org/project/more-itertools/",
"has_sig": false, "release_url": "https://pypi.org/project/more-itertools/4.1.0/",
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935", "requires_dist": [
"packagetype": "bdist_wheel", "six (<2.0.0,>=1.0.0)"
"python_version": "py2", ],
"size": 47987, "requires_python": "",
"upload_time": "2018-01-21T15:34:19", "summary": "More routines for operating on iterables, beyond itertools",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl" "version": "4.1.0"
},
"last_serial": 3508946,
"releases": {
"4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "more_itertools-4.1.0-py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "3229d872f8d193e36119ec76e1b0c097", "md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea" "packagetype": "bdist_wheel",
}, "python_version": "py3",
"downloads": -1, "size": 47988,
"filename": "more_itertools-4.1.0-py3-none-any.whl", "upload_time": "2018-01-21T15:34:20",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
"md5_digest": "3229d872f8d193e36119ec76e1b0c097", },
"packagetype": "bdist_wheel", {
"python_version": "py3", "comment_text": "",
"size": 47988, "digests": {
"upload_time": "2018-01-21T15:34:20", "md5": "246f46686d95879fbad37855c115dc52",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl" "sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "more-itertools-4.1.0.tar.gz",
"digests": { "has_sig": false,
"md5": "246f46686d95879fbad37855c115dc52", "md5_digest": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44" "packagetype": "sdist",
}, "python_version": "source",
"downloads": -1, "size": 51310,
"filename": "more-itertools-4.1.0.tar.gz", "upload_time": "2018-01-21T15:34:22",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
"md5_digest": "246f46686d95879fbad37855c115dc52", }
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"packagetype": "bdist_wheel",
"python_version": "py3",
"size": 47988,
"upload_time": "2018-01-21T15:34:20",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
},
"downloads": -1,
"filename": "more-itertools-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "246f46686d95879fbad37855c115dc52",
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Erik Rose", "author": "Erik Rose",
"author_email": "erikrose@grinchcentral.com", "author_email": "erikrose@grinchcentral.com",
"bugtrack_url": "", "bugtrack_url": "",
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Natural Language :: English", "Natural Language :: English",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries" "Topic :: Software Development :: Libraries"
], ],
"description": "", "description": "",
"docs_url": "https://pythonhosted.org/more-itertools/", "docs_url": "https://pythonhosted.org/more-itertools/",
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/erikrose/more-itertools",
"keywords": "itertools,iterator,iteration,filter,peek,peekable,collate,chunk,chunked",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "more-itertools",
"package_url": "https://pypi.org/project/more-itertools/",
"platform": "",
"project_url": "https://pypi.org/project/more-itertools/",
"release_url": "https://pypi.org/project/more-itertools/4.1.0/",
"requires_dist": [
"six (<2.0.0,>=1.0.0)"
],
"requires_python": "",
"summary": "More routines for operating on iterables, beyond itertools",
"version": "4.1.0"
},
"last_serial": 3508946,
"releases": {
"4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"packagetype": "bdist_wheel",
"python_version": "py3",
"size": 47988,
"upload_time": "2018-01-21T15:34:20",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
},
"downloads": -1,
"filename": "more-itertools-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "246f46686d95879fbad37855c115dc52",
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/erikrose/more-itertools",
{ "keywords": "itertools,iterator,iteration,filter,peek,peekable,collate,chunk,chunked",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "2a6a4b9abf941edf6d190fc995c0c935", "maintainer_email": "",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e" "name": "more-itertools",
}, "package_url": "https://pypi.org/project/more-itertools/",
"downloads": -1, "platform": "",
"filename": "more_itertools-4.1.0-py2-none-any.whl", "project_url": "https://pypi.org/project/more-itertools/",
"has_sig": false, "release_url": "https://pypi.org/project/more-itertools/4.1.0/",
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935", "requires_dist": [
"packagetype": "bdist_wheel", "six (<2.0.0,>=1.0.0)"
"python_version": "py2", ],
"size": 47987, "requires_python": "",
"upload_time": "2018-01-21T15:34:19", "summary": "More routines for operating on iterables, beyond itertools",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl" "version": "4.1.0"
},
"last_serial": 3508946,
"releases": {
"4.1.0": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "more_itertools-4.1.0-py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "3229d872f8d193e36119ec76e1b0c097", "md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea" "packagetype": "bdist_wheel",
}, "python_version": "py3",
"downloads": -1, "size": 47988,
"filename": "more_itertools-4.1.0-py3-none-any.whl", "upload_time": "2018-01-21T15:34:20",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
"md5_digest": "3229d872f8d193e36119ec76e1b0c097", },
"packagetype": "bdist_wheel", {
"python_version": "py3", "comment_text": "",
"size": 47988, "digests": {
"upload_time": "2018-01-21T15:34:20", "md5": "246f46686d95879fbad37855c115dc52",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl" "sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "more-itertools-4.1.0.tar.gz",
"digests": { "has_sig": false,
"md5": "246f46686d95879fbad37855c115dc52", "md5_digest": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44" "packagetype": "sdist",
}, "python_version": "source",
"downloads": -1, "size": 51310,
"filename": "more-itertools-4.1.0.tar.gz", "upload_time": "2018-01-21T15:34:22",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
"md5_digest": "246f46686d95879fbad37855c115dc52", }
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "2a6a4b9abf941edf6d190fc995c0c935",
"sha256": "11a625025954c20145b37ff6309cd54e39ca94f72f6bb9576d1195db6fa2442e"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "2a6a4b9abf941edf6d190fc995c0c935",
"packagetype": "bdist_wheel",
"python_version": "py2",
"size": 47987,
"upload_time": "2018-01-21T15:34:19",
"url": "https://files.pythonhosted.org/packages/4a/88/c28e2a2da8f3dc3a391d9c97ad949f2ea0c05198222e7e6af176e5bf9b26/more_itertools-4.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3229d872f8d193e36119ec76e1b0c097",
"sha256": "0dd8f72eeab0d2c3bd489025bb2f6a1b8342f9b198f6fc37b52d15cfa4531fea"
},
"downloads": -1,
"filename": "more_itertools-4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3229d872f8d193e36119ec76e1b0c097",
"packagetype": "bdist_wheel",
"python_version": "py3",
"size": 47988,
"upload_time": "2018-01-21T15:34:20",
"url": "https://files.pythonhosted.org/packages/7a/46/886917c6a4ce49dd3fff250c01c5abac5390d57992751384fe61befc4877/more_itertools-4.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "246f46686d95879fbad37855c115dc52",
"sha256": "c9ce7eccdcb901a2c75d326ea134e0886abfbea5f93e91cc95de9507c0816c44"
},
"downloads": -1,
"filename": "more-itertools-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "246f46686d95879fbad37855c115dc52",
"packagetype": "sdist",
"python_version": "source",
"size": 51310,
"upload_time": "2018-01-21T15:34:22",
"url": "https://files.pythonhosted.org/packages/db/0b/f5660bf6299ec5b9f17bd36096fa8148a1c843fa77ddfddf9bebac9301f7/more-itertools-4.1.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Holger Krekel", "author": "Holger Krekel",
"author_email": "holger@merlinux.eu", "author_email": "holger@merlinux.eu",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/pytest-dev/pluggy",
"keywords": "",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "pluggy",
"package_url": "https://pypi.org/project/pluggy/",
"platform": "unix",
"project_url": "https://pypi.org/project/pluggy/",
"release_url": "https://pypi.org/project/pluggy/0.6.0/",
"requires_dist": null,
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "plugin and hook calling mechanisms for python",
"version": "0.6.0"
},
"last_serial": 3361295,
"releases": {
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/pytest-dev/pluggy",
{ "keywords": "",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "ffdde7c3a5ba9a440404570366ffb6d5", "maintainer_email": "",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff" "name": "pluggy",
}, "package_url": "https://pypi.org/project/pluggy/",
"downloads": -1, "platform": "unix",
"filename": "pluggy-0.6.0.tar.gz", "project_url": "https://pypi.org/project/pluggy/",
"has_sig": false, "release_url": "https://pypi.org/project/pluggy/0.6.0/",
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5", "requires_dist": null,
"packagetype": "sdist", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"python_version": "source", "summary": "plugin and hook calling mechanisms for python",
"size": 19678, "version": "0.6.0"
"upload_time": "2017-11-24T16:33:11", },
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz" "last_serial": 3361295,
} "releases": {
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Holger Krekel", "author": "Holger Krekel",
"author_email": "holger@merlinux.eu", "author_email": "holger@merlinux.eu",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/pytest-dev/pluggy",
"keywords": "",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "pluggy",
"package_url": "https://pypi.org/project/pluggy/",
"platform": "unix",
"project_url": "https://pypi.org/project/pluggy/",
"release_url": "https://pypi.org/project/pluggy/0.6.0/",
"requires_dist": null,
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "plugin and hook calling mechanisms for python",
"version": "0.6.0"
},
"last_serial": 3361295,
"releases": {
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "https://github.com/pytest-dev/pluggy",
{ "keywords": "",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "ffdde7c3a5ba9a440404570366ffb6d5", "maintainer_email": "",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff" "name": "pluggy",
}, "package_url": "https://pypi.org/project/pluggy/",
"downloads": -1, "platform": "unix",
"filename": "pluggy-0.6.0.tar.gz", "project_url": "https://pypi.org/project/pluggy/",
"has_sig": false, "release_url": "https://pypi.org/project/pluggy/0.6.0/",
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5", "requires_dist": null,
"packagetype": "sdist", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"python_version": "source", "summary": "plugin and hook calling mechanisms for python",
"size": 19678, "version": "0.6.0"
"upload_time": "2017-11-24T16:33:11", },
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz" "last_serial": 3361295,
} "releases": {
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "ffdde7c3a5ba9a440404570366ffb6d5",
"sha256": "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff"
},
"downloads": -1,
"filename": "pluggy-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "ffdde7c3a5ba9a440404570366ffb6d5",
"packagetype": "sdist",
"python_version": "source",
"size": 19678,
"upload_time": "2017-11-24T16:33:11",
"url": "https://files.pythonhosted.org/packages/11/bf/cbeb8cdfaffa9f2ea154a30ae31a9d04a1209312e2919138b4171a1f8199/pluggy-0.6.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others", "author": "holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others",
"author_email": "pytest-dev@python.org", "author_email": "pytest-dev@python.org",
"bugtrack_url": "https://github.com/pytest-dev/py/issues", "bugtrack_url": "https://github.com/pytest-dev/py/issues",
"classifiers": [ "classifiers": [
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://py.readthedocs.io/",
"keywords": "",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "py",
"package_url": "https://pypi.org/project/py/",
"platform": "unix",
"project_url": "https://pypi.org/project/py/",
"release_url": "https://pypi.org/project/py/1.5.3/",
"requires_dist": null,
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "library with cross-python path, ini-parsing, io, code, log facilities",
"version": "1.5.3"
},
"last_serial": 3694828,
"releases": {
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
},
"downloads": -1,
"filename": "py-1.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3184fb17d224b073117a25336040d7c7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 84903,
"upload_time": "2018-03-22T10:06:50",
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "667d37a148ad9fb81266492903f2d880",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
},
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://py.readthedocs.io/",
{ "keywords": "",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "3184fb17d224b073117a25336040d7c7", "maintainer_email": "",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a" "name": "py",
}, "package_url": "https://pypi.org/project/py/",
"downloads": -1, "platform": "unix",
"filename": "py-1.5.3-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/py/",
"has_sig": false, "release_url": "https://pypi.org/project/py/1.5.3/",
"md5_digest": "3184fb17d224b073117a25336040d7c7", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"python_version": "py2.py3", "summary": "library with cross-python path, ini-parsing, io, code, log facilities",
"size": 84903, "version": "1.5.3"
"upload_time": "2018-03-22T10:06:50", },
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl" "last_serial": 3694828,
"releases": {
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "py-1.5.3-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "667d37a148ad9fb81266492903f2d880", "md5_digest": "3184fb17d224b073117a25336040d7c7",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 84903,
"filename": "py-1.5.3.tar.gz", "upload_time": "2018-03-22T10:06:50",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
"md5_digest": "667d37a148ad9fb81266492903f2d880", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 202335, "digests": {
"upload_time": "2018-03-22T10:06:52", "md5": "667d37a148ad9fb81266492903f2d880",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz" "sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
} },
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
},
"downloads": -1,
"filename": "py-1.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3184fb17d224b073117a25336040d7c7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 84903,
"upload_time": "2018-03-22T10:06:50",
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "667d37a148ad9fb81266492903f2d880",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
},
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others", "author": "holger krekel, Ronny Pfannschmidt, Benjamin Peterson and others",
"author_email": "pytest-dev@python.org", "author_email": "pytest-dev@python.org",
"bugtrack_url": "https://github.com/pytest-dev/py/issues", "bugtrack_url": "https://github.com/pytest-dev/py/issues",
"classifiers": [ "classifiers": [
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://py.readthedocs.io/",
"keywords": "",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "py",
"package_url": "https://pypi.org/project/py/",
"platform": "unix",
"project_url": "https://pypi.org/project/py/",
"release_url": "https://pypi.org/project/py/1.5.3/",
"requires_dist": null,
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "library with cross-python path, ini-parsing, io, code, log facilities",
"version": "1.5.3"
},
"last_serial": 3694828,
"releases": {
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
},
"downloads": -1,
"filename": "py-1.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3184fb17d224b073117a25336040d7c7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 84903,
"upload_time": "2018-03-22T10:06:50",
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "667d37a148ad9fb81266492903f2d880",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
},
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://py.readthedocs.io/",
{ "keywords": "",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "3184fb17d224b073117a25336040d7c7", "maintainer_email": "",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a" "name": "py",
}, "package_url": "https://pypi.org/project/py/",
"downloads": -1, "platform": "unix",
"filename": "py-1.5.3-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/py/",
"has_sig": false, "release_url": "https://pypi.org/project/py/1.5.3/",
"md5_digest": "3184fb17d224b073117a25336040d7c7", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"python_version": "py2.py3", "summary": "library with cross-python path, ini-parsing, io, code, log facilities",
"size": 84903, "version": "1.5.3"
"upload_time": "2018-03-22T10:06:50", },
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl" "last_serial": 3694828,
"releases": {
"1.5.3": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "py-1.5.3-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "667d37a148ad9fb81266492903f2d880", "md5_digest": "3184fb17d224b073117a25336040d7c7",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 84903,
"filename": "py-1.5.3.tar.gz", "upload_time": "2018-03-22T10:06:50",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
"md5_digest": "667d37a148ad9fb81266492903f2d880", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 202335, "digests": {
"upload_time": "2018-03-22T10:06:52", "md5": "667d37a148ad9fb81266492903f2d880",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz" "sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
} },
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "3184fb17d224b073117a25336040d7c7",
"sha256": "983f77f3331356039fdd792e9220b7b8ee1aa6bd2b25f567a963ff1de5a64f6a"
},
"downloads": -1,
"filename": "py-1.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3184fb17d224b073117a25336040d7c7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 84903,
"upload_time": "2018-03-22T10:06:50",
"url": "https://files.pythonhosted.org/packages/67/a5/f77982214dd4c8fd104b066f249adea2c49e25e8703d284382eb5e9ab35a/py-1.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "667d37a148ad9fb81266492903f2d880",
"sha256": "29c9fab495d7528e80ba1e343b958684f4ace687327e6f789a94bf3d1915f881"
},
"downloads": -1,
"filename": "py-1.5.3.tar.gz",
"has_sig": false,
"md5_digest": "667d37a148ad9fb81266492903f2d880",
"packagetype": "sdist",
"python_version": "source",
"size": 202335,
"upload_time": "2018-03-22T10:06:52",
"url": "https://files.pythonhosted.org/packages/f7/84/b4c6e84672c4ceb94f727f3da8344037b62cee960d80e999b1cd9b832d83/py-1.5.3.tar.gz"
}
]
} }
{ {
"info":{ "info": {
"author":"eric dexter", "author": "eric dexter",
"author_email":"irc.dexter@gmail.com", "author_email": "irc.dexter@gmail.com",
"bugtrack_url":null, "bugtrack_url": null,
"classifiers":[ "classifiers": [
"Topic :: Multimedia :: Sound/Audio :: Editors" "Topic :: Multimedia :: Sound/Audio :: Editors"
], ],
"description":"a clickable grid for drum machines, piano rolls that is customizble from an init \r\nfile)or will be) that will include the script to be ran when a definable button is \r\nhit written in pygame and tested with python 2.5", "description": "a clickable grid for drum machines, piano rolls that is customizble from an init \r\nfile)or will be) that will include the script to be ran when a definable button is \r\nhit written in pygame and tested with python 2.5",
"description_content_type":null, "description_content_type": null,
"docs_url":null, "docs_url": null,
"download_url":"http://www.ziddu.com/download/5498230/pygamepianorollbeta.90.zip.html", "download_url": "http://www.ziddu.com/download/5498230/pygamepianorollbeta.90.zip.html",
"downloads":{ "downloads": {
"last_day":-1, "last_day": -1,
"last_month":-1, "last_month": -1,
"last_week":-1 "last_week": -1
},
"home_page":"http://dexrowem.blogspot.com/search?q=pygame+music+grid",
"keywords":"python, pygame, drum machine, piano roll",
"license":"",
"maintainer":"",
"maintainer_email":"",
"name":"pygame-music-grid",
"package_url":"https://pypi.org/project/pygame-music-grid/",
"platform":"",
"project_url":"https://pypi.org/project/pygame-music-grid/",
"project_urls":{
"Download":"http://www.ziddu.com/download/5498230/pygamepianorollbeta.90.zip.html",
"Homepage":"http://dexrowem.blogspot.com/search?q=pygame+music+grid"
},
"release_url":"https://pypi.org/project/pygame-music-grid/.9/",
"requires_dist":null,
"requires_python":null,
"summary":"a grid for music programs",
"version":".9"
}, },
"last_serial":710340, "home_page": "http://dexrowem.blogspot.com/search?q=pygame+music+grid",
"releases":{ "keywords": "python, pygame, drum machine, piano roll",
".9":[ "license": "",
{ "maintainer": "",
"comment_text": "", "maintainer_email": "",
"digests": { "name": "pygame-music-grid",
"md5": "76e2c2e8adea20377d9a7e6b6713c952", "package_url": "https://pypi.org/project/pygame-music-grid/",
"sha256": "8d6d96001aa7f0a6a4a95e8143225b5d06e41b1131044913fecb8f85a125714b" "platform": "",
}, "project_url": "https://pypi.org/project/pygame-music-grid/",
"downloads": -1, "project_urls": {
"filename": "PyYAML-4.2b4-cp27-cp27m-win32.whl", "Download": "http://www.ziddu.com/download/5498230/pygamepianorollbeta.90.zip.html",
"has_sig": false, "Homepage": "http://dexrowem.blogspot.com/search?q=pygame+music+grid"
"md5_digest": "76e2c2e8adea20377d9a7e6b6713c952",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 104988,
"upload_time": "2018-07-02T03:17:55",
"url": "https://files.pythonhosted.org/packages/12/9b/efdbaa3c9694b6315a4410e0d494ad50c5ade22ce33f4b482bfaea3930fd/PyYAML-4.2b4-cp27-cp27m-win32.whl"
}
],
"1.0":[
{
"comment_text": "",
"digests": {
"md5": "a83441aa7004e474bed6f6daeb61f27a",
"sha256": "d5eef459e30b09f5a098b9cea68bebfeb268697f78d647bd255a085371ac7f3f"
},
"downloads": -1,
"filename": "PyYAML-3.13-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "a83441aa7004e474bed6f6daeb61f27a",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 191712,
"upload_time": "2018-07-05T22:53:15",
"url": "https://files.pythonhosted.org/packages/b8/2e/9c2285870c9de070a1fa5ede702ab5fb329901b3cc4028c24f44eda27c5f/PyYAML-3.13-cp27-cp27m-win32.whl"
}
]
}, },
"urls":[ "release_url": "https://pypi.org/project/pygame-music-grid/.9/",
"requires_dist": null,
"requires_python": null,
"summary": "a grid for music programs",
"version": ".9"
},
"last_serial": 710340,
"releases": {
".9": [
{
"comment_text": "",
"digests": {
"md5": "76e2c2e8adea20377d9a7e6b6713c952",
"sha256": "8d6d96001aa7f0a6a4a95e8143225b5d06e41b1131044913fecb8f85a125714b"
},
"downloads": -1,
"filename": "PyYAML-4.2b4-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "76e2c2e8adea20377d9a7e6b6713c952",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 104988,
"upload_time": "2018-07-02T03:17:55",
"url": "https://files.pythonhosted.org/packages/12/9b/efdbaa3c9694b6315a4410e0d494ad50c5ade22ce33f4b482bfaea3930fd/PyYAML-4.2b4-cp27-cp27m-win32.whl"
}
],
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "a83441aa7004e474bed6f6daeb61f27a",
"sha256": "d5eef459e30b09f5a098b9cea68bebfeb268697f78d647bd255a085371ac7f3f"
},
"downloads": -1,
"filename": "PyYAML-3.13-cp27-cp27m-win32.whl",
"has_sig": false,
"md5_digest": "a83441aa7004e474bed6f6daeb61f27a",
"packagetype": "bdist_wheel",
"python_version": "cp27",
"requires_python": null,
"size": 191712,
"upload_time": "2018-07-05T22:53:15",
"url": "https://files.pythonhosted.org/packages/b8/2e/9c2285870c9de070a1fa5ede702ab5fb329901b3cc4028c24f44eda27c5f/PyYAML-3.13-cp27-cp27m-win32.whl"
}
] ]
},
"urls": []
} }
{ {
"info": { "info": {
"author": "Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others", "author": "Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others",
"author_email": "", "author_email": "",
"bugtrack_url": "https://github.com/pytest-dev/pytest/issues", "bugtrack_url": "https://github.com/pytest-dev/pytest/issues",
"classifiers": [ "classifiers": [
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": ".. image:: http://docs.pytest.org/en/latest/_static/pytest1.png\n :target: http://docs.pytest.org\n :align: center\n :alt: pytest\n\n------\n\n.. image:: https://img.shields.io/pypi/v/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://anaconda.org/conda-forge/pytest/badges/version.svg\n :target: https://anaconda.org/conda-forge/pytest\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://img.shields.io/coveralls/pytest-dev/pytest/master.svg\n :target: https://coveralls.io/r/pytest-dev/pytest\n\n.. image:: https://travis-ci.org/pytest-dev/pytest.svg?branch=master\n :target: https://travis-ci.org/pytest-dev/pytest\n\n.. image:: https://ci.appveyor.com/api/projects/status/mrgbjaua7t33pg6b?svg=true\n :target: https://ci.appveyor.com/project/pytestbot/pytest\n\n.. image:: https://www.codetriage.com/pytest-dev/pytest/badges/users.svg\n :target: https://www.codetriage.com/pytest-dev/pytest\n\nThe ``pytest`` framework makes it easy to write small tests, yet\nscales to support complex functional testing for applications and libraries.\n\nAn example of a simple test:\n\n.. code-block:: python\n\n # content of test_sample.py\n def inc(x):\n return x + 1\n\n def test_answer():\n assert inc(3) == 5\n\n\nTo execute it::\n\n $ pytest\n ============================= test session starts =============================\n collected 1 items\n\n test_sample.py F\n\n ================================== FAILURES ===================================\n _________________________________ test_answer _________________________________\n\n def test_answer():\n > assert inc(3) == 5\n E assert 4 == 5\n E + where 4 = inc(3)\n\n test_sample.py:5: AssertionError\n ========================== 1 failed in 0.04 seconds ===========================\n\n\nDue to ``pytest``'s detailed assertion introspection, only plain ``assert`` statements are used. See `getting-started <http://docs.pytest.org/en/latest/getting-started.html#our-first-test-run>`_ for more examples.\n\n\nFeatures\n--------\n\n- Detailed info on failing `assert statements <http://docs.pytest.org/en/latest/assert.html>`_ (no need to remember ``self.assert*`` names);\n\n- `Auto-discovery\n <http://docs.pytest.org/en/latest/goodpractices.html#python-test-discovery>`_\n of test modules and functions;\n\n- `Modular fixtures <http://docs.pytest.org/en/latest/fixture.html>`_ for\n managing small or parametrized long-lived test resources;\n\n- Can run `unittest <http://docs.pytest.org/en/latest/unittest.html>`_ (or trial),\n `nose <http://docs.pytest.org/en/latest/nose.html>`_ test suites out of the box;\n\n- Python 2.7, Python 3.4+, PyPy 2.3, Jython 2.5 (untested);\n\n- Rich plugin architecture, with over 315+ `external plugins <http://plugincompat.herokuapp.com>`_ and thriving community;\n\n\nDocumentation\n-------------\n\nFor full documentation, including installation, tutorials and PDF documents, please see http://docs.pytest.org.\n\n\nBugs/Requests\n-------------\n\nPlease use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issues>`_ to submit bugs or request features.\n\n\nChangelog\n---------\n\nConsult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`__ page for fixes and enhancements of each version.\n\n\nLicense\n-------\n\nCopyright Holger Krekel and others, 2004-2017.\n\nDistributed under the terms of the `MIT`_ license, pytest is free and open source software.\n\n.. _`MIT`: https://github.com/pytest-dev/pytest/blob/master/LICENSE\n\n\n", "description": ".. image:: http://docs.pytest.org/en/latest/_static/pytest1.png\n :target: http://docs.pytest.org\n :align: center\n :alt: pytest\n\n------\n\n.. image:: https://img.shields.io/pypi/v/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://anaconda.org/conda-forge/pytest/badges/version.svg\n :target: https://anaconda.org/conda-forge/pytest\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://img.shields.io/coveralls/pytest-dev/pytest/master.svg\n :target: https://coveralls.io/r/pytest-dev/pytest\n\n.. image:: https://travis-ci.org/pytest-dev/pytest.svg?branch=master\n :target: https://travis-ci.org/pytest-dev/pytest\n\n.. image:: https://ci.appveyor.com/api/projects/status/mrgbjaua7t33pg6b?svg=true\n :target: https://ci.appveyor.com/project/pytestbot/pytest\n\n.. image:: https://www.codetriage.com/pytest-dev/pytest/badges/users.svg\n :target: https://www.codetriage.com/pytest-dev/pytest\n\nThe ``pytest`` framework makes it easy to write small tests, yet\nscales to support complex functional testing for applications and libraries.\n\nAn example of a simple test:\n\n.. code-block:: python\n\n # content of test_sample.py\n def inc(x):\n return x + 1\n\n def test_answer():\n assert inc(3) == 5\n\n\nTo execute it::\n\n $ pytest\n ============================= test session starts =============================\n collected 1 items\n\n test_sample.py F\n\n ================================== FAILURES ===================================\n _________________________________ test_answer _________________________________\n\n def test_answer():\n > assert inc(3) == 5\n E assert 4 == 5\n E + where 4 = inc(3)\n\n test_sample.py:5: AssertionError\n ========================== 1 failed in 0.04 seconds ===========================\n\n\nDue to ``pytest``'s detailed assertion introspection, only plain ``assert`` statements are used. See `getting-started <http://docs.pytest.org/en/latest/getting-started.html#our-first-test-run>`_ for more examples.\n\n\nFeatures\n--------\n\n- Detailed info on failing `assert statements <http://docs.pytest.org/en/latest/assert.html>`_ (no need to remember ``self.assert*`` names);\n\n- `Auto-discovery\n <http://docs.pytest.org/en/latest/goodpractices.html#python-test-discovery>`_\n of test modules and functions;\n\n- `Modular fixtures <http://docs.pytest.org/en/latest/fixture.html>`_ for\n managing small or parametrized long-lived test resources;\n\n- Can run `unittest <http://docs.pytest.org/en/latest/unittest.html>`_ (or trial),\n `nose <http://docs.pytest.org/en/latest/nose.html>`_ test suites out of the box;\n\n- Python 2.7, Python 3.4+, PyPy 2.3, Jython 2.5 (untested);\n\n- Rich plugin architecture, with over 315+ `external plugins <http://plugincompat.herokuapp.com>`_ and thriving community;\n\n\nDocumentation\n-------------\n\nFor full documentation, including installation, tutorials and PDF documents, please see http://docs.pytest.org.\n\n\nBugs/Requests\n-------------\n\nPlease use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issues>`_ to submit bugs or request features.\n\n\nChangelog\n---------\n\nConsult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`__ page for fixes and enhancements of each version.\n\n\nLicense\n-------\n\nCopyright Holger Krekel and others, 2004-2017.\n\nDistributed under the terms of the `MIT`_ license, pytest is free and open source software.\n\n.. _`MIT`: https://github.com/pytest-dev/pytest/blob/master/LICENSE\n\n\n",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://pytest.org",
"keywords": "test unittest",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "pytest",
"package_url": "https://pypi.org/project/pytest/",
"platform": "unix",
"project_url": "https://pypi.org/project/pytest/",
"release_url": "https://pypi.org/project/pytest/3.5.0/",
"requires_dist": [
"py (>=1.5.0)",
"six (>=1.10.0)",
"setuptools",
"attrs (>=17.4.0)",
"more-itertools (>=4.0.0)",
"pluggy (<0.7,>=0.5)",
"funcsigs; python_version < \"3.0\"",
"colorama; sys_platform == \"win32\""
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "pytest: simple powerful testing with Python",
"version": "3.5.0"
},
"last_serial": 3697219,
"releases": {
"3.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
},
"downloads": -1,
"filename": "pytest-3.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 194247,
"upload_time": "2018-03-22T23:47:54",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
},
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://pytest.org",
{ "keywords": "test unittest",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "c0b6697b7130c495aba71cdfcf939cc9", "maintainer_email": "",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c" "name": "pytest",
}, "package_url": "https://pypi.org/project/pytest/",
"downloads": -1, "platform": "unix",
"filename": "pytest-3.5.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/pytest/",
"has_sig": false, "release_url": "https://pypi.org/project/pytest/3.5.0/",
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9", "requires_dist": [
"packagetype": "bdist_wheel", "py (>=1.5.0)",
"python_version": "py2.py3", "six (>=1.10.0)",
"size": 194247, "setuptools",
"upload_time": "2018-03-22T23:47:54", "attrs (>=17.4.0)",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl" "more-itertools (>=4.0.0)",
"pluggy (<0.7,>=0.5)",
"funcsigs; python_version < \"3.0\"",
"colorama; sys_platform == \"win32\""
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "pytest: simple powerful testing with Python",
"version": "3.5.0"
},
"last_serial": 3697219,
"releases": {
"3.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "pytest-3.5.0-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "b8e13a4091f07ff1fda081cf40ff99f1", "md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 194247,
"filename": "pytest-3.5.0.tar.gz", "upload_time": "2018-03-22T23:47:54",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 830816, "digests": {
"upload_time": "2018-03-22T23:47:56", "md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz" "sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
} },
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
},
"downloads": -1,
"filename": "pytest-3.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 194247,
"upload_time": "2018-03-22T23:47:54",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
},
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others", "author": "Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others",
"author_email": "", "author_email": "",
"bugtrack_url": "https://github.com/pytest-dev/pytest/issues", "bugtrack_url": "https://github.com/pytest-dev/pytest/issues",
"classifiers": [ "classifiers": [
"Development Status :: 6 - Mature", "Development Status :: 6 - Mature",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X", "Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows", "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing", "Topic :: Software Development :: Testing",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": ".. image:: http://docs.pytest.org/en/latest/_static/pytest1.png\n :target: http://docs.pytest.org\n :align: center\n :alt: pytest\n\n------\n\n.. image:: https://img.shields.io/pypi/v/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://anaconda.org/conda-forge/pytest/badges/version.svg\n :target: https://anaconda.org/conda-forge/pytest\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://img.shields.io/coveralls/pytest-dev/pytest/master.svg\n :target: https://coveralls.io/r/pytest-dev/pytest\n\n.. image:: https://travis-ci.org/pytest-dev/pytest.svg?branch=master\n :target: https://travis-ci.org/pytest-dev/pytest\n\n.. image:: https://ci.appveyor.com/api/projects/status/mrgbjaua7t33pg6b?svg=true\n :target: https://ci.appveyor.com/project/pytestbot/pytest\n\n.. image:: https://www.codetriage.com/pytest-dev/pytest/badges/users.svg\n :target: https://www.codetriage.com/pytest-dev/pytest\n\nThe ``pytest`` framework makes it easy to write small tests, yet\nscales to support complex functional testing for applications and libraries.\n\nAn example of a simple test:\n\n.. code-block:: python\n\n # content of test_sample.py\n def inc(x):\n return x + 1\n\n def test_answer():\n assert inc(3) == 5\n\n\nTo execute it::\n\n $ pytest\n ============================= test session starts =============================\n collected 1 items\n\n test_sample.py F\n\n ================================== FAILURES ===================================\n _________________________________ test_answer _________________________________\n\n def test_answer():\n > assert inc(3) == 5\n E assert 4 == 5\n E + where 4 = inc(3)\n\n test_sample.py:5: AssertionError\n ========================== 1 failed in 0.04 seconds ===========================\n\n\nDue to ``pytest``'s detailed assertion introspection, only plain ``assert`` statements are used. See `getting-started <http://docs.pytest.org/en/latest/getting-started.html#our-first-test-run>`_ for more examples.\n\n\nFeatures\n--------\n\n- Detailed info on failing `assert statements <http://docs.pytest.org/en/latest/assert.html>`_ (no need to remember ``self.assert*`` names);\n\n- `Auto-discovery\n <http://docs.pytest.org/en/latest/goodpractices.html#python-test-discovery>`_\n of test modules and functions;\n\n- `Modular fixtures <http://docs.pytest.org/en/latest/fixture.html>`_ for\n managing small or parametrized long-lived test resources;\n\n- Can run `unittest <http://docs.pytest.org/en/latest/unittest.html>`_ (or trial),\n `nose <http://docs.pytest.org/en/latest/nose.html>`_ test suites out of the box;\n\n- Python 2.7, Python 3.4+, PyPy 2.3, Jython 2.5 (untested);\n\n- Rich plugin architecture, with over 315+ `external plugins <http://plugincompat.herokuapp.com>`_ and thriving community;\n\n\nDocumentation\n-------------\n\nFor full documentation, including installation, tutorials and PDF documents, please see http://docs.pytest.org.\n\n\nBugs/Requests\n-------------\n\nPlease use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issues>`_ to submit bugs or request features.\n\n\nChangelog\n---------\n\nConsult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`__ page for fixes and enhancements of each version.\n\n\nLicense\n-------\n\nCopyright Holger Krekel and others, 2004-2017.\n\nDistributed under the terms of the `MIT`_ license, pytest is free and open source software.\n\n.. _`MIT`: https://github.com/pytest-dev/pytest/blob/master/LICENSE\n\n\n", "description": ".. image:: http://docs.pytest.org/en/latest/_static/pytest1.png\n :target: http://docs.pytest.org\n :align: center\n :alt: pytest\n\n------\n\n.. image:: https://img.shields.io/pypi/v/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://anaconda.org/conda-forge/pytest/badges/version.svg\n :target: https://anaconda.org/conda-forge/pytest\n\n.. image:: https://img.shields.io/pypi/pyversions/pytest.svg\n :target: https://pypi.python.org/pypi/pytest\n\n.. image:: https://img.shields.io/coveralls/pytest-dev/pytest/master.svg\n :target: https://coveralls.io/r/pytest-dev/pytest\n\n.. image:: https://travis-ci.org/pytest-dev/pytest.svg?branch=master\n :target: https://travis-ci.org/pytest-dev/pytest\n\n.. image:: https://ci.appveyor.com/api/projects/status/mrgbjaua7t33pg6b?svg=true\n :target: https://ci.appveyor.com/project/pytestbot/pytest\n\n.. image:: https://www.codetriage.com/pytest-dev/pytest/badges/users.svg\n :target: https://www.codetriage.com/pytest-dev/pytest\n\nThe ``pytest`` framework makes it easy to write small tests, yet\nscales to support complex functional testing for applications and libraries.\n\nAn example of a simple test:\n\n.. code-block:: python\n\n # content of test_sample.py\n def inc(x):\n return x + 1\n\n def test_answer():\n assert inc(3) == 5\n\n\nTo execute it::\n\n $ pytest\n ============================= test session starts =============================\n collected 1 items\n\n test_sample.py F\n\n ================================== FAILURES ===================================\n _________________________________ test_answer _________________________________\n\n def test_answer():\n > assert inc(3) == 5\n E assert 4 == 5\n E + where 4 = inc(3)\n\n test_sample.py:5: AssertionError\n ========================== 1 failed in 0.04 seconds ===========================\n\n\nDue to ``pytest``'s detailed assertion introspection, only plain ``assert`` statements are used. See `getting-started <http://docs.pytest.org/en/latest/getting-started.html#our-first-test-run>`_ for more examples.\n\n\nFeatures\n--------\n\n- Detailed info on failing `assert statements <http://docs.pytest.org/en/latest/assert.html>`_ (no need to remember ``self.assert*`` names);\n\n- `Auto-discovery\n <http://docs.pytest.org/en/latest/goodpractices.html#python-test-discovery>`_\n of test modules and functions;\n\n- `Modular fixtures <http://docs.pytest.org/en/latest/fixture.html>`_ for\n managing small or parametrized long-lived test resources;\n\n- Can run `unittest <http://docs.pytest.org/en/latest/unittest.html>`_ (or trial),\n `nose <http://docs.pytest.org/en/latest/nose.html>`_ test suites out of the box;\n\n- Python 2.7, Python 3.4+, PyPy 2.3, Jython 2.5 (untested);\n\n- Rich plugin architecture, with over 315+ `external plugins <http://plugincompat.herokuapp.com>`_ and thriving community;\n\n\nDocumentation\n-------------\n\nFor full documentation, including installation, tutorials and PDF documents, please see http://docs.pytest.org.\n\n\nBugs/Requests\n-------------\n\nPlease use the `GitHub issue tracker <https://github.com/pytest-dev/pytest/issues>`_ to submit bugs or request features.\n\n\nChangelog\n---------\n\nConsult the `Changelog <http://docs.pytest.org/en/latest/changelog.html>`__ page for fixes and enhancements of each version.\n\n\nLicense\n-------\n\nCopyright Holger Krekel and others, 2004-2017.\n\nDistributed under the terms of the `MIT`_ license, pytest is free and open source software.\n\n.. _`MIT`: https://github.com/pytest-dev/pytest/blob/master/LICENSE\n\n\n",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://pytest.org",
"keywords": "test unittest",
"license": "MIT license",
"maintainer": "",
"maintainer_email": "",
"name": "pytest",
"package_url": "https://pypi.org/project/pytest/",
"platform": "unix",
"project_url": "https://pypi.org/project/pytest/",
"release_url": "https://pypi.org/project/pytest/3.5.0/",
"requires_dist": [
"py (>=1.5.0)",
"six (>=1.10.0)",
"setuptools",
"attrs (>=17.4.0)",
"more-itertools (>=4.0.0)",
"pluggy (<0.7,>=0.5)",
"funcsigs; python_version < \"3.0\"",
"colorama; sys_platform == \"win32\""
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "pytest: simple powerful testing with Python",
"version": "3.5.0"
},
"last_serial": 3697219,
"releases": {
"3.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
},
"downloads": -1,
"filename": "pytest-3.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 194247,
"upload_time": "2018-03-22T23:47:54",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
},
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://pytest.org",
{ "keywords": "test unittest",
"comment_text": "", "license": "MIT license",
"digests": { "maintainer": "",
"md5": "c0b6697b7130c495aba71cdfcf939cc9", "maintainer_email": "",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c" "name": "pytest",
}, "package_url": "https://pypi.org/project/pytest/",
"downloads": -1, "platform": "unix",
"filename": "pytest-3.5.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/pytest/",
"has_sig": false, "release_url": "https://pypi.org/project/pytest/3.5.0/",
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9", "requires_dist": [
"packagetype": "bdist_wheel", "py (>=1.5.0)",
"python_version": "py2.py3", "six (>=1.10.0)",
"size": 194247, "setuptools",
"upload_time": "2018-03-22T23:47:54", "attrs (>=17.4.0)",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl" "more-itertools (>=4.0.0)",
"pluggy (<0.7,>=0.5)",
"funcsigs; python_version < \"3.0\"",
"colorama; sys_platform == \"win32\""
],
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
"summary": "pytest: simple powerful testing with Python",
"version": "3.5.0"
},
"last_serial": 3697219,
"releases": {
"3.5.0": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "pytest-3.5.0-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "b8e13a4091f07ff1fda081cf40ff99f1", "md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 194247,
"filename": "pytest-3.5.0.tar.gz", "upload_time": "2018-03-22T23:47:54",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 830816, "digests": {
"upload_time": "2018-03-22T23:47:56", "md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz" "sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
} },
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "c0b6697b7130c495aba71cdfcf939cc9",
"sha256": "6266f87ab64692112e5477eba395cfedda53b1933ccd29478e671e73b420c19c"
},
"downloads": -1,
"filename": "pytest-3.5.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c0b6697b7130c495aba71cdfcf939cc9",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 194247,
"upload_time": "2018-03-22T23:47:54",
"url": "https://files.pythonhosted.org/packages/ed/96/271c93f75212c06e2a7ec3e2fa8a9c90acee0a4838dc05bf379ea09aae31/pytest-3.5.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b8e13a4091f07ff1fda081cf40ff99f1",
"sha256": "fae491d1874f199537fd5872b5e1f0e74a009b979df9d53d1553fd03da1703e1"
},
"downloads": -1,
"filename": "pytest-3.5.0.tar.gz",
"has_sig": false,
"md5_digest": "b8e13a4091f07ff1fda081cf40ff99f1",
"packagetype": "sdist",
"python_version": "source",
"size": 830816,
"upload_time": "2018-03-22T23:47:56",
"url": "https://files.pythonhosted.org/packages/2d/56/6019153cdd743300c5688ab3b07702355283e53c83fbf922242c053ffb7b/pytest-3.5.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Python Packaging Authority", "author": "Python Packaging Authority",
"author_email": "distutils-sig@python.org", "author_email": "distutils-sig@python.org",
"bugtrack_url": "", "bugtrack_url": "",
"classifiers": [ "classifiers": [
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging", "Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Systems Administration", "Topic :: System :: Systems Administration",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"description_content_type": "text/x-rst; charset=UTF-8", "description_content_type": "text/x-rst; charset=UTF-8",
"docs_url": null, "docs_url": null,
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "https://github.com/pypa/setuptools",
"keywords": "CPAN PyPI distutils eggs package management",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "setuptools",
"package_url": "https://pypi.org/project/setuptools/",
"platform": "",
"project_url": "https://pypi.org/project/setuptools/",
"release_url": "https://pypi.org/project/setuptools/39.2.0/",
"requires_dist": [
"wincertstore (==0.2); (sys_platform=='win32') and extra == 'ssl'",
"certifi (==2016.9.26); extra == 'certs'"
],
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*",
"summary": "Easily download, build, install, upgrade, and uninstall Python packages",
"version": "39.2.0"
},
"last_serial": 3879671,
"releases": {
"39.2.0": [
{
"comment_text": "",
"digests": {
"md5": "8d066d2201311ed30be535b473e32fed",
"sha256": "8fca9275c89964f13da985c3656cb00ba029d7f3916b37990927ffdf264e7926"
},
"downloads": -1,
"filename": "setuptools-39.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8d066d2201311ed30be535b473e32fed",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 567556,
"upload_time": "2018-05-19T19:19:22",
"url": "https://files.pythonhosted.org/packages/7f/e1/820d941153923aac1d49d7fc37e17b6e73bfbd2904959fffbad77900cf92/setuptools-39.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dd4e3fa83a21bf7bf9c51026dc8a4e59",
"sha256": "f7cddbb5f5c640311eb00eab6e849f7701fa70bf6a183fc8a2c33dd1d1672fb2"
},
"downloads": -1,
"filename": "setuptools-39.2.0.zip",
"has_sig": false,
"md5_digest": "dd4e3fa83a21bf7bf9c51026dc8a4e59",
"packagetype": "sdist",
"python_version": "source",
"size": 851112,
"upload_time": "2018-05-19T19:19:24",
"url": "https://files.pythonhosted.org/packages/1a/04/d6f1159feaccdfc508517dba1929eb93a2854de729fa68da9d5c6b48fa00/setuptools-39.2.0.zip"
}
]
}, },
"urls": [ "home_page": "https://github.com/pypa/setuptools",
"keywords": "CPAN PyPI distutils eggs package management",
"license": "",
"maintainer": "",
"maintainer_email": "",
"name": "setuptools",
"package_url": "https://pypi.org/project/setuptools/",
"platform": "",
"project_url": "https://pypi.org/project/setuptools/",
"release_url": "https://pypi.org/project/setuptools/39.2.0/",
"requires_dist": [
"wincertstore (==0.2); (sys_platform=='win32') and extra == 'ssl'",
"certifi (==2016.9.26); extra == 'certs'"
],
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*",
"summary": "Easily download, build, install, upgrade, and uninstall Python packages",
"version": "39.2.0"
},
"last_serial": 3879671,
"releases": {
"39.2.0": [
{ {
"comment_text": "", "comment_text": "",
"digests": { "digests": {
...@@ -118,4 +83,39 @@ ...@@ -118,4 +83,39 @@
"url": "https://files.pythonhosted.org/packages/1a/04/d6f1159feaccdfc508517dba1929eb93a2854de729fa68da9d5c6b48fa00/setuptools-39.2.0.zip" "url": "https://files.pythonhosted.org/packages/1a/04/d6f1159feaccdfc508517dba1929eb93a2854de729fa68da9d5c6b48fa00/setuptools-39.2.0.zip"
} }
] ]
} },
"urls": [
{
"comment_text": "",
"digests": {
"md5": "8d066d2201311ed30be535b473e32fed",
"sha256": "8fca9275c89964f13da985c3656cb00ba029d7f3916b37990927ffdf264e7926"
},
"downloads": -1,
"filename": "setuptools-39.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "8d066d2201311ed30be535b473e32fed",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 567556,
"upload_time": "2018-05-19T19:19:22",
"url": "https://files.pythonhosted.org/packages/7f/e1/820d941153923aac1d49d7fc37e17b6e73bfbd2904959fffbad77900cf92/setuptools-39.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "dd4e3fa83a21bf7bf9c51026dc8a4e59",
"sha256": "f7cddbb5f5c640311eb00eab6e849f7701fa70bf6a183fc8a2c33dd1d1672fb2"
},
"downloads": -1,
"filename": "setuptools-39.2.0.zip",
"has_sig": false,
"md5_digest": "dd4e3fa83a21bf7bf9c51026dc8a4e59",
"packagetype": "sdist",
"python_version": "source",
"size": 851112,
"upload_time": "2018-05-19T19:19:24",
"url": "https://files.pythonhosted.org/packages/1a/04/d6f1159feaccdfc508517dba1929eb93a2854de729fa68da9d5c6b48fa00/setuptools-39.2.0.zip"
}
]
}
{ {
"info": { "info": {
"author": "Benjamin Peterson", "author": "Benjamin Peterson",
"author_email": "benjamin@python.org", "author_email": "benjamin@python.org",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": "https://pythonhosted.org/six/", "docs_url": "https://pythonhosted.org/six/",
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://pypi.python.org/pypi/six/",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "six",
"package_url": "https://pypi.org/project/six/",
"platform": "",
"project_url": "https://pypi.org/project/six/",
"release_url": "https://pypi.org/project/six/1.11.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Python 2 and 3 compatibility utilities",
"version": "1.11.0"
},
"last_serial": 3180827,
"releases": {
"1.11.0": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
},
"downloads": -1,
"filename": "six-1.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "866ab722be6bdfed6830f3179af65468",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 10702,
"upload_time": "2017-09-17T18:46:53",
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
},
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://pypi.python.org/pypi/six/",
{ "keywords": "",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "866ab722be6bdfed6830f3179af65468", "maintainer_email": "",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb" "name": "six",
}, "package_url": "https://pypi.org/project/six/",
"downloads": -1, "platform": "",
"filename": "six-1.11.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/six/",
"has_sig": false, "release_url": "https://pypi.org/project/six/1.11.0/",
"md5_digest": "866ab722be6bdfed6830f3179af65468", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": "",
"python_version": "py2.py3", "summary": "Python 2 and 3 compatibility utilities",
"size": 10702, "version": "1.11.0"
"upload_time": "2017-09-17T18:46:53", },
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl" "last_serial": 3180827,
"releases": {
"1.11.0": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "six-1.11.0-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "d12789f9baf7e9fb2524c0c64f1773f8", "md5_digest": "866ab722be6bdfed6830f3179af65468",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 10702,
"filename": "six-1.11.0.tar.gz", "upload_time": "2017-09-17T18:46:53",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 29860, "digests": {
"upload_time": "2017-09-17T18:46:54", "md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz" "sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
} },
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
},
"downloads": -1,
"filename": "six-1.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "866ab722be6bdfed6830f3179af65468",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 10702,
"upload_time": "2017-09-17T18:46:53",
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
},
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
]
} }
{ {
"info": { "info": {
"author": "Benjamin Peterson", "author": "Benjamin Peterson",
"author_email": "benjamin@python.org", "author_email": "benjamin@python.org",
"bugtrack_url": null, "bugtrack_url": null,
"classifiers": [ "classifiers": [
"Intended Audience :: Developers", "Intended Audience :: Developers",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries",
"Topic :: Utilities" "Topic :: Utilities"
], ],
"description": "", "description": "",
"docs_url": "https://pythonhosted.org/six/", "docs_url": "https://pythonhosted.org/six/",
"download_url": "", "download_url": "",
"downloads": { "downloads": {
"last_day": -1, "last_day": -1,
"last_month": -1, "last_month": -1,
"last_week": -1 "last_week": -1
},
"home_page": "http://pypi.python.org/pypi/six/",
"keywords": "",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "six",
"package_url": "https://pypi.org/project/six/",
"platform": "",
"project_url": "https://pypi.org/project/six/",
"release_url": "https://pypi.org/project/six/1.11.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Python 2 and 3 compatibility utilities",
"version": "1.11.0"
},
"last_serial": 3180827,
"releases": {
"1.11.0": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
},
"downloads": -1,
"filename": "six-1.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "866ab722be6bdfed6830f3179af65468",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 10702,
"upload_time": "2017-09-17T18:46:53",
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
},
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
]
}, },
"urls": [ "home_page": "http://pypi.python.org/pypi/six/",
{ "keywords": "",
"comment_text": "", "license": "MIT",
"digests": { "maintainer": "",
"md5": "866ab722be6bdfed6830f3179af65468", "maintainer_email": "",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb" "name": "six",
}, "package_url": "https://pypi.org/project/six/",
"downloads": -1, "platform": "",
"filename": "six-1.11.0-py2.py3-none-any.whl", "project_url": "https://pypi.org/project/six/",
"has_sig": false, "release_url": "https://pypi.org/project/six/1.11.0/",
"md5_digest": "866ab722be6bdfed6830f3179af65468", "requires_dist": null,
"packagetype": "bdist_wheel", "requires_python": "",
"python_version": "py2.py3", "summary": "Python 2 and 3 compatibility utilities",
"size": 10702, "version": "1.11.0"
"upload_time": "2017-09-17T18:46:53", },
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl" "last_serial": 3180827,
"releases": {
"1.11.0": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
}, },
{ "downloads": -1,
"comment_text": "", "filename": "six-1.11.0-py2.py3-none-any.whl",
"digests": { "has_sig": false,
"md5": "d12789f9baf7e9fb2524c0c64f1773f8", "md5_digest": "866ab722be6bdfed6830f3179af65468",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9" "packagetype": "bdist_wheel",
}, "python_version": "py2.py3",
"downloads": -1, "size": 10702,
"filename": "six-1.11.0.tar.gz", "upload_time": "2017-09-17T18:46:53",
"has_sig": false, "url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8", },
"packagetype": "sdist", {
"python_version": "source", "comment_text": "",
"size": 29860, "digests": {
"upload_time": "2017-09-17T18:46:54", "md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz" "sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
} },
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
] ]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "866ab722be6bdfed6830f3179af65468",
"sha256": "832dc0e10feb1aa2c68dcc57dbb658f1c7e65b9b61af69048abc87a2db00a0eb"
},
"downloads": -1,
"filename": "six-1.11.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "866ab722be6bdfed6830f3179af65468",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"size": 10702,
"upload_time": "2017-09-17T18:46:53",
"url": "https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "d12789f9baf7e9fb2524c0c64f1773f8",
"sha256": "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
},
"downloads": -1,
"filename": "six-1.11.0.tar.gz",
"has_sig": false,
"md5_digest": "d12789f9baf7e9fb2524c0c64f1773f8",
"packagetype": "sdist",
"python_version": "source",
"size": 29860,
"upload_time": "2017-09-17T18:46:54",
"url": "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
}
]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment