Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
isaev-vs committed Oct 10, 2023
0 parents commit e0e9d41
Show file tree
Hide file tree
Showing 10 changed files with 575 additions and 0 deletions.
Empty file added LICENSE
Empty file.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Simple travian bot to automatically grade mani villages.

Install:
`pip install travibot`

Usage:

1. Choose server you want to play
2. Create as many account as you want. To get new mail user external services like https://temp-mail.org/en/ and etc
3. Create list of your accounts - login + password (or save in file)
4. Install travibot via pip
5. Write simple script:
```
from src.travibot_Vasily566.main import run_travian
creds = [
("[email protected]", "password"),
("[email protected]", "password"),
]
run_travian(creds=creds)
```
Note!
In account settings you should:
1. Choose Russian language
2. Disable hints (first settings point)


Binary file added dist/travibot-0.0.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/travibot-0.0.1.tar.gz
Binary file not shown.
Binary file added dist/travibot-0.0.2-py3-none-any.whl
Binary file not shown.
Binary file added dist/travibot-0.0.2.tar.gz
Binary file not shown.
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "travibot"
version = "0.0.2"
authors = [
{ name = "Isaev Vasily", email = "[email protected]" },
]

description = "Simple automatic travian bot that automaticly build ur vilage/villages."
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"selenium"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/Vasiliy566/travian_bot"
"Bug Tracker" = "https://github.com/Vasiliy566/travian_bot/issues"
Empty file.
Loading

0 comments on commit e0e9d41

Please sign in to comment.