Metadata-Version: 2.1
Name: simple-repository-browser
Version: 0.3.4
Summary: A web interface to browse and search packages in any simple package repository (PEP-503), inspired by PyPI / warehouse
Home-page: https://github.com/simple-repository/simple-repository-browser
Author: CERN, BE-CSS-SET
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: ~=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE_HEADER
Requires-Dist: aiohttp
Requires-Dist: aiosqlite
Requires-Dist: diskcache
Requires-Dist: docutils
Requires-Dist: fastapi
Requires-Dist: importlib_metadata>=6.0
Requires-Dist: jinja2
Requires-Dist: markdown
Requires-Dist: markupsafe
Requires-Dist: packaging
Requires-Dist: parsley
Requires-Dist: pkginfo
Requires-Dist: readme-renderer[md]
Requires-Dist: simple-repository
Requires-Dist: uvicorn
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: pre-commit; extra == "dev"
Requires-Dist: pytest; extra == "dev"

# simple-repository-browser

A web interface to browse and search packages in **any** simple package repository (PEP-503), inspired by PyPI / warehouse.

Built using FastAPI and the [simple-repository](https://github.com/simple-repository/simple-repository) core library.

## Usage

Install from PyPI:

```bash
python -m pip install simple-repository-browser
```

And run:

```bash
simple-repository-browser
```

(or alternatively ``python -m simple_repository_browser``)

By default, this will use the repository at PyPI (https://pypi.org/simple/). You can point it to a custom
repository by passing the URL to the project list endpoint (the base URL according to PEP-503):

```bash
simple-repository-browser https://my-custom-repository.example.com/foo/simple/
```

## Screenshots:

Homepage:

![homepage screenshot](https://raw.githubusercontent.com/simple-repository/simple-repository-browser/main/screenshots/home.png)


Search:

![search result](https://raw.githubusercontent.com/simple-repository/simple-repository-browser/main/screenshots/search.png)


Project page:

![example project page](https://raw.githubusercontent.com/simple-repository/simple-repository-browser/main/screenshots/project.png)



## Runtime details

```simple-repository-browser``` exposes a FastAPI application, and it runs the application in a single ``uvicorn`` worker.
Metadata that is computed will be cached in the ``$XDG_CACHE_DIR/simple-repository-browser`` directory. This cache is not
intended to be shared among different repository URLs, and is unlikely to work for multiple ``simple-repository-browser``
versions. There is currently no intelligent cache invalidation for those cases.


## Development

In order to build the ``simple-repository-browser``, first:

```bash
cd javascript
npm install --include=dev
npm run build
cd ..
```

And then the normal installation procedure applies:

```bash
python -m pip install -e .
```

The browser can be run with:

```bash
python -m simple_repository_browser
```


## License and Support

This code has been released under the MIT license.
It is an initial prototype which is developed in-house, and _not_ currently openly developed.

It is hoped that the release of this prototype will trigger interest from other parties that have similar needs.
With sufficient collaborative interest there is the potential for the project to be openly
developed, and to power Python package repositories across many domains.

Please get in touch at https://github.com/orgs/simple-repository/discussions to share how
this project may be useful to you. This will help us to gauge the level of interest and
provide valuable insight when deciding whether to commit future resources to the project.
