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.
Search found 2942 matches
- Sun Oct 04, 2020 9:26 pm
- Forum: Awasu - General Discussion
- Topic: Any known OS issues....
- Replies: 2
- Views: 45663
Re: Any known OS issues....
- 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: 1666
- 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: 1666
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: 1666
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: 7505
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: 7505
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: 7505
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: 7505
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: 7505
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: 7505
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: 7505
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: 7505
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...
- Mon Jan 13, 2020 2:32 pm
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 7505
Re: Any Python programmer want collaboration on Awasu?
I check out old Awasu API (Python 2) based library and I think about create this async based. Awasu limiting performance when using is API. Pending can block get data from Awasu. It is not desing to use API and update channels simultinously. I have to walk around. Async IO isn't some magic pixie du...
- Mon Jan 06, 2020 3:31 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 7505
Re: Any Python programmer want collaboration on Awasu?
I only think that better is at this stage code all project from scratch or better update existing structure. What do you think? There is an idea in software development that you "build one to throw away", that is, you build a quick prototype to understand the problem, explore some ideas, then you t...
- Sun Jan 05, 2020 7:56 am
- Forum: Awasu - Extensions
- Topic: Any Python programmer want collaboration on Awasu?
- Replies: 33
- Views: 7505
Re: Any Python programmer want collaboration on Awasu?
No worries. Not criticizing, just making suggestions. This is pretty impressive for a first program, but if you want other people to work on it, you can't have too many of these special things that need to be set up for it to work. I had to do a bunch of debugging to figure out what needed to be don...