Skip to content

Commit 54c459d

Browse files
author
Ahmad Nassri
committed
updated README + updated LICENSE date + EditorConfig
1 parent 30381e9 commit 54c459d

File tree

3 files changed

+49
-5
lines changed

3 files changed

+49
-5
lines changed

.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.yml]
13+
indent_size = 2
14+
15+
[*.{md,yml}]
16+
trim_trailing_whitespace = false

LICENSE.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2013 Mashape (http://mashape.com)
3+
Copyright (c) 2013-2015 Mashape (https://www.mashape.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1919
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
2020
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
2121
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# Unirest for Python [![Build Status](https://api.travis-ci.org/Mashape/unirest-python.png)](https://travis-ci.org/Mashape/unirest-python)
1+
# Unirest for Python [![Build Status][travis-image]][travis-url] [![version][pypi-version]][pypi-url]
2+
3+
[![License][pypi-license]][license-url]
4+
[![Downloads][pypi-downloads]][pypi-url]
5+
[![Dependencies][versioneye-image]][versioneye-url]
6+
[![Gitter][gitter-image]][gitter-url]
27

38
Unirest is a set of lightweight HTTP libraries available in multiple languages, ideal for most applications:
49

@@ -11,8 +16,6 @@ Unirest is a set of lightweight HTTP libraries available in multiple languages,
1116
* Customizable default headers for every request (DRY)
1217
* Automatic JSON parsing into a native object for JSON responses
1318

14-
Created with love by [thefosk](https://github.com/thefosk) @ [mashape.com](https://mashape.com)
15-
1619
## Installing
1720
To utilize Unirest, install it using pip:
1821

@@ -139,3 +142,28 @@ You can clear the default headers anytime with:
139142
```python
140143
unirest.clear_default_headers()
141144
```
145+
146+
----
147+
148+
Made with ♥ from the [Mashape](https://www.mashape.com/) team
149+
150+
[license-url]: https://github.com/Mashape/unirest-python/blob/master/LICENSE
151+
152+
[gitter-url]: https://gitter.im/Mashape/unirest-python
153+
[gitter-image]: https://img.shields.io/badge/Gitter-Join%20Chat-blue.svg?style=flat-square
154+
155+
[travis-url]: https://travis-ci.org/Mashape/unirest-python
156+
[travis-image]: https://img.shields.io/travis/Mashape/unirest-python.svg?style=flat-square
157+
158+
[pypi-url]: https://pypi.python.org/pypi/Unirest/
159+
[pypi-license]: https://img.shields.io/pypi/l/Unirest.svg?style=flat-square
160+
[pypi-version]: https://img.shields.io/pypi/v/Unirest.svg?style=flat-square
161+
[pypi-downloads]: https://img.shields.io/pypi/dm/Unirest.svg?style=flat-square
162+
163+
[codeclimate-url]: https://codeclimate.com/github/Mashape/unirest-python
164+
[codeclimate-quality]: https://img.shields.io/codeclimate/github/Mashape/unirest-python.svg?style=flat-square
165+
[codeclimate-coverage]: https://img.shields.io/codeclimate/coverage/github/Mashape/unirest-python.svg?style=flat-square
166+
167+
[versioneye-url]: https://www.versioneye.com/user/projects/54b82a8905064657eb00024e
168+
[versioneye-image]: https://img.shields.io/versioneye/d/user/projects/54b82a8905064657eb00024e.svg?style=flat-square
169+

0 commit comments

Comments
 (0)