Search found 2945 matches
- Wed Apr 07, 2021 3:44 pm
- Forum: Awasu - Extensions
- Topic: Automate a process
- Replies: 1
- Views: 28
Re: Automate a process
It would be very easy to write an extension like this, but you need to know a bit about Python, or some programming language. There are some examples in the Samples/ sub-directory, so if you know how to program a bit in at least one language, that will get you started. There's more info in the help.
- Fri Feb 26, 2021 12:45 pm
- Forum: Awasu - General Discussion
- Topic: Where enter the serial key for Pro version?
- Replies: 3
- Views: 404
- Fri Feb 26, 2021 6:38 am
- Forum: Awasu - General Discussion
- Topic: Where enter the serial key for Pro version?
- Replies: 3
- Views: 404
Re: Where enter the serial key for Pro version?
You will be sent a link to the full version, which will ask you to enter the serial key the first time it is run.
- Sun Oct 04, 2020 9:26 pm
- Forum: Awasu - General Discussion
- Topic: Any known OS issues....
- Replies: 2
- Views: 46241
Re: Any known OS issues....
Awasu is tested all the way back to XP, so it'll be fine on Windows 7.zeeshan1532 wrote: ↑Sun Oct 04, 2020 4:01 pmCan I run Awasu on older versions of Windows like Windows 7. I have tested it on Windows 10 but I want to know will it work if I switch to Windows 7.
- Mon Aug 24, 2020 2:27 pm
- Forum: Awasu - Bug Reports
- Topic: Couldn't send the email: (8, '_ssl.c:504: EOF occurred in violation of protocol')
- Replies: 5
- Views: 2677
- Sat Aug 22, 2020 10:53 pm
- Forum: Awasu - Bug Reports
- Topic: Couldn't send the email: (8, '_ssl.c:504: EOF occurred in violation of protocol')
- Replies: 5
- Views: 2677
Re: Couldn't send the email: (8, '_ssl.c:504: EOF occurred in violation of protocol')
If you need my actual details please confirm direct email address = support@awau.com ? That's correct. It looks like this is your own server, so it might be better to create a new test account for me, rather than giving me your real account. I suppose you've tried turning SSL and TLS on and off in ...
- Sat Aug 22, 2020 1:36 pm
- Forum: Awasu - Bug Reports
- Topic: Couldn't send the email: (8, '_ssl.c:504: EOF occurred in violation of protocol')
- Replies: 5
- Views: 2677
Re: Couldn't send the email: (8, '_ssl.c:504: EOF occurred in violation of protocol')
What exactly is trying to send an email e.g. is this for an Awasu report?
If possible, email me details of an account on the mail server I can test with.
If possible, email me details of an account on the mail server I can test with.
- Tue Apr 28, 2020 11:06 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
Cool, good to see you're back on this 
I had a quick look through the changes, and it looks good

I had a quick look through the changes, and it looks good

- Sat Jan 18, 2020 11:50 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
Is possible call Awasu at the same time multiple or not? You can, but this is what I was talking about before. If things are slow when processing a single request, issuing ten simultaneous requests is not going to make things faster. There are certain situations where the overall experience might b...
- Wed Jan 15, 2020 4:56 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
Code: Select all
"published": "{%ITEM-METADATA% timestamp format="..." noCaption}"
- Wed Jan 15, 2020 4:55 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
Maybe something like threads on multicore machine? Check the thread count in Task Manager. Awasu is highly multi-threaded and you won't find an RSS reader that updates channels faster. But if it's working really hard on this stuff, there's less resources available for API requests. You can throttle...
- Tue Jan 14, 2020 5:05 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
NOTE: These response times are too slow, I'll take a look at it. On a freshly-restarted copy of Awasu with 646 channels, using Python to get the following URL (i.e. get all channels): http://localhost:2604/channels/list?f=json&v=1 took 2.74s, of which 0.641s was spent inside Awasu. Well under a sec...
- Tue Jan 14, 2020 1:31 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
One of bottleneck is calling at start $/channel/list. I'm looking for smart way to avoid it and speed up running and showing data. I had a quick look through the code and it looks like you're loading the folder structure from the user's config file (in get_nodes() ), then loading channels by folder...
- Mon Jan 13, 2020 2:46 pm
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
I plan some test to get how many API call can Awasu get before crash to set safe limits. Awasu should, of course, never crash :roll:, so if you're having problems, send the crash logs through and I'll see what I can do. Any crashes will be because of what's happening at the time, not because of the...
- Mon Jan 13, 2020 2:42 pm
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 9479
Re: Any Python programmer want collaboration on Awasu?
To add a bit more (because I didn't want to bog down the already-long post above), you absolutely do want to make the front-end Javascript async i.e. use Ajax. The old-style way of building a webapp is, when the user clicks on a link, the browser sends a request to the backend, which generates an HT...