You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merged PR 6563359: Python and file content support
This PR adds support for two new types of content: Python packages and files. Each can be managed by Pulp.
For right now, I am referring to file content (e.g. [the clamav signatures](https://packages.microsoft.com/clamav/)) with the name `FilePackage` to be consistent with the other types of content we offer (RpmPackage, PythonPackage, DebPackage). I'm not totally happy with this name but there are two arguments for it:
1. It keeps things consistent/easy/simple
2. We (the pmc team) will probably be the only ones to manage file content so the name doesn't matter too much IMO
That said, I'm open to suggestion for how to name things. Here are some examples of where/how this name manifests:
```
# schemas
RpmPackageResponse
DebPackageResponse
PythonPackageResponse
FilePackageResponse ?
# api endpoints
/rpm/packages/
/python/packages/
/python/packages/
/file/packages/ ?
# cli commands
pmc package rpm list
pmc package deb list
pmc package python list
pmc package file list ?
```
Related work items: #15206527
0 commit comments