Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: futapi/fut
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.0
Choose a base ref
...
head repository: futapi/fut
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 42,187 additions and 1,920 deletions.
  1. +2 −0 .coveragerc
  2. +11 −1 .gitignore
  3. +10 −3 .travis.yml
  4. +42 −24 AUTHORS.rst
  5. +482 −229 CHANGELOG.rst
  6. +1 −1 MANIFEST.in
  7. +404 −248 README.rst
  8. +168 −0 docs/api/club.md
  9. +44 −0 docs/api/squadBuildingChallenges.md
  10. +31 −0 docs/api/squads.md
  11. +17 −0 docs/api/store.md
  12. +324 −0 docs/api/transfers.md
  13. +166 −0 docs/cardInfo.csv
  14. +4 −1 docs/conf.py
  15. +237 −0 docs/core.py
  16. +61 −11 docs/index.rst
  17. +7 −0 docs/user/changelog.rst
  18. +30 −0 docs/user/cookbook.md
  19. +42 −0 docs/user/introduction.md
  20. +825 −0 docs/user/lookuptables.md
  21. +193 −193 fut/EAHashingAlgorithm.py
  22. +34 −34 fut/__init__.py
  23. +14 −14 fut/api.py
  24. +44 −41 fut/config.py
  25. +1,618 −840 fut/core.py
  26. +101 −78 fut/exceptions.py
  27. +114 −0 fut/extras.py
  28. +36 −37 fut/log.py
  29. +129 −0 fut/pin.py
  30. +167 −0 fut/stats.py
  31. +34 −60 fut/urls.py
  32. +2 −1 requirements.txt
  33. +75 −74 setup.py
  34. +0 −30 test_fut.py
  35. 0 tests/__init__.py
  36. 0 tests/data/__init__.py
  37. +36,561 −0 tests/data/en_US.json
  38. +1 −0 tests/data/players.json
  39. +108 −0 tests/test_core.py
  40. +48 −0 tests/test_log.py
2 changes: 2 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[run]
branch = True
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -3,8 +3,14 @@ docs/_build
build/
dist/
fut.egg-info/
cookies.txt
.cache/
.coverage
coverage.xml
*cookies.txt
*token.txt
*stats.json
test.py
test_old.py
testemu.py
log.log
content.log
@@ -13,3 +19,7 @@ fut.log
test.log
testemu.py
screenlog.0
codecov.yml
club_players.txt
database.db
relist.py
13 changes: 10 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
sudo: false
language: python
python:
#- 2.6
# - 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7-dev
- pypy
script: nosetests
- pypy3
install:
- pip install -r requirements.txt
- pip install -r requirements.txt codecov pytest-cov codacy-coverage responses
script:
- py.test --verbose --cov-report term --cov-report xml --cov=fut tests
after_success:
- codecov
- python-codacy-coverage
notifications:
email: oczkers@gmail.com
66 changes: 42 additions & 24 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@
Fut is written and maintained by Piotr Staroszczyk and various contributors:

Development Lead
````````````````

- Piotr Staroszczyk <piotr.staroszczyk@get24.org>


EAHashingAlgorithm
``````````````````

- Danny Cullen @dcullen88


Patches and Suggestions
```````````````````````
- mvillarejo
- Mauro Marano
- Innursery
- Arthur Nogueira Neves @arthurnn
- jamslater
- rjansen
- ricklhp7
- hunterjm
Fut is written and maintained by Piotr Staroszczyk and various contributors:

Development Lead
````````````````

- Piotr Staroszczyk <piotr.staroszczyk@get24.org>


Documentation mainteiner
------------------------

- Trevor McCormick @TrevorMcCormick


EAHashingAlgorithm
``````````````````

- Danny Cullen @dcullen88


Patches and Suggestions
```````````````````````
- mvillarejo
- Mauro Marano
- Innursery
- Arthur Nogueira Neves @arthurnn
- jamslater
- rjansen
- ricklhp7
- hunterjm
- fifa2017player
- bas85
- spacedlevo
- pulkitsharma
- xAranaktu
- LasseRegin
- kirov
- jsarasti
- Trevor McCormick @TrevorMcCormick
- derSoerrn95
- TheYellowKrato
- kmiloflorez2
Loading