KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
pyCydia
★ 11
Open GitHub ↗
Cydia API wrapper in Python
Download README (.md)
Explore Similar Repositories
docker-python2.7
:
My Python 2.7 Docker base (micktwomey/python2.7)
moodstocks-api-clients
:
Clients for the Moodstocks HTTP API
focuslight-validator
:
Validate http request parameters (or others) by defined rule, without models.
poodr
:
My notes for Sandi Metz's great OOD book, "Practical Object-Oriented Design in Ruby." Rewrote her tests from Minitest to RSpec.
napi-bash
:
Pobieranie polskich napisów do filmów przy użyciu bazy NapiProjektu..
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
pyCydia
?
Download (.md)
pyCydia ======= Cydia API wrapper in Python Installation ======= ``` $ git clone https://github.com/switchpwn/pyCydia.git $ cd pyCydia $ python setup.py install ``` OR ``` $ pip install pyCydia ``` Example ======= ```python from pycydia import pycydia if __name__ == "__main__": client = pycydia.cydia("udid", "package_id", "vendor", "api_key") # Check purchase against cydia servers cydiaPurchase = client.checkCydiaPurchase() # Check if the api check was successful if cydiaPurchase != False: # Purchased? print client.purchaseCompleted() # Gift or purchased? print client.getStatus() # Payment type print client.getProvider() else: # Not successful print client.ERROR ``` LICENSE ======= The MIT License (MIT) Copyright (c) 2014 Mustafa Gezen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.