Skip to content

Commit e848117

Browse files
committed
initiate.
0 parents  commit e848117

11 files changed

+929
-0
lines changed

PKG-INFO

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
Metadata-Version: 1.1
2+
Name: onesignal
3+
Version: 0.1.3
4+
Summary: A Python wrapper for OneSignal API (http://onesignal.com)
5+
Home-page: https://github.com/gettalent/one-signal-python-sdk
6+
Author: Waqas Younas, Zohaib Ijaz, Ismael de Esteban
7+
8+
License: UNKNOWN
9+
Description: OneSignal Python SDK
10+
=====================
11+
12+
A Python SDK for OneSignal (https://onesignal.com/). Documentation for OneSignal API is available at
13+
https://documentation.onesignal.com/docs/server-api-overview.
14+
15+
Obtaining User Rest API key and App REST API key
16+
-------------------------------------------------
17+
18+
See details here https://documentation.onesignal.com/docs/server-api-overview
19+
20+
Install from pip
21+
------------------------
22+
23+
> pip install onesignal
24+
25+
Setup for develop
26+
------
27+
28+
You can install the package by running
29+
30+
::
31+
32+
> python setup.py install
33+
34+
Once installed, to get started, you can do:
35+
36+
::
37+
38+
from onesignal import OneSignal
39+
one_signal = OneSignal(USER_AUTH_KEY, YOUR_APP_ID)
40+
one_signal.get_players(REST_API_KEY)
41+
42+
43+
USER_AUTH_KEY: Your e-mail -> Api Keys -> User Auth Key
44+
45+
YOUR_APP_ID: Your App -> App settings -> Keys and Id
46+
47+
REST_API_KEY: Your App -> App settings -> Keys and Id
48+
49+
Tests
50+
------
51+
52+
Tests are located under /tests and these also kind of show some examples on how to use the library.
53+
54+
Running tests
55+
---------------
56+
57+
Go to this directory /tests and then run
58+
59+
::
60+
61+
> py.test
62+
63+
Contributors
64+
-------------
65+
66+
- Zohaib Ijaz <[email protected]>
67+
- Waqas Younas <[email protected]>
68+
69+
70+
Keywords: onesignal,onesignalsdk
71+
Platform: UNKNOWN
72+
Classifier: Development Status :: 3 - Alpha
73+
Classifier: Intended Audience :: Developers
74+
Classifier: Topic :: Internet
75+
Classifier: Topic :: Software Development :: Libraries
76+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
77+
Classifier: Programming Language :: Python :: 2.7

README.rst

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
OneSignal Python SDK
2+
=====================
3+
4+
A Python SDK for OneSignal (https://onesignal.com/). Documentation for OneSignal API is available at
5+
https://documentation.onesignal.com/docs/server-api-overview.
6+
7+
Obtaining User Rest API key and App REST API key
8+
-------------------------------------------------
9+
10+
See details here https://documentation.onesignal.com/docs/server-api-overview
11+
12+
Install from pip
13+
------------------------
14+
15+
> pip install onesignal
16+
17+
Setup for develop
18+
------
19+
20+
You can install the package by running
21+
22+
::
23+
24+
> python setup.py install
25+
26+
Once installed, to get started, you can do:
27+
28+
::
29+
30+
from onesignal import OneSignal
31+
one_signal = OneSignal(USER_AUTH_KEY, YOUR_APP_ID)
32+
one_signal.get_players(REST_API_KEY)
33+
34+
35+
USER_AUTH_KEY: Your e-mail -> Api Keys -> User Auth Key
36+
37+
YOUR_APP_ID: Your App -> App settings -> Keys and Id
38+
39+
REST_API_KEY: Your App -> App settings -> Keys and Id
40+
41+
Tests
42+
------
43+
44+
Tests are located under /tests and these also kind of show some examples on how to use the library.
45+
46+
Running tests
47+
---------------
48+
49+
Go to this directory /tests and then run
50+
51+
::
52+
53+
> py.test
54+
55+
Contributors
56+
-------------
57+
58+
- Zohaib Ijaz <[email protected]>
59+
- Waqas Younas <[email protected]>
60+

onesignal.egg-info/PKG-INFO

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
Metadata-Version: 1.1
2+
Name: onesignal
3+
Version: 0.1.3
4+
Summary: A Python wrapper for OneSignal API (http://onesignal.com)
5+
Home-page: https://github.com/gettalent/one-signal-python-sdk
6+
Author: Waqas Younas, Zohaib Ijaz, Ismael de Esteban
7+
8+
License: UNKNOWN
9+
Description: OneSignal Python SDK
10+
=====================
11+
12+
A Python SDK for OneSignal (https://onesignal.com/). Documentation for OneSignal API is available at
13+
https://documentation.onesignal.com/docs/server-api-overview.
14+
15+
Obtaining User Rest API key and App REST API key
16+
-------------------------------------------------
17+
18+
See details here https://documentation.onesignal.com/docs/server-api-overview
19+
20+
Install from pip
21+
------------------------
22+
23+
> pip install onesignal
24+
25+
Setup for develop
26+
------
27+
28+
You can install the package by running
29+
30+
::
31+
32+
> python setup.py install
33+
34+
Once installed, to get started, you can do:
35+
36+
::
37+
38+
from onesignal import OneSignal
39+
one_signal = OneSignal(USER_AUTH_KEY, YOUR_APP_ID)
40+
one_signal.get_players(REST_API_KEY)
41+
42+
43+
USER_AUTH_KEY: Your e-mail -> Api Keys -> User Auth Key
44+
45+
YOUR_APP_ID: Your App -> App settings -> Keys and Id
46+
47+
REST_API_KEY: Your App -> App settings -> Keys and Id
48+
49+
Tests
50+
------
51+
52+
Tests are located under /tests and these also kind of show some examples on how to use the library.
53+
54+
Running tests
55+
---------------
56+
57+
Go to this directory /tests and then run
58+
59+
::
60+
61+
> py.test
62+
63+
Contributors
64+
-------------
65+
66+
- Zohaib Ijaz <[email protected]>
67+
- Waqas Younas <[email protected]>
68+
69+
70+
Keywords: onesignal,onesignalsdk
71+
Platform: UNKNOWN
72+
Classifier: Development Status :: 3 - Alpha
73+
Classifier: Intended Audience :: Developers
74+
Classifier: Topic :: Internet
75+
Classifier: Topic :: Software Development :: Libraries
76+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
77+
Classifier: Programming Language :: Python :: 2.7

onesignal.egg-info/SOURCES.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
README.rst
2+
setup.cfg
3+
setup.py
4+
onesignal/__init__.py
5+
onesignal/onesignal_client.py
6+
onesignal.egg-info/PKG-INFO
7+
onesignal.egg-info/SOURCES.txt
8+
onesignal.egg-info/dependency_links.txt
9+
onesignal.egg-info/requires.txt
10+
onesignal.egg-info/top_level.txt
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

onesignal.egg-info/requires.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
requests
2+
pytest

onesignal.egg-info/top_level.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
onesignal

onesignal/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__author__ = 'waqas'
2+
3+
from onesignal_client import OneSignal

0 commit comments

Comments
 (0)