You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
639 B

  1. # Prismedia AutoUpload
  2. This the implementation for the file handling of prismedia's autoupload feature.
  3. It consist of one file: `autoupload.py`. There is also a test file as `autoupload_test.py` which can be helpfull has to how to use this object.
  4. I am not a python expert and everything may change when integrating this project in Prismedia: function/variable name/case, interface, ...
  5. # Dependencies
  6. ```sh
  7. pip3 install toml
  8. ```
  9. # Tests
  10. Since there is no tests done for Prismedia, I choose `unittest` to do tests for this lib since it is present in the python standard library.
  11. Launch tests with
  12. ```sh
  13. python3 autoupload_test.py
  14. ```