Skip to content

Provides functions to query offers from rebuy or momox

License

Notifications You must be signed in to change notification settings

akorb/recommerce-queries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rebuy

Example code:

from rebuy import query_offers

test_eans = ['3608964290', '9783608939842']
offers = query_offers(test_eans)
print(offers)

# Prints: [20.88, 12.19]

Momox

Here an authentication is required to be able to access the API.

Example code:

from momox import get_authentication_cookies, query_offers

test_eans = ['3608964290', '9783608939842']
cookies = get_authentication_cookies('your-email-address', 'your-password')
offers = query_offers(test_eans, cookies)
print(offers)

# Prints: [37.77, 10.46]

About

Provides functions to query offers from rebuy or momox

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages