ArthurG / Kijiji-Repost-Headless

Repost / Post Kijiji ads with Python
MIT License
143 stars 59 forks source link
ads automation http kijiji python

Kijiji Repost Headless

Build Status

Post ads on Kijiji

Setup

Requirements

Usage

Getting your SSID

Before posting an ad, you will need to manually get your Kijiji SSID.

  1. Log into Kijiji in your browser. Make sure "remember me" is checked.
  2. Inspect the cookies that have been set by Kijiji for your browser.
  3. Find the cookie named "ssid" and copy its value.
  4. Paste the value into the "ssid.txt" file.

Generating an ad posting file

Posting and Reposting an ad

Post one ad (item.yml):

python kijiji_repost_headless [-s ssid_file] post myproduct/item.yml

Repost one ad (item.yml); will delete the ad prior to posting if it already exists:

python kijiji_repost_headless [-s ssid_file] repost myproduct/item.yml

Show all active ads:

python kijiji_repost_headless [-s ssid_file] show

Delete all ads:

python kijiji_repost_headless [-s ssid_file] nuke

Delete one ad (using ad id):

python kijiji_repost_headless [-s ssid_file] delete myAdId

Project Structure

project
│   README.md
│   LICENSE
│   requirements.txt
│
└───kijiji_repost_headless
│   │   kijiji_api.py -> Interfaces with Kijiji
│   │   generate_post_file.py -> Makes item.yml
│   │   get_ids -> Used for retreiving kijiji location data
│   │   kijiji_categories_attr.json -> Finds out what properties each item has
│   │   kijiji_categories_attr.json -> Finds out what properties each item has
│   │   save_attribute_map_to_json.py -> Remakes kijiji_categories_attr.json
│   │   __main__.py -> Wraps kijiji_api.py for ease of use from command line, file is run when 'python kijiji_repost_headless' is run
│   │
└───tests

Issues

Please open a GitHub issue or pull request if you discover problems.

TODO