Skip to content

Go client for Warehouse / PyPI's API endpoints.

License

Notifications You must be signed in to change notification settings

jeffwecan/go-pypi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-pypi

Go client for Warehouse / PyPI's API endpoints.

Example

Downloading a specific package version to the current working directory from pypi.org:

index := pypi.NewPackageIndex("https://pypi.org")
filename, err := index.DownloadRelease(".", "hvac", "0.10.1")