Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Update GitHub-related links #55

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">HTTP Headers, the Complete Toolkit 🧰 <a href="https://twitter.com/intent/tweet?text=Python%20library%20for%20oriented%20object%20HTTP%20style%20headers.&url=https://www.github.com/Ousret/kiss-headers&hashtags=python,headers,opensource"><img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social"/></a></h1>
<h1 align="center">HTTP Headers, the Complete Toolkit 🧰 <a href="https://twitter.com/intent/tweet?text=Python%20library%20for%20oriented%20object%20HTTP%20style%20headers.&url=https://www.github.com/jawah/kiss-headers&hashtags=python,headers,opensource"><img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social"/></a></h1>

<p align="center">
<sup>Object-oriented headers. Kind of structured headers.</sup><br>
Expand Down Expand Up @@ -371,12 +371,12 @@ Also, you can create your own custom header object using the class `kiss_headers

## 📜 Documentation

See the full documentation for advanced usages : [ousret.github.io/kiss-headers](https://ousret.github.io/kiss-headers/)
See the full documentation for advanced usages : [jawah.github.io/kiss-headers](https://jawah.github.io/kiss-headers/)

## 👤 Contributing

Contributions, issues and feature requests are very much welcome.<br />
Feel free to check [issues page](https://github.com/Ousret/kiss-headers/issues) if you want to contribute.
Feel free to check [issues page](https://github.com/jawah/kiss-headers/issues) if you want to contribute.

Firstly, after getting your own local copy, run `./scripts/install` to initialize your virtual environment.
Then run `./scripts/check` before you commit, make sure everything is still working.
Expand All @@ -386,4 +386,4 @@ Remember to keep it sweet and simple when contributing to this project.
## 📝 License

Copyright © 2020 [Ahmed TAHRI @Ousret](https://github.com/Ousret).<br />
This project is [MIT](https://github.com/Ousret/kiss-headers/blob/master/LICENSE) licensed.
This project is [MIT](https://github.com/jawah/kiss-headers/blob/master/LICENSE) licensed.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Welcome to Headers for Humans 👋 <a href="https://twitter.com/intent/tweet?text=Python%20library%20for%20oriented%20object%20HTTP%20or%20IMAP%20headers.&url=https://www.github.com/Ousret/kiss-headers&hashtags=python,headers"><img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social"/></a></h1>
<h1 align="center">Welcome to Headers for Humans 👋 <a href="https://twitter.com/intent/tweet?text=Python%20library%20for%20oriented%20object%20HTTP%20or%20IMAP%20headers.&url=https://www.github.com/jawah/kiss-headers&hashtags=python,headers"><img src="https://img.shields.io/twitter/url/http/shields.io.svg?style=social"/></a></h1>

<p align="center">
<sup>Object oriented headers, parser and builder. HTTP/1.1 Style.</sup><br>
Expand Down Expand Up @@ -69,4 +69,4 @@ pip install kiss-headers
## 📝 License

Copyright © 2020 [Ahmed TAHRI @Ousret](https://github.com/Ousret).<br />
This project is [MIT](https://github.com/Ousret/kiss-headers/blob/master/LICENSE) licensed.
This project is [MIT](https://github.com/jawah/kiss-headers/blob/master/LICENSE) licensed.
2 changes: 1 addition & 1 deletion kiss_headers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
True

Others methods and usages are available - see the full documentation
at <https://github.com/Ousret/kiss-headers>.
at <https://github.com/jawah/kiss-headers>.

:copyright: (c) 2020 by Ahmed TAHRI
:license: MIT, see LICENSE for more details.
Expand Down
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: Kiss-Headers
site_description: Python package for object oriented headers, HTTP/1.1 style. Parse headers to objects.
site_url: https://ousret.github.io/kiss-headers
site_url: https://jawah.github.io/kiss-headers

theme:
name: 'material'
Expand All @@ -11,9 +11,9 @@ theme:
primary: 'teal'
accent: 'deep orange'

repo_name: ousret/kiss-headers
repo_url: https://github.com/Ousret/kiss-headers/
edit_uri: "https://github.com/Ousret/kiss-headers/tree/master/docs"
repo_name: jawah/kiss-headers
repo_url: https://github.com/jawah/kiss-headers/
edit_uri: "https://github.com/jawah/kiss-headers/tree/master/docs"

nav:
- Introduction: 'index.md'
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ requires-python = ">=3.7"
dynamic = ["version"]

[project.urls]
"Documentation" = "https://ousret.github.io/kiss-headers"
"Code" = "https://github.com/ousret/kiss-headers"
"Issue tracker" = "https://github.com/ousret/kiss-headers/issues"
"Documentation" = "https://jawah.github.io/kiss-headers"
"Code" = "https://github.com/jawah/kiss-headers"
"Issue tracker" = "https://github.com/jawah/kiss-headers/issues"

[tool.hatch.version]
path = "kiss_headers/version.py"
Expand Down
Loading