Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uzh-ase-fs24/shared
shared code for the findMe project organized as a python package
https://github.com/uzh-ase-fs24/shared
package pip python
Last synced: 11 days ago
JSON representation
shared code for the findMe project organized as a python package
- Host: GitHub
- URL: https://github.com/uzh-ase-fs24/shared
- Owner: uzh-ase-fs24
- Created: 2024-03-24T10:13:48.000Z (9 months ago)
- Default Branch: develop
- Last Pushed: 2024-05-06T08:03:43.000Z (8 months ago)
- Last Synced: 2024-05-06T09:27:16.102Z (8 months ago)
- Topics: package, pip, python
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# findMe Shared Library 🛠️
This repository contains the source code for the findMe shared library. It is organized as a python package using poetry
and is then installed via pip.## Project Structure
```yaml
shared
-- findme # The main package
-- authorization # Contains the authorization module to authenticate the findme API
-- tests # local tests
-- pyproject.toml # The poetry configuration file
```## Installation
Currently, the library is installed via pip directly from this git repository. This is a functionality enabled py pip
directly `pip install pip@git+https://github.com/uzh-ase-fs24/shared@develop'`## Usage
```python
from findme.authorization import Authorizerauthorizer = Authorizer(...)
...
```