https://github.com/defaultparam/hitman-api
These APIs define operations to be performed on data from the Hitman Universe
https://github.com/defaultparam/hitman-api
Last synced: 12 months ago
JSON representation
These APIs define operations to be performed on data from the Hitman Universe
- Host: GitHub
- URL: https://github.com/defaultparam/hitman-api
- Owner: defaultparam
- Created: 2024-11-04T00:16:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-24T22:49:23.000Z (over 1 year ago)
- Last Synced: 2025-02-01T15:35:30.326Z (about 1 year ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hitman API
- This repository contains a set of microservices, that can aid in following scenarios:
- Challenge tracking
- Offline mission planning
- Others: Extend the feel of Hitman universe through a simulated puzzle game featuring easters (or something like that... Got an idea? open an issue)
> As of now, only challenge tracker is being worked upon.
ETA for challenge tracker API? Check back in Jan 2025
## Installation
Make sure you have python 3.10+ installed.
Boot into a virtual env
```bash
python3 -m venv .venv
```
Clone the repository
```bash
git clone
```
Install the dependencies
```bash
pip install fastapi[standard] # This installs some extra packages such as fastapi-cli.
```
Run the API with fastapi command line utility
```bash
fastapi dev ./challenge_tracker/main.py
```
If you would like to contribute to the project, kindly open a PR
_I will leave you to prepare ;)_