You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Collect data at the command line from the Twitter API (v1.1 and v2).
6
6
7
7
* Read the [documentation](https://twarc-project.readthedocs.io)
8
8
* Ask questions in [Slack](https://bit.ly/docnow-slack) or [Matrix](https://matrix.to/#/#docnow:matrix.org?via=matrix.org&via=petrichor.me&via=converser.eu)
9
+
10
+
## Contributing
11
+
12
+
## Documentation
13
+
14
+
The documentation is managed at ReadTheDocs. If you would like to improve the documentation you can edit the Markdown files in `docs` or add new ones. Then send a pull request and we can add it.
15
+
16
+
If you prefer you can create a page on the [wiki](https://github.com/docnow/twarc/wiki/) to workshop the documentation, and then when/if you think it's ready to merged with the documentation create an [issue](https://github.com/docnow/twarc/issues). Please feel free to create whatever documentation is useful in the wiki area.
17
+
18
+
## Code
19
+
20
+
If you are interested in adding functionality to twarc or fixing something that's broken here are the steps to setting up your development environment:
21
+
22
+
git clone https://github.io/docnow/twarc
23
+
cd twarc
24
+
25
+
Create a .env file that included Twitter App keys to use during testing:
26
+
27
+
BEARER_TOKEN=CHANGEME
28
+
CONSUMER_KEY=CHANGEME
29
+
CONSUMER_SECRET=CHANGEME
30
+
ACCESS_TOKEN=CHANGEME
31
+
ACCESS_TOKEN_SECRET=CHANGEME
32
+
33
+
Now run the tests:
34
+
35
+
python setup.py test
36
+
37
+
Add your code and some new tests, and send a pull request!
0 commit comments