Skip to content

Commit

Permalink
Change the author username (karpetrosyan#87)
Browse files Browse the repository at this point in the history
* Change the author username to the new one

* Update README.md

* Update docs/index.md
  • Loading branch information
karpetrosyan authored Oct 7, 2023
1 parent 81b4405 commit 3fcd460
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href=""><img width="350" height="250" src="https://raw.githubusercontent.com/karosis88/hishel/master/.github/logo.jpg" alt='HTTPX'></a>
<a href=""><img width="350" height="250" src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/.github/logo.jpg" alt='HTTPX'></a>
</p>


Expand All @@ -15,8 +15,8 @@
<img src="https://img.shields.io/pypi/l/hishel" alt="license">
</a>

<a href="https://img.shields.io/codecov/c/github/karosis88/hishel">
<img src="https://img.shields.io/codecov/c/github/karosis88/hishel" alt="license">
<a href="https://img.shields.io/codecov/c/github/karpetrosyan/hishel">
<img src="https://img.shields.io/codecov/c/github/karpetrosyan/hishel" alt="license">
</a>

<a href="https://www.pepy.tech/projects/hishel">
Expand All @@ -38,7 +38,7 @@
- 🚀 Very fast: Your requests will be even faster if there are **no IO operations**.

## Documentation
Go through the [Hishel documentation](https://karosis88.github.io/hishel/).
Go through the [Hishel documentation](https://hishel.com).

## QuickStart

Expand Down Expand Up @@ -105,7 +105,7 @@ pool.request("GET", "https://www.github.com") # takes from the cache

## How and where are the responses saved?

The responses are stored by `Hishel` in [storages](https://karosis88.github.io/hishel/userguide/#storages).
The responses are stored by `Hishel` in [storages](https://karpetrosyan.github.io/hishel/userguide/#storages).
You have complete control over them; you can change storage or even write your own if necessary.


Expand Down
12 changes: 6 additions & 6 deletions docs/examples/fastapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ async def main():

Now let's do some load testing using the popular load testing tool [Locust](https://locust.io/).

[Here are](https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_without_cache.png) the test results:
[Here are](https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_without_cache.png) the test results:

<a href="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_without_cache.png">
<img src="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_without_cache.png" alt="pypi">
<a href="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_without_cache.png">
<img src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_without_cache.png" alt="pypi">
</a>

Despite the fact that we use **async/await**, we got only **±70 RPS**.
Expand All @@ -42,10 +42,10 @@ async def main():
return response.status_code
```

[Here are](https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_with_cache.png) the test results:
[Here are](https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_with_cache.png) the test results:

<a href="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_with_cache.png">
<img src="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/fastapi_with_cache.png" alt="pypi">
<a href="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_with_cache.png">
<img src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/fastapi_with_cache.png" alt="pypi">
</a>

Now we have more than **365+ RPS** using the power of HTTP caching.
12 changes: 6 additions & 6 deletions docs/examples/flask.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ def main():

Now let's do some load testing using the popular load testing tool [Locust](https://locust.io/).

[Here are](https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_without_cache.png) the test results:
[Here are](https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_without_cache.png) the test results:

<a href="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_without_cache.png">
<img src="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_without_cache.png" alt="pypi">
<a href="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_without_cache.png">
<img src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_without_cache.png" alt="pypi">
</a>

We got only **±20 RPS**, which is not very good.
Expand All @@ -42,10 +42,10 @@ def main():
return str(response.status_code)
```

[Here are](https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_with_cache.png) the test results:
[Here are](https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_with_cache.png) the test results:

<a href="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_with_cache.png">
<img src="https://raw.githubusercontent.com/karosis88/hishel/master/docs/static/flask_with_cache.png" alt="pypi">
<a href="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_with_cache.png">
<img src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/docs/static/flask_with_cache.png" alt="pypi">
</a>

Now we have more than **±800 RPS** using the power of HTTP caching.
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<a href=""><img width="350" height="250" src="https://raw.githubusercontent.com/karosis88/hishel/master/.github/logo.jpg" alt='HTTPX'></a>
<a href=""><img width="350" height="250" src="https://raw.githubusercontent.com/karpetrosyan/hishel/master/.github/logo.jpg" alt='HTTPX'></a>
</p>


Expand All @@ -15,8 +15,8 @@
<img src="https://img.shields.io/pypi/l/hishel" alt="license">
</a>

<a href="https://img.shields.io/codecov/c/github/karosis88/hishel">
<img src="https://img.shields.io/codecov/c/github/karosis88/hishel" alt="license">
<a href="https://img.shields.io/codecov/c/github/karpetrosyan/hishel">
<img src="https://img.shields.io/codecov/c/github/karpetrosyan/hishel" alt="license">
</a>

<a href="https://static.pepy.tech/badge/hishel/month">
Expand All @@ -38,7 +38,7 @@
- 🚀 Very fast: Your requests will be even faster if there are **no IO operations**.

## Documentation
Go through the [Hishel documentation](https://karosis88.github.io/hishel/).
Go through the [Hishel documentation](https://hishel.com).

## QuickStart

Expand Down Expand Up @@ -105,7 +105,7 @@ pool.request("GET", "https://www.github.com") # takes from the cache

## How and where are the responses saved?

The responses are stored by `Hishel` in [storages](https://karosis88.github.io/hishel/userguide/#storages).
The responses are stored by `Hishel` in [storages](https://karpetrosyan.github.io/hishel/userguide/#storages).
You have complete control over them; you can change storage or even write your own if necessary.


Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
site_name: Hishel
repo_url: https://github.com/karosis88/hishel
repo_url: https://github.com/karpetrosyan/hishel

theme:
name: material
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ redis = [

[project.urls]
Homepage = "https://hishel.com"
Source = "https://github.com/karosis88/hishel"
Source = "https://github.com/karpetrosyan/hishel"

[tool.hatch.version]
path = "hishel/__init__.py"
Expand Down

0 comments on commit 3fcd460

Please sign in to comment.