Links & Accounts, txt files, csv, json or all #7
Unanswered
markmelnic
asked this question in
Q&A
Replies: 1 comment 2 replies
-
I store the links and content sample (comment/post) in the DB (max 3000 chars), the accounts in a secondary table (username,password,ip_address,failed_login,platform [reddit/instagram/tiktok/youtube]) I then have those accounts assigned to specific IPs that only that account can ever use for its life time (/16). Then I utilize sockets and threading on a MASSIVE amazon instance (2000 gigs of ram) to connect outbound on those IPs and do its thing. It can handle about 100 Chromium instances at the same time, no problem. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As you might have noticed, links and accounts files are passed as path arguments for the bot to do what it has to. After reviewing the code a bit I realized the current approach is by far not the best, so I figured why not change the way we store and process these files.
The alternatives I came up with are:
.tsv
files) but generally a good format to work withPlease let me know your thoughts and what you consider to be the best approach. If you have any ideas or suggestions I have not mentioned here, feel free to let me know. Until that, thanks!
Beta Was this translation helpful? Give feedback.
All reactions