venturocket-api-python
The official python client library for Venturocket’s API.
Dependencies
This client library uses requests for its HTTP needs. If venturocket is installed via pip, requests should be installed automatically.
Usage
Installation
$ pip install venturocket
Making API Calls
Initialize the client
from venturocket import Venturocket, Listing
venturocket = Venturocket("your-api-key", "your-api-secret")
Keyword calls
# retrieve validity and synonym data for a specific keyword
keyword = venturocket.keyword.get_keyword("php")
# retrieve keyword suggestions based on one or more provided keywords
suggestions = venturocket.keyword.get_suggestions("php", "python", "java")
# parse valid keywords from raw text
text = "We are looking for rock star web developer with expertise in Javascript and PHP."
keywords = venturocket.keyword.parse_keywords(text)
Listing calls
# create a listing
listing = Listing("a_user_id", "provider", "Your headline here!")
listing.add_keyword("php", 400, 102)
listing.add_location("94105")
listing.add_listing_type("full-time")
listing_id = venturocket.listing.create_listing(listing)
# retrieve a listing
retrieved_listing = venturocket.listing.get_listing(listing_id)
# update a listing
retrieved_listing['userType'] = "seeker"
venturocket.listing.update_listing(listing_id, retrieved_listing)
# disable a listing
venturocket.listing.disable_listing(listing_id)
# enable a listing
venturocket.litsing.enable_listing(listing_id)
# retrieve matches for a listing
matches = venturocket.listing.get_matches(listing_id)
Release files for venturocket 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| venturocket-1.0.0.tar.gz | 7.7 kB | Details |
Release files / venturocket-1.0.0.tar.gz
| Download URL | venturocket-1.0.0.tar.gz |
|---|---|
| Size | 7.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2d3b6f119b44ffdb0c3526bc400869281a260ba30ffd2a19f0b4bc335c192f61
|
|
BLAKE2b-256 checksum How to use checksums |
f40cd7fcbe0bb2095d1d6e87c5ae1345f5727581937b334811d9064c6ae06322
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |