# yemot-api

# install
```bash
npm i yemot-new-api
```
מבוסס המודול ש- musicode1 בנה. כאן אני משפר הכל
# exemple
```js
const yemot_api = require("./");

(async () => {

	const y = new yemot_api("0773137770", "1234");

	/** קבלת מספר יחידות */
	let r = await y.get_session();

	console.log(r);

	/** העלאת קובץ */
	try {
	let data = await y.upload_big_audio("ivr/111","./video.mp4",true);
	console.log(data);
	/** הורדת קובץ */
	} catch (error) {
		console.error(error);
	}

})();
```