Metadata-Version: 2.1
Name: apihub
Version: 0.1.0
Summary: a API gateway on top of Redis
License: MIT
Author: Yifan Zhang
Author-email: freqyifan@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: SQLAlchemy (>=1.4.15,<2.0.0)
Requires-Dist: SQLAlchemy-Utils (>=0.37.4,<0.38.0)
Requires-Dist: fastapi (>=0.65.1,<0.66.0)
Requires-Dist: fastapi-jwt-auth (>=0.5.0,<0.6.0)
Requires-Dist: prometheus-client (>=0.7.0,<0.8.0)
Requires-Dist: psycopg2-binary (>=2.8.6,<3.0.0)
Requires-Dist: python-dotenv (>=0.17.1,<0.18.0)
Requires-Dist: python-multipart (>=0.0.5,<0.0.6)
Requires-Dist: redis (>=3.5.3,<4.0.0)
Requires-Dist: tanbih-pipeline[redis] (>=0.11.0,<0.12.0)
Requires-Dist: uvicorn (>=0.13.4,<0.14.0)
Description-Content-Type: text/markdown

<!-- PROJECT SHIELDS -->
<!--
*** I'm using markdown "reference style" links for readability.
*** Reference links are enclosed in brackets [ ] instead of parentheses ( ).
*** See the bottom of this document for the declaration of the reference variables
*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use.
*** https://www.markdownguide.org/basic-syntax/#reference-style-links
-->
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![LinkedIn][linkedin-shield]][linkedin-url]



<!-- PROJECT LOGO -->
<br />
<p align="center">
  <a href="https://github.com/yifan/apihub">
    <img src="https://raw.githubusercontent.com/yifan/apihub/master/images/APIHub.png" alt="Logo" width="600" height="400">
  </a>

  <h3 align="center">APIHub</h3>

  <p align="center">
    APIHub is a platform to dynamically serve API services on-fly. API service workers can be deployed when needed.
    <br />
    <a href="https://github.com/yifan/apihub"><strong>Explore the docs »</strong></a>
    <br />
    <br />
    <a href="https://github.com/yifan/apihub">View Demo</a>
    ·
    <a href="https://github.com/yifan/apihub/issues">Report Bug</a>
    ·
    <a href="https://github.com/yifan/apihub/issues">Request Feature</a>
  </p>
</p>



<!-- TABLE OF CONTENTS -->
<details open="open">
  <summary><h2 style="display: inline-block">Table of Contents</h2></summary>
  <ol>
    <li>
      <a href="#about-the-project">About The Project</a>
      <ul>
        <li><a href="#built-with">Built With</a></li>
      </ul>
    </li>
    <li>
      <a href="#getting-started">Getting Started</a>
      <ul>
        <li><a href="#prerequisites">Prerequisites</a></li>
        <li><a href="#installation">Installation</a></li>
      </ul>
    </li>
    <li><a href="#usage">Usage</a></li>
    <li><a href="#roadmap">Roadmap</a></li>
    <li><a href="#contributing">Contributing</a></li>
    <li><a href="#license">License</a></li>
    <li><a href="#contact">Contact</a></li>
    <li><a href="#acknowledgements">Acknowledgements</a></li>
  </ol>
</details>



<!-- ABOUT THE PROJECT -->
## About The Project

[![Product Name Screen Shot][product-screenshot]](https://raw.githubusercontent.com/yifan/apihub/master/images/APIHub.png)

Here's a blank template to get started:
**To avoid retyping too much info. Do a search and replace with your text editor for the following:**
`yifan`, `apihub`, `yifan2019`, `email`, `APIHub`, `project_description`

### Features & TODOs

    [X] Security
        [X] authenticate
        [X] admin, manager, user
        [X] user management
        [X] rate limiter
        [ ] register
        [ ] social login
    [ ] Subscription
        [-] subscription
        [-] quota
        [X] application token
        [-] daily usage record in redis
    [ ] Async/sync API calls
        [ ] api worker reports input/output: describe
        [X] generic worker deployment 
        [ ] auto scaler for api workers


### Built With

* [fastapi](https://fastapi.tiangolo.com/)
* [SQLAlchemy](https://www.sqlalchemy.org/)
* [pydantic](https://pydantic-docs.helpmanual.io/)
* [tanbih-pipeline](https://github.com/yifan/pipeline)
* [psycopg2](https://pypi.org/project/psycopg2/)
* [redis](https://pypi.org/project/redis/)
* [poetry](https://python-poetry.org/)



<!-- GETTING STARTED -->
## Getting Started

To get a local copy up and running follow these simple steps.

### Prerequisites

This is an example of how to list things you need to use the software and how to install them.

### Installation

1. Clone the repo
   ```sh
   git clone https://github.com/yifan/apihub.git
   ```
2. Install python packages
   ```sh
   poetry install
   ```


<!-- USAGE EXAMPLES -->
## Usage

Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.

_For more examples, please refer to the [Documentation](https://example.com)_



<!-- ROADMAP -->
## Roadmap

See the [open issues](https://github.com/yifan/apihub/issues) for a list of proposed features (and known issues).



<!-- CONTRIBUTING -->
## Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request


## Testing

1. Start postgres and redis
   ```sh
   docker compose up
   ```
2. Setup environment variables in a local .env file
   ```sh
   cat >.env <<EOF
   DB_URI="postgresql://dbuser:dbpass@localhost:5432/test"
   JWT_SECRET="nosecret"
   REDIS="redis://localhost:6379/1"
   IN_REDIS="redis://localhost:6379/1"
   OUT_REDIS="redis://localhost:6379/1"
   SECURITY_TOKEN_EXPIRES_DAYS=1
   SUBSCRIPTION_TOKEN_EXPIRES_DAYS=1
   EOF
   ```
3. Run tests
   ```sh
   poetry run test
   ```
4. Shutdown docker services
   ```sh
   docker compose down
   ```




<!-- LICENSE -->
## License

Distributed under the MIT License. See `LICENSE` for more information.



<!-- CONTACT -->
## Contact

Yifan Zhang - [@yifan2019](https://twitter.com/yifan2019) - yzhang@hbku.edu.qa

Project Link: [https://github.com/yifan/apihub](https://github.com/yifan/apihub)



<!-- ACKNOWLEDGEMENTS -->
## Acknowledgements

* []()
* []()
* []()



Copyright (C) 2021, Qatar Computing Research Institute, HBKU

<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
[contributors-shield]: https://img.shields.io/github/contributors/yifan/apihub.svg?style=for-the-badge
[contributors-url]: https://github.com/yifan/apihub/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/yifan/apihub.svg?style=for-the-badge
[forks-url]: https://github.com/yifan/apihub/network/members
[stars-shield]: https://img.shields.io/github/stars/yifan/apihub.svg?style=for-the-badge
[stars-url]: https://github.com/yifan/apihub/stargazers
[issues-shield]: https://img.shields.io/github/issues/yifan/apihub.svg?style=for-the-badge
[issues-url]: https://github.com/yifan/apihub/issues
[license-shield]: https://img.shields.io/github/license/yifan/apihub.svg?style=for-the-badge
[license-url]: https://github.com/yifan/apihub/blob/master/LICENSE
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://linkedin.com/in/yifanzhang

